Skip to content

Commit

Permalink
WIP: media: rkvdec: h264: use bytesperline and buffer height to calcu…
Browse files Browse the repository at this point in the history
…late strides

NOTE: this does not really change anything but ensure we use same bytesperline as signaled to userspace

Signed-off-by: Jonas Karlman <[email protected]>
  • Loading branch information
Kwiboo committed Jun 7, 2020
1 parent 015a4d4 commit 8b4ad2a
Showing 1 changed file with 16 additions and 11 deletions.
27 changes: 16 additions & 11 deletions drivers/staging/media/rkvdec/rkvdec-h264.c
Original file line number Diff line number Diff line change
Expand Up @@ -883,10 +883,11 @@ static void config_registers(struct rkvdec_ctx *ctx,
dma_addr_t rlc_addr;
dma_addr_t refer_addr;
u32 rlc_len;
u32 hor_virstride = 0;
u32 ver_virstride = 0;
u32 y_virstride = 0;
u32 yuv_virstride = 0;
u32 hor_virstride;
u32 ver_virstride;
u32 y_virstride;
u32 uv_virstride;
u32 yuv_virstride;
u32 offset;
dma_addr_t dst_addr;
u32 reg, i;
Expand All @@ -896,16 +897,20 @@ static void config_registers(struct rkvdec_ctx *ctx,

f = &ctx->decoded_fmt;
dst_fmt = &f->fmt.pix_mp;
hor_virstride = (sps->bit_depth_luma_minus8 + 8) * dst_fmt->width / 8;
ver_virstride = round_up(dst_fmt->height, 16);
hor_virstride = dst_fmt->plane_fmt[0].bytesperline;
ver_virstride = dst_fmt->height;
y_virstride = hor_virstride * ver_virstride;

if (sps->chroma_format_idc == 0)
yuv_virstride = y_virstride;
else if (sps->chroma_format_idc == 1)
yuv_virstride += y_virstride + y_virstride / 2;
if (sps->chroma_format_idc == 1)
uv_virstride = y_virstride / 2;
else if (sps->chroma_format_idc == 2)
yuv_virstride += 2 * y_virstride;
uv_virstride = y_virstride;
else if (sps->chroma_format_idc == 3)
uv_virstride = 2 * y_virstride;
else
uv_virstride = 0;

yuv_virstride = y_virstride + uv_virstride;

reg = RKVDEC_Y_HOR_VIRSTRIDE(hor_virstride / 16) |
RKVDEC_UV_HOR_VIRSTRIDE(hor_virstride / 16) |
Expand Down

0 comments on commit 8b4ad2a

Please sign in to comment.