summaryrefslogtreecommitdiff
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-03-27 22:14:26 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-03-27 22:43:05 +0100
commit72bff8da479a0ab61444474cda266c883e7928d6 (patch)
tree2832647d290a4d9a94ed855777c84991b83b3d0f /libavcodec/h264.c
parenta4f27a3f579b0114a58943b5466042ee83ed53b7 (diff)
avcodec: Make ff_print_debug_info2() independant of Picture struct
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index dc928c32de..1eb4e791da 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -1842,7 +1842,10 @@ not_extra:
return ret;
*got_frame = 1;
if (CONFIG_MPEGVIDEO) {
- ff_print_debug_info2(h->avctx, h->next_output_pic, pict, h->er.mbskip_table,
+ ff_print_debug_info2(h->avctx, pict, h->er.mbskip_table,
+ h->next_output_pic->mb_type,
+ h->next_output_pic->qscale_table,
+ h->next_output_pic->motion_val,
&h->low_delay,
h->mb_width, h->mb_height, h->mb_stride, 1);
}