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

Reviewed-by: Steven Liu <lq@chinaffmpeg.org>
pull/302/head
Limin Wang 6 years ago committed by Steven Liu
parent 737b5f5869
commit 370b8bd847
  1. 2
      libavcodec/libdavs2.c

@ -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,

Loading…
Cancel
Save