Home
last modified time | relevance | path

Searched refs:iep_com_ctx (Results 1 – 8 of 8) sorted by relevance

/rockchip-linux_mpp/mpp/vproc/inc/
H A Diep_common.h103 typedef struct iep_com_ctx_t iep_com_ctx; typedef
110 void (*release)(iep_com_ctx *ctx);
117 } iep_com_ctx; typedef
121 iep_com_ctx* (*get)(void);
122 void (*put)(iep_com_ctx *ctx);
126 iep_com_ctx* get_iep_ctx();
127 void put_iep_ctx(iep_com_ctx *ictx);
H A Diep2_api.h148 iep_com_ctx* rockchip_iep2_api_alloc_ctx(void);
149 void rockchip_iep2_api_release_ctx(iep_com_ctx *com_ctx);
H A Diep_api.h174 iep_com_ctx* rockchip_iep_api_alloc_ctx(void);
175 void rockchip_iep_api_release_ctx(iep_com_ctx *com_ctx);
/rockchip-linux_mpp/mpp/vproc/
H A Dmpp_vproc_dev.c29 iep_com_ctx* get_iep_ctx() in get_iep_ctx()
35 iep_com_ctx *ctx = dev_comp[i].get(); in get_iep_ctx()
49 void put_iep_ctx(iep_com_ctx *ictx) in put_iep_ctx()
H A Dmpp_dec_vproc.c81 iep_com_ctx *com_ctx;
/rockchip-linux_mpp/mpp/vproc/iep/
H A Diep.c608 iep_com_ctx* rockchip_iep_api_alloc_ctx(void) in rockchip_iep_api_alloc_ctx()
610 iep_com_ctx *com_ctx = (iep_com_ctx *)calloc(sizeof(*com_ctx), 1); in rockchip_iep_api_alloc_ctx()
621 void rockchip_iep_api_release_ctx(iep_com_ctx *com_ctx) in rockchip_iep_api_release_ctx()
/rockchip-linux_mpp/mpp/vproc/iep2/
H A Diep2.c506 iep_com_ctx* rockchip_iep2_api_alloc_ctx(void) in rockchip_iep2_api_alloc_ctx()
508 iep_com_ctx *com_ctx = calloc(sizeof(*com_ctx), 1); in rockchip_iep2_api_alloc_ctx()
519 void rockchip_iep2_api_release_ctx(iep_com_ctx *com_ctx) in rockchip_iep2_api_release_ctx()
/rockchip-linux_mpp/mpp/vproc/iep2/test/
H A Diep2_test.c174 static void iep2_test_set_img(iep_com_ctx *ctx, int w, int h, in iep2_test_set_img()
198 iep_com_ctx* iep2 = rockchip_iep2_api_alloc_ctx(); in iep2_test()