diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2008-10-20 05:54:31 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2008-10-20 05:54:31 +0000 |
commit | c0b821befb4a956eb71b67f56e5992a77cca7bd2 (patch) | |
tree | 5c58986ab764f5d0c06c42ce07336f916122048f /libavcodec | |
parent | d84b1cb3da7e4c84243f6eff42f0c6ec11d1ea27 (diff) | |
download | ffmpeg-c0b821befb4a956eb71b67f56e5992a77cca7bd2.tar.gz |
Mark some of RV3/4 block types as having separate DC subblock
Originally committed as revision 15650 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/rv34.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/rv34.c b/libavcodec/rv34.c index d7f75874fa..10ab6917ef 100644 --- a/libavcodec/rv34.c +++ b/libavcodec/rv34.c @@ -39,7 +39,7 @@ /** translation of RV30/40 macroblock types to lavc ones */ static const int rv34_mb_type_to_lavc[12] = { MB_TYPE_INTRA, - MB_TYPE_INTRA16x16, + MB_TYPE_INTRA16x16 | MB_TYPE_SEPARATE_DC, MB_TYPE_16x16 | MB_TYPE_L0, MB_TYPE_8x8 | MB_TYPE_L0, MB_TYPE_16x16 | MB_TYPE_L0, @@ -49,7 +49,7 @@ static const int rv34_mb_type_to_lavc[12] = { MB_TYPE_16x8 | MB_TYPE_L0, MB_TYPE_8x16 | MB_TYPE_L0, MB_TYPE_16x16 | MB_TYPE_L0L1, - MB_TYPE_16x16 | MB_TYPE_L0 + MB_TYPE_16x16 | MB_TYPE_L0 | MB_TYPE_SEPARATE_DC }; |