]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Mark some of RV3/4 block types as having separate DC subblock
authorkostya <kostya@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Mon, 20 Oct 2008 05:54:31 +0000 (05:54 +0000)
committerkostya <kostya@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Mon, 20 Oct 2008 05:54:31 +0000 (05:54 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15650 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavcodec/rv34.c

index d7f75874facfc1955aee8a050654ff49571c4008..10ab6917ef8c602421e0c5c81df87697842e9bbe 100644 (file)
@@ -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
 };