summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-09-14 18:35:03 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-09-14 18:35:03 +0000
commitd32064c0f71f27e57481dd988742bb1f232d44b3 (patch)
tree3a7b66643d1499c9b0fc65cb54801b6980e0b32f /libavcodec/mpegvideo.c
parent2d3601b564dabd7c234a11996ed09084b7dcfa3c (diff)
comment fix
Originally committed as revision 3462 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r--libavcodec/mpegvideo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index 3e29bccf76..325fe2033f 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -4234,7 +4234,7 @@ static int encode_thread(AVCodecContext *c, void *arg){
s->mb_skiped=0;
s->dquant=0; //only for QP_RD
- if(mb_type & (mb_type-1) || (s->flags & CODEC_FLAG_QP_RD)){ // more than 1 MB type possible
+ if(mb_type & (mb_type-1) || (s->flags & CODEC_FLAG_QP_RD)){ // more than 1 MB type possible or CODEC_FLAG_QP_RD
int next_block=0;
int pb_bits_count, pb2_bits_count, tex_pb_bits_count;