summaryrefslogtreecommitdiff
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2013-03-02 17:03:38 -0800
committerMichael Niedermayer <michaelni@gmx.at>2013-03-03 12:19:29 +0100
commitd98aa7cdc19b6392ab3a29b11305104338166ddc (patch)
treeee17a53b851272f8a64d4fdf0e1a73cc023ff29a /libavcodec/h264.c
parentd4e649cca6de9e5b25f8ebb28c82a95bd24a9e9c (diff)
h264: put call to ff_print_debug_info2 under CONFIG_MPEGVIDEO.
The code is located in mpegvideo, and it's likely that in a minimal config, we don't want to include debug info anyway. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 9d86e01fa7..659c0232ac 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -4842,8 +4842,10 @@ not_extra:
assert(pict->data[0] || !*got_frame);
- ff_print_debug_info2(h->avctx, pict, h->er.mbskip_table, h->visualization_buffer, &h->low_delay,
- h->mb_width, h->mb_height, h->mb_stride, 1);
+ if (CONFIG_MPEGVIDEO) {
+ ff_print_debug_info2(h->avctx, pict, h->er.mbskip_table, h->visualization_buffer, &h->low_delay,
+ h->mb_width, h->mb_height, h->mb_stride, 1);
+ }
return get_consumed_bytes(buf_index, buf_size);
}