summaryrefslogtreecommitdiffstats
path: root/postproc/swscale_internal.h
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-03-27 16:04:53 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-03-27 16:04:53 +0000
commit20faf3dc0d48c4daf2f29322f961ed18b6d82ae4 (patch)
tree06cf4c4f6cec1379c33f22f1b3dc06f55a70d66c /postproc/swscale_internal.h
parentba39e1594824d05ef32d6c7457b5c2250c7be250 (diff)
downloadmpv-20faf3dc0d48c4daf2f29322f961ed18b6d82ae4.tar.bz2
mpv-20faf3dc0d48c4daf2f29322f961ed18b6d82ae4.tar.xz
10000l (YUV vs. YVU swscale fix/cleanup)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9698 b3059339-0415-0410-9bf9-f77b7e298cf2
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;