mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-12-26 11:17:44 +01:00
[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:
parent
4f4c73a7ae
commit
0b949f4b8c
2 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue