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/h264.c | |
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/h264.c')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 1826cedf91..9dd4ceb352 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -4920,7 +4920,7 @@ not_extra: *got_frame = 1; if (CONFIG_MPEGVIDEO) { ff_print_debug_info2(h->avctx, h->next_output_pic, pict, h->er.mbskip_table, - h->visualization_buffer, &h->low_delay, + &h->low_delay, h->mb_width, h->mb_height, h->mb_stride, 1); } } |