mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-12-26 11:17:44 +01:00
[roi_utils]: Fix cu_size set error
Change-Id: I47c2ec6ee17a37071c33468b52d306c193f6c6e8 Signed-off-by: sayon.chen <sayon.chen@rock-chips.com>
This commit is contained in:
parent
1fd4733db4
commit
536010f378
1 changed files with 1 additions and 1 deletions
|
|
@ -716,7 +716,7 @@ MPP_RET mpp_enc_roi_init(MppEncRoiCtx *ctx, RK_U32 w, RK_U32 h, MppCodingType ty
|
|||
impl->amv_cfg_size = mb_w * mb_h / 4;
|
||||
impl->mv_cfg_size = mb_w * mb_h * 96 / 4;
|
||||
impl->cu_map = mpp_calloc(RK_U8, mb_w * mb_h);
|
||||
impl->cu_size = mb_h * mb_h;
|
||||
impl->cu_size = mb_w * mb_h;
|
||||
}
|
||||
|
||||
mpp_log("set to vepu58x roi generation\n");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue