mirror of
https://github.com/nyanmisaka/mpp.git
synced 2026-01-24 03:00:40 +01:00
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:
parent
2c5895fe93
commit
1986fe4d5d
1 changed files with 13 additions and 13 deletions
|
|
@ -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,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue