comparison libswscale/swscale_internal.h @ 27567:203ac2c7f613

Rename yuv2rgb variables to avoid name clashes with the ones used by bfin asm.
author michael
date Sat, 13 Sep 2008 11:52:03 +0000
parents 021a1889cc26
children 9cf6c7c5c7cd
comparison
equal deleted inserted replaced
27566:9766be900f30 27567:203ac2c7f613
124 //Colorspace stuff 124 //Colorspace stuff
125 int contrast, brightness, saturation; // for sws_getColorspaceDetails 125 int contrast, brightness, saturation; // for sws_getColorspaceDetails
126 int srcColorspaceTable[4]; 126 int srcColorspaceTable[4];
127 int dstColorspaceTable[4]; 127 int dstColorspaceTable[4];
128 int srcRange, dstRange; 128 int srcRange, dstRange;
129 int oy,cy,cvr,cvg,cug,cub; 129 int yuv2rgb_y_offset;
130 int yuv2rgb_y_coeff;
131 int yuv2rgb_v2r_coeff;
132 int yuv2rgb_v2g_coeff;
133 int yuv2rgb_u2g_coeff;
134 int yuv2rgb_u2b_coeff;
130 135
131 #define RED_DITHER "0*8" 136 #define RED_DITHER "0*8"
132 #define GREEN_DITHER "1*8" 137 #define GREEN_DITHER "1*8"
133 #define BLUE_DITHER "2*8" 138 #define BLUE_DITHER "2*8"
134 #define Y_COEFF "3*8" 139 #define Y_COEFF "3*8"