diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-03-12 11:23:07 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-12 11:23:07 +0100 |
commit | 53fd4f559429cc17e6aa78eb90e099947294a86b (patch) | |
tree | 4d7d497a8131ef1c1bef149f33760bce85e860b7 /libavcodec/mpegvideo.h | |
parent | 6ae43725323b02520fa0926422b52d2ce7fd7973 (diff) | |
download | ffmpeg-53fd4f559429cc17e6aa78eb90e099947294a86b.tar.gz |
avcodec: fix motion vector vissualization
was broken by the buffer ref stuff
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 2118e521a8..41850df377 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -808,9 +808,9 @@ void ff_draw_horiz_band(AVCodecContext *avctx, DSPContext *dsp, Picture *cur, void ff_mpeg_draw_horiz_band(MpegEncContext *s, int y, int h); void ff_mpeg_flush(AVCodecContext *avctx); -void ff_print_debug_info(MpegEncContext *s, Picture *p); +void ff_print_debug_info(MpegEncContext *s, Picture *p, AVFrame *pict); void ff_print_debug_info2(AVCodecContext *avctx, Picture *p, AVFrame *pict, uint8_t *mbskip_table, - uint8_t *visualization_buffer[3], int *low_delay, + int *low_delay, int mb_width, int mb_height, int mb_stride, int quarter_sample); void ff_write_quant_matrix(PutBitContext *pb, uint16_t *matrix); |