Lines Matching refs:dec
51 MPP_RET h263d_init(void *dec, ParserCfg *cfg) in h263d_init() argument
60 if (NULL == dec) { in h263d_init()
61 mpp_err_f("found NULL intput dec %p cfg %p\n", dec, cfg); in h263d_init()
88 p = (H263dCtx *)dec; in h263d_init()
109 MPP_RET h263d_deinit(void *dec) in h263d_deinit() argument
112 if (NULL == dec) { in h263d_deinit()
117 p = (H263dCtx *)dec; in h263d_deinit()
134 MPP_RET h263d_reset(void *dec) in h263d_reset() argument
136 if (NULL == dec) { in h263d_reset()
141 H263dCtx *p = (H263dCtx *)dec; in h263d_reset()
146 MPP_RET h263d_flush(void *dec) in h263d_flush() argument
148 if (NULL == dec) { in h263d_flush()
153 H263dCtx *p = (H263dCtx *)dec; in h263d_flush()
158 MPP_RET h263d_control(void *dec, MpiCmd cmd_type, void *param) in h263d_control() argument
160 if (NULL == dec) { in h263d_control()
169 MPP_RET h263d_prepare(void *dec, MppPacket pkt, HalDecTask *task) in h263d_prepare() argument
176 if (NULL == dec || NULL == pkt || NULL == task) { in h263d_prepare()
177 mpp_err_f("found NULL intput dec %p pkt %p task %p\n", dec, pkt, task); in h263d_prepare()
181 p = (H263dCtx *)dec; in h263d_prepare()
190 h263d_flush(dec); in h263d_prepare()
276 MPP_RET h263d_parse(void *dec, HalDecTask *task) in h263d_parse() argument
281 if (NULL == dec || NULL == task) { in h263d_parse()
282 mpp_err_f("found NULL intput dec %p task %p\n", dec, task); in h263d_parse()
285 p = (H263dCtx *)dec; in h263d_parse()
305 MPP_RET h263d_callback(void *dec, void *err_info) in h263d_callback() argument
307 (void)dec; in h263d_callback()