aboutsummaryrefslogtreecommitdiffstats
path: root/postproc/swscale_internal.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-03-27 16:04:53 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-03-27 16:04:53 +0000
commitfccb9b2b800c19b0a1736628ee124488204b17ff (patch)
tree2aa17788bc34f12ad547fe1379c01ff839f42476 /postproc/swscale_internal.h
parent335338e88411c2f11960d597682b589af7f24024 (diff)
downloadffmpeg-fccb9b2b800c19b0a1736628ee124488204b17ff.tar.gz
10000l (YUV vs. YVU swscale fix/cleanup)
Originally committed as revision 9698 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/swscale_internal.h')
-rw-r--r--postproc/swscale_internal.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/postproc/swscale_internal.h b/postproc/swscale_internal.h
index 84f6db96a2..85caead3ad 100644
--- a/postproc/swscale_internal.h
+++ b/postproc/swscale_internal.h
@@ -35,7 +35,8 @@ typedef struct SwsContext{
int chrSrcW, chrSrcH, chrDstW, chrDstH;
int lumXInc, chrXInc;
int lumYInc, chrYInc;
- int dstFormat, srcFormat;
+ int dstFormat, srcFormat; ///< format 4:2:0 type is allways YV12
+ int origDstFormat, origSrcFormat; ///< format
int chrSrcHSubSample, chrSrcVSubSample;
int chrIntHSubSample, chrIntVSubSample;
int chrDstHSubSample, chrDstVSubSample;