diff options
author | Kieran Kunhya <kierank@obe.tv> | 2017-12-11 00:04:44 +0000 |
---|---|---|
committer | Your Name <you@example.com> | 2017-12-11 00:09:25 +0000 |
commit | a83a03af9a841e91b41e6adc1def7a363893a68a (patch) | |
tree | 50e1074027a51112b1b50063187fd488e9bccdc7 /libavcodec/mpegutils.h | |
parent | bad51e9287188ec61cc72e33b689e4a90690dfe8 (diff) | |
download | ffmpeg-a83a03af9a841e91b41e6adc1def7a363893a68a.tar.gz |
libavcodec: Move ff_print_debug_info2 to mpegutils.c
Diffstat (limited to 'libavcodec/mpegutils.h')
-rw-r--r-- | libavcodec/mpegutils.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/mpegutils.h b/libavcodec/mpegutils.h index 1bf73fea02..1ed21c19be 100644 --- a/libavcodec/mpegutils.h +++ b/libavcodec/mpegutils.h @@ -137,4 +137,12 @@ void ff_draw_horiz_band(AVCodecContext *avctx, AVFrame *cur, AVFrame *last, int y, int h, int picture_structure, int first_field, int low_delay); +/** + * Print debugging info for the given picture. + */ +void ff_print_debug_info2(AVCodecContext *avctx, AVFrame *pict, uint8_t *mbskip_table, + uint32_t *mbtype_table, int8_t *qscale_table, int16_t (*motion_val[2])[2], + int *low_delay, + int mb_width, int mb_height, int mb_stride, int quarter_sample); + #endif /* AVCODEC_MPEGUTILS_H */ |