Fixed issue with ">>" in C HQXX implementation for Linux and Win32 x64

This commit is contained in:
mudlord 2008-01-02 10:41:48 +00:00
parent eb732ff492
commit 3eb00c89e7
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@ inline unsigned int RGBtoYUV_32( unsigned int c )
register unsigned char r, g, b;
b = c & 0x0000FF;
g = ( c & 0x00FF00 ) >> 8;
r = c & >> 16;
r = ( c & 0xFF0000 ) >> 16;
return ( (r + g + b) << 14 ) +
( ( r - b + 512 ) << 4 ) +
( ( 2*g - r - b ) >> 3 ) + 128;