Mercurial > libavcodec.hg
changeset 8036:9b98b2261938 libavcodec
Mark some of RV3/4 block types as having separate DC subblock
author | kostya |
---|---|
date | Mon, 20 Oct 2008 05:54:31 +0000 |
parents | 56f973432109 |
children | b6d93bef844a |
files | rv34.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/rv34.c Sun Oct 19 04:44:24 2008 +0000 +++ b/rv34.c Mon Oct 20 05:54:31 2008 +0000 @@ -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 @@ 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 };