media: coda: round up frame sizes to multiples of 16 for MPEG-4 decoder
We need internal frames to be rounded up to full macroblocks for MPEG-4 decoding as well. Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
1403bc4c0f
commit
8e75a5363c
1 changed files with 1 additions and 0 deletions
|
@ -395,6 +395,7 @@ static int coda_alloc_framebuffers(struct coda_ctx *ctx,
|
|||
|
||||
if (ctx->codec->src_fourcc == V4L2_PIX_FMT_H264 ||
|
||||
ctx->codec->dst_fourcc == V4L2_PIX_FMT_H264 ||
|
||||
ctx->codec->src_fourcc == V4L2_PIX_FMT_MPEG4 ||
|
||||
ctx->codec->dst_fourcc == V4L2_PIX_FMT_MPEG4) {
|
||||
width = round_up(q_data->width, 16);
|
||||
height = round_up(q_data->height, 16);
|
||||
|
|
Loading…
Reference in a new issue