| /rockchip-linux_mpp/mpp/hal/rkdec/avsd/ |
| H A D | hal_avsd_api.c | 59 p_api->init = hal_avsd_plus_init; in init_hard_platform() 70 p_api->init = hal_avsd_vdpu1_init; in init_hard_platform() 81 p_api->init = hal_avsd_vdpu2_init; in init_hard_platform() 172 FUN_CHECK(ret = p_hal->hal_api.init(decoder, cfg)); in hal_avsd_init() 220 ret = p_hal->hal_api.init(decoder, p_hal->cfg); in hal_avsd_gen_regs() 303 .init = hal_avsd_init, 319 .init = hal_avsd_init,
|
| /rockchip-linux_mpp/mpp/hal/vpu/m2vd/ |
| H A D | hal_m2vd_api.c | 77 p_api->init = hal_m2vd_vdpu2_init; in hal_m2vd_init() 87 p_api->init = hal_m2vd_vdpu1_init; in hal_m2vd_init() 101 return p_api->init(hal, cfg);; in hal_m2vd_init() 110 .init = hal_m2vd_init,
|
| /rockchip-linux_mpp/mpp/hal/vpu/mpg4d/ |
| H A D | hal_m4vd_api.c | 69 p_api->init = vdpu2_mpg4d_init; in hal_vpu_mpg4d_init() 79 p_api->init = vdpu1_mpg4d_init; in hal_vpu_mpg4d_init() 93 return p_api->init (hal, cfg); in hal_vpu_mpg4d_init() 158 .init = hal_vpu_mpg4d_init,
|
| /rockchip-linux_mpp/mpp/hal/vpu/jpegd/ |
| H A D | hal_jpegd_api.c | 112 p_api->init = hal_jpegd_vdpu2_init; in hal_jpegd_init() 121 p_api->init = hal_jpegd_vdpu1_init; in hal_jpegd_init() 129 p_api->init = hal_jpegd_rkv_init; in hal_jpegd_init() 151 ret = p_api->init(hal, cfg); in hal_jpegd_init() 167 .init = hal_jpegd_init,
|
| /rockchip-linux_mpp/osal/inc/ |
| H A D | mpp_singleton.h | 59 void (*init)(void); member 67 #define MPP_SINGLETON(id, name, init, deinit) \ argument 74 init, \
|
| H A D | mpp_eventfd.h | 15 RK_S32 mpp_eventfd_get(RK_U32 init);
|
| /rockchip-linux_mpp/mpp/hal/vpu/h263d/ |
| H A D | hal_h263d_api.c | 87 p_api->init = hal_vpu2_h263d_init; in hal_h263d_init() 98 p_api->init = hal_vpu1_h263d_init; in hal_h263d_init() 113 return p_api->init(hal, cfg); in hal_h263d_init() 122 .init = hal_h263d_init,
|
| /rockchip-linux_mpp/mpp/codec/dec/avs/ |
| H A D | avsd_api.c | 67 static MPP_RET avsd_init(void *decoder, ParserCfg *init) in avsd_init() argument 79 p_dec->init = *init; in avsd_init() 80 p_dec->frame_slots = init->frame_slots; in avsd_init() 81 p_dec->packet_slots = init->packet_slots; in avsd_init() 368 .init = avsd_init, 383 .init = avsd_init,
|
| /rockchip-linux_mpp/mpp/codec/dec/avs2/ |
| H A D | avs2d_api.c | 64 MPP_RET avs2d_init(void *decoder, ParserCfg *init) in avs2d_init() argument 75 p_dec->init = *init; in avs2d_init() 77 p_dec->frame_slots = init->frame_slots; in avs2d_init() 78 p_dec->packet_slots = init->packet_slots; in avs2d_init() 202 if (!p_dec->init.cfg->base.split_parse) { in avs2d_prepare() 342 .init = avs2d_init,
|
| H A D | avs2d_dpb.c | 500 if (MPP_FRAME_FMT_IS_FBC(p_dec->init.cfg->base.out_fmt)) { in dpb_alloc_frame() 504 …mpp_frame_set_fmt(mframe, mpp_frame_get_fmt(mframe) | (p_dec->init.cfg->base.out_fmt & (MPP_FRAME_… in dpb_alloc_frame() 517 } else if (MPP_FRAME_FMT_IS_TILE(p_dec->init.cfg->base.out_fmt)) in dpb_alloc_frame() 518 …mpp_frame_set_fmt(mframe, mpp_frame_get_fmt(mframe) | (p_dec->init.cfg->base.out_fmt & (MPP_FRAME_… in dpb_alloc_frame() 523 if (p_dec->init.cfg->base.enable_thumbnail && p_dec->init.hw_info->cap_down_scale) in dpb_alloc_frame() 524 mpp_frame_set_thumbnail_en(mframe, p_dec->init.cfg->base.enable_thumbnail); in dpb_alloc_frame() 550 if (p_dec->init.cfg->base.enable_vproc & MPP_VPROC_MODE_DETECTION) { in dpb_alloc_frame()
|
| /rockchip-linux_mpp/mpp/hal/vpu/vp8d/ |
| H A D | hal_vp8d_api.c | 123 p_api->init = hal_vp8d_vdpu2_init; in hal_vp8d_init() 133 p_api->init = hal_vp8d_vdpu1_init; in hal_vp8d_init() 147 return p_api->init (hal, cfg); in hal_vp8d_init() 157 .init = hal_vp8d_init,
|
| /rockchip-linux_mpp/mpp/codec/dec/vp9/ |
| H A D | vp9d_api.c | 38 MPP_RET vp9d_init(void *ctx, ParserCfg *init) in vp9d_init() argument 45 if (!vp9_ctx || !init) { in vp9d_init() 50 if ((ret = vp9d_parser_init(vp9_ctx, init)) != MPP_OK) in vp9d_init() 218 .init = vp9d_init,
|
| /rockchip-linux_mpp/osal/ |
| H A D | mpp_eventfd.c | 13 RK_S32 mpp_eventfd_get(RK_U32 init) in mpp_eventfd_get() argument 15 RK_S32 fd = eventfd(init, 0); in mpp_eventfd_get()
|
| H A D | mpp_singleton.c | 102 if (info->init) { in mpp_singleton_init() 109 info->init(); in mpp_singleton_init()
|
| /rockchip-linux_mpp/mpp/codec/dec/av1/ |
| H A D | av1d_api.c | 39 MPP_RET av1d_init(void *ctx, ParserCfg *init) in av1d_init() argument 46 if (!av1_ctx || !init) { in av1d_init() 54 if ((ret = av1d_parser_init(av1_ctx, init)) != MPP_OK) in av1d_init() 293 .init = av1d_init,
|
| /rockchip-linux_mpp/mpp/hal/vpu/vp8e/ |
| H A D | hal_vp8e_api_v2.c | 77 return p_api->init(hw_ctx, cfg); in hal_vp8e_init() 133 .init = hal_vp8e_init,
|
| /rockchip-linux_mpp/mpp/codec/dec/h264/ |
| H A D | h264d_api.c | 56 static MPP_RET init_input_ctx(H264dInputCtx_t *p_Inp, ParserCfg *init) in init_input_ctx() argument 60 INP_CHECK(ret, !p_Inp && !init); in init_input_ctx() 322 MPP_RET h264d_init(void *decoder, ParserCfg *init) in h264d_init() argument 332 p_Dec->frame_slots = init->frame_slots; in h264d_init() 333 p_Dec->packet_slots = init->packet_slots; in h264d_init() 334 p_Dec->cfg = init->cfg; in h264d_init() 352 p_Dec->hw_info = init->hw_info; in h264d_init() 353 FUN_CHECK(ret = init_input_ctx(p_Dec->p_Inp, init)); in h264d_init() 772 .init = h264d_init,
|
| /rockchip-linux_mpp/mpp/hal/common/jpeg/ |
| H A D | hal_jpege_api_v2.c | 78 ret = api->init(hw_ctx, cfg); in hal_jpege_init() 137 .init = hal_jpege_init,
|
| /rockchip-linux_mpp/mpp/hal/common/h264/ |
| H A D | hal_h264e_api_v2.c | 97 ret = api->init(hw_ctx, cfg); in hal_h264e_init() 156 .init = hal_h264e_init,
|
| /rockchip-linux_mpp/mpp/hal/common/h265/ |
| H A D | hal_h265e_api_v2.c | 88 ret = api->init(hw_ctx, cfg); in hal_h265ev2_init() 147 .init = hal_h265ev2_init,
|
| /rockchip-linux_mpp/mpp/vproc/vdpp/ |
| H A D | vdpp_api.c | 25 ops->init = vdpp2_init; in rockchip_vdpp_api_alloc_ctx() 32 ops->init = vdpp_init; in rockchip_vdpp_api_alloc_ctx()
|
| /rockchip-linux_mpp/mpp/hal/rkdec/avs2d/ |
| H A D | hal_avs2d_api.c | 122 FUN_CHECK(ret = api->init(hal, cfg)); in hal_avs2d_init() 165 .init = hal_avs2d_init,
|
| /rockchip-linux_mpp/mpp/codec/dec/vp8/ |
| H A D | vp8d_api.c | 31 .init = vp8d_parser_init,
|
| /rockchip-linux_mpp/mpp/codec/dec/m2v/ |
| H A D | m2vd_api.c | 30 .init = m2vd_parser_init,
|
| /rockchip-linux_mpp/mpp/codec/inc/ |
| H A D | parser_api.h | 64 MPP_RET (*init)(void *ctx, ParserCfg *cfg); member
|