diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-03-15 14:33:24 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-15 14:38:09 +0100 |
commit | 64308941d4043388a16c2d2fd51c792cfdcc2734 (patch) | |
tree | d487be33dd200306ec07e2927749c1a89d690afb /libavcodec/h263dec.c | |
parent | 70c0ae915d51b0f846f690e0895f18b95f038d9a (diff) | |
download | ffmpeg-streaming-64308941d4043388a16c2d2fd51c792cfdcc2734.zip ffmpeg-streaming-64308941d4043388a16c2d2fd51c792cfdcc2734.tar.gz |
mpegvideo: Fix exported qp table offest
Found-by: wm4
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index e752ce6..66d00d4 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -750,12 +750,12 @@ intrax8_decoded: if ((ret = av_frame_ref(pict, &s->current_picture_ptr->f)) < 0) return ret; ff_print_debug_info(s, s->current_picture_ptr, pict); - av_frame_set_qp_table(pict, av_buffer_ref(s->current_picture_ptr->qscale_table_buf), s->mb_stride, FF_QSCALE_TYPE_MPEG1); + ff_mpv_export_qp_table(s, pict, s->current_picture_ptr, FF_QSCALE_TYPE_MPEG1); } else if (s->last_picture_ptr != NULL) { if ((ret = av_frame_ref(pict, &s->last_picture_ptr->f)) < 0) return ret; ff_print_debug_info(s, s->last_picture_ptr, pict); - av_frame_set_qp_table(pict, av_buffer_ref(s->last_picture_ptr->qscale_table_buf), s->mb_stride, FF_QSCALE_TYPE_MPEG1); + ff_mpv_export_qp_table(s, pict, s->last_picture_ptr, FF_QSCALE_TYPE_MPEG1); } if(s->last_picture_ptr || s->low_delay){ |