mirror of https://git.ffmpeg.org/ffmpeg.git
mpegvideo: fix MB/MV vissualization on videos that are not mod 16 == 0
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
6093960ae3
commit
fafd844311
|
@ -1595,8 +1595,8 @@ void ff_print_debug_info(MpegEncContext *s, AVFrame *pict)
|
|||
avcodec_get_chroma_sub_sample(s->avctx->pix_fmt,
|
||||
&h_chroma_shift, &v_chroma_shift);
|
||||
for (i = 0; i < 3; i++) {
|
||||
size_t size= (i == 0) ? pict->linesize[i] * height:
|
||||
pict->linesize[i] * height >> v_chroma_shift;
|
||||
size_t size= (i == 0) ? pict->linesize[i] * FFALIGN(height, 16):
|
||||
pict->linesize[i] * FFALIGN(height, 16) >> v_chroma_shift;
|
||||
s->visualization_buffer[i]= av_realloc(s->visualization_buffer[i], size);
|
||||
memcpy(s->visualization_buffer[i], pict->data[i], size);
|
||||
pict->data[i] = s->visualization_buffer[i];
|
||||
|
|
Loading…
Reference in New Issue