mirror of https://gitee.com/openkylin/linux.git
media: hantro: Reduce H264 extra space for motion vectors
A decoded 8-bit 4:2:0 frame need memory for up to 448 bytes per
macroblock with additional 32 bytes on multi-core variants.
Memory layout is as follow:
+---------------------------+
| Y-plane 256 bytes x MBs |
+---------------------------+
| UV-plane 128 bytes x MBs |
+---------------------------+
| MV buffer 64 bytes x MBs |
+---------------------------+
| MC sync 32 bytes |
+---------------------------+
Reduce the extra space allocated now that motion vector buffer offset no
longer is based on the extra space.
Only allocate extra space for 64 bytes x MBs of motion vector buffer
and 32 bytes for multi-core sync.
Fixes: a9471e2562
("media: hantro: Add core bits to support H264 decoding")
Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
This commit is contained in:
parent
329f268821
commit
a8fe996084
|
@ -240,14 +240,30 @@ static int vidioc_try_fmt(struct file *file, void *priv, struct v4l2_format *f,
|
||||||
v4l2_fill_pixfmt_mp(pix_mp, fmt->fourcc, pix_mp->width,
|
v4l2_fill_pixfmt_mp(pix_mp, fmt->fourcc, pix_mp->width,
|
||||||
pix_mp->height);
|
pix_mp->height);
|
||||||
/*
|
/*
|
||||||
|
* A decoded 8-bit 4:2:0 NV12 frame may need memory for up to
|
||||||
|
* 448 bytes per macroblock with additional 32 bytes on
|
||||||
|
* multi-core variants.
|
||||||
|
*
|
||||||
* The H264 decoder needs extra space on the output buffers
|
* The H264 decoder needs extra space on the output buffers
|
||||||
* to store motion vectors. This is needed for reference
|
* to store motion vectors. This is needed for reference
|
||||||
* frames.
|
* frames.
|
||||||
|
*
|
||||||
|
* Memory layout is as follow:
|
||||||
|
*
|
||||||
|
* +---------------------------+
|
||||||
|
* | Y-plane 256 bytes x MBs |
|
||||||
|
* +---------------------------+
|
||||||
|
* | UV-plane 128 bytes x MBs |
|
||||||
|
* +---------------------------+
|
||||||
|
* | MV buffer 64 bytes x MBs |
|
||||||
|
* +---------------------------+
|
||||||
|
* | MC sync 32 bytes |
|
||||||
|
* +---------------------------+
|
||||||
*/
|
*/
|
||||||
if (ctx->vpu_src_fmt->fourcc == V4L2_PIX_FMT_H264_SLICE)
|
if (ctx->vpu_src_fmt->fourcc == V4L2_PIX_FMT_H264_SLICE)
|
||||||
pix_mp->plane_fmt[0].sizeimage +=
|
pix_mp->plane_fmt[0].sizeimage +=
|
||||||
128 * DIV_ROUND_UP(pix_mp->width, 16) *
|
64 * MB_WIDTH(pix_mp->width) *
|
||||||
DIV_ROUND_UP(pix_mp->height, 16);
|
MB_WIDTH(pix_mp->height) + 32;
|
||||||
} else if (!pix_mp->plane_fmt[0].sizeimage) {
|
} else if (!pix_mp->plane_fmt[0].sizeimage) {
|
||||||
/*
|
/*
|
||||||
* For coded formats the application can specify
|
* For coded formats the application can specify
|
||||||
|
|
Loading…
Reference in New Issue