libavcodec/libdavs2.c: Fix for the wrong line size is used

Reviewed-by: Steven Liu <lq@chinaffmpeg.org>
This commit is contained in:
Limin Wang 2018-11-25 14:01:22 +08:00 committed by Steven Liu
parent 737b5f5869
commit 370b8bd847
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ static int davs2_dump_frames(AVCodecContext *avctx, davs2_picture_t *pic,
}
frame->data[plane] = frame->buf[plane]->data;
frame->linesize[plane] = pic->widths[plane];
frame->linesize[plane] = size_line;
for (line = 0; line < pic->lines[plane]; ++line)
memcpy(frame->data[plane] + line * size_line,