[hal_h265e]: Increase h265e recn/refr buffer size

Change-Id: I160b8129351a0020b4afff8c5d350ad28a60296c
Signed-off-by: Herman Chen <herman.chen@rock-chips.com>
This commit is contained in:
Herman Chen 2022-04-21 14:54:23 +08:00
parent 4f4c73a7ae
commit 0b949f4b8c
2 changed files with 2 additions and 2 deletions

View file

@ -193,7 +193,7 @@ static MPP_RET vepu54x_h265_setup_hal_bufs(H265eV541HalContext *ctx)
hal_h265e_enter();
mb_wd64 = (prep->width + 63) / 64;
mb_h64 = (prep->height + 63) / 64;
mb_h64 = (prep->height + 63) / 64 + 1;
frame_size = MPP_ALIGN(prep->width, 16) * MPP_ALIGN(prep->height, 16);
vepu541_set_fmt(fmt, ctx->cfg->prep.format);

View file

@ -291,7 +291,7 @@ static MPP_RET vepu580_h265_setup_hal_bufs(H265eV580HalContext *ctx)
hal_h265e_enter();
mb_wd64 = (prep->width + 63) / 64;
mb_h64 = (prep->height + 63) / 64;
mb_h64 = (prep->height + 63) / 64 + 1;
frame_size = MPP_ALIGN(prep->width, 16) * MPP_ALIGN(prep->height, 16);
vepu541_set_fmt(fmt, ctx->cfg->prep.format);