fix[h263d]: Fix missing initializer for field problem

Signed-off-by: Johnson Ding <johnson.ding@rock-chips.com>
Change-Id: I1afa8524eab41cebf4cb743c6bde812212983fd0
This commit is contained in:
Johnson Ding 2024-10-18 14:40:11 +08:00 committed by Herman Chen
parent 2c5895fe93
commit 1986fe4d5d

View file

@ -114,17 +114,17 @@ static MPP_RET hal_h263d_init(void *hal, MppHalCfg *cfg)
}
const MppHalApi hal_api_h263d = {
"h263d_vpu",
MPP_CTX_DEC,
MPP_VIDEO_CodingH263,
sizeof(hal_h263_ctx),
0,
hal_h263d_init,
hal_h263d_deinit,
hal_h263d_gen_regs,
hal_h263d_start,
hal_h263d_wait,
NULL,
NULL,
NULL,
.name = "h263d_vpu",
.type = MPP_CTX_DEC,
.coding = MPP_VIDEO_CodingH263,
.ctx_size = sizeof(hal_h263_ctx),
.flag = 0,
.init = hal_h263d_init,
.deinit = hal_h263d_deinit,
.reg_gen = hal_h263d_gen_regs,
.start = hal_h263d_start,
.wait = hal_h263d_wait,
.reset = NULL,
.flush = NULL,
.control = NULL,
};