1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-01 03:40:43 +00:00

big endian yellow fix?

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9961 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
michael 2003-04-21 17:24:29 +00:00
parent fc1ed2548f
commit 9c160c32b5

View File

@ -269,6 +269,9 @@ static inline void RENAME(vo_draw_alpha_rgb24)(int w,int h, unsigned char* src,
static inline void RENAME(vo_draw_alpha_rgb32)(int w,int h, unsigned char* src, unsigned char *srca, int srcstride, unsigned char* dstbase,int dststride){
int y;
PROFILE_START();
#ifdef WORDS_BIGENDIAN
dstbase++;
#endif
for(y=0;y<h;y++){
register int x;
#ifdef ARCH_X86