summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2007-09-15 09:23:58 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2007-09-15 09:23:58 +0000
commitf7d2a43707a765fd99dea21913b3616b7559d9e6 (patch)
treeeaf918fbcd006b77d0ba6730cbe7d47ddd3ed1a9
parentefd74286662a6887bdbc0f590b17a9f5a6dc913b (diff)
In case when any quantizer may occur, HALFPQ should be zero
Originally committed as revision 10499 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/vc1.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c
index f273422293..4f19dc29fe 100644
--- a/libavcodec/vc1.c
+++ b/libavcodec/vc1.c
@@ -342,6 +342,8 @@ static int vop_dquant_decoding(VC1Context *v)
break;
case DQPROFILE_ALL_MBS:
v->dqbilevel = get_bits1(gb);
+ if(!v->dqbilevel)
+ v->halfpq = 0;
default: break; //Forbidden ?
}
if (v->dqbilevel || v->dqprofile != DQPROFILE_ALL_MBS)