summaryrefslogtreecommitdiff
path: root/libavcodec/h263dec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-12-03 16:07:41 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-12-03 16:07:41 +0000
commit6beeb962a2e62abf9857d4c4a167341acee8b867 (patch)
tree45cd428fb0c61f2f5f9504c9283bf26690e1cd9a /libavcodec/h263dec.c
parentb7cbfc23071ad95b3966441d31fcb18a9bea73e0 (diff)
h263 modified quantization fix
Originally committed as revision 2557 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r--libavcodec/h263dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c
index 8a8dafb554..ef15e1406b 100644
--- a/libavcodec/h263dec.c
+++ b/libavcodec/h263dec.c
@@ -147,7 +147,7 @@ static int decode_slice(MpegEncContext *s){
s->resync_mb_y= s->mb_y;
s->y_dc_scale= s->y_dc_scale_table[ s->qscale ];
- s->c_dc_scale= s->c_dc_scale_table[ s->qscale ];
+ s->c_dc_scale= s->c_dc_scale_table[ s->chroma_qscale ];
if(s->partitioned_frame){
const int qscale= s->qscale;