summaryrefslogtreecommitdiffstats
path: root/libswscale/swscale_internal.h
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-09-13 11:52:03 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-09-13 11:52:03 +0000
commitf5a4bd86cbfba940df19df2322c4a79c7bf64edc (patch)
tree10ee74cc13522c0ddfb06cf52478e28abcbc0978 /libswscale/swscale_internal.h
parent5f97d37455cb991f870235772e1ea70009e5702d (diff)
downloadmpv-f5a4bd86cbfba940df19df2322c4a79c7bf64edc.tar.bz2
mpv-f5a4bd86cbfba940df19df2322c4a79c7bf64edc.tar.xz
Rename yuv2rgb variables to avoid name clashes with the ones used by bfin asm.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27599 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libswscale/swscale_internal.h')
-rw-r--r--libswscale/swscale_internal.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h
index 9d82662483..8290c04ade 100644
--- a/libswscale/swscale_internal.h
+++ b/libswscale/swscale_internal.h
@@ -126,7 +126,12 @@ typedef struct SwsContext{
int srcColorspaceTable[4];
int dstColorspaceTable[4];
int srcRange, dstRange;
- int oy,cy,cvr,cvg,cug,cub;
+ int yuv2rgb_y_offset;
+ int yuv2rgb_y_coeff;
+ int yuv2rgb_v2r_coeff;
+ int yuv2rgb_v2g_coeff;
+ int yuv2rgb_u2g_coeff;
+ int yuv2rgb_u2b_coeff;
#define RED_DITHER "0*8"
#define GREEN_DITHER "1*8"