diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-03-18 12:31:53 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-03-18 12:31:53 +0000 |
commit | edf97a75f98896965f78a13010f318b234bed9fa (patch) | |
tree | 28ca0728158760b152ae2b4a73ae22ffa10684b7 /libswscale/yuv2rgb.c | |
parent | d2bfaf8aaed754062c6867bfb53b16234e9543ec (diff) | |
download | ffmpeg-edf97a75f98896965f78a13010f318b234bed9fa.tar.gz |
fix full range (jpeg yuv) chroma
Originally committed as revision 22713 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/yuv2rgb.c')
-rw-r--r-- | libswscale/yuv2rgb.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libswscale/yuv2rgb.c b/libswscale/yuv2rgb.c index 3e81866498..af7f86f401 100644 --- a/libswscale/yuv2rgb.c +++ b/libswscale/yuv2rgb.c @@ -670,6 +670,11 @@ int yuv2rgb_c_init_tables (SwsContext *c, const int inv_table[4], int fullRange, if(!fullRange){ cy= (cy*255) / 219; oy= 16<<16; + }else{ + crv= (crv*224) / 255; + cbu= (cbu*224) / 255; + cgu= (cgu*224) / 255; + cgv= (cgv*224) / 255; } cy = (cy *contrast )>>16; |