Home
last modified time | relevance | path

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

/OK3568_Linux_fs/external/mpp/mpp/vproc/inc/
H A Diep_common.h103 typedef struct iep_com_ctx_t iep_com_ctx; typedef
109 void (*release)(iep_com_ctx *ctx);
116 } iep_com_ctx; typedef
120 iep_com_ctx* (*get)(void);
121 void (*put)(iep_com_ctx *ctx);
125 iep_com_ctx* get_iep_ctx();
126 void put_iep_ctx(iep_com_ctx *ictx);
H A Diep2_api.h147 iep_com_ctx* rockchip_iep2_api_alloc_ctx(void);
148 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);
/OK3568_Linux_fs/external/mpp/mpp/vproc/
H A Dmpp_vproc_dev.cpp40 iep_com_ctx* get_iep_ctx() in get_iep_ctx()
46 iep_com_ctx *ctx = dev_comp[i].get(); in get_iep_ctx()
60 void put_iep_ctx(iep_com_ctx *ictx) in put_iep_ctx()
H A Dmpp_dec_vproc.cpp85 iep_com_ctx *com_ctx;
/OK3568_Linux_fs/external/mpp/mpp/vproc/iep/
H A Diep.cpp619 iep_com_ctx* rockchip_iep_api_alloc_ctx(void) in rockchip_iep_api_alloc_ctx()
621 iep_com_ctx *com_ctx = (iep_com_ctx *)calloc(sizeof(*com_ctx), 1); in rockchip_iep_api_alloc_ctx()
632 void rockchip_iep_api_release_ctx(iep_com_ctx *com_ctx) in rockchip_iep_api_release_ctx()
/OK3568_Linux_fs/external/mpp/mpp/vproc/iep2/
H A Diep2.c491 iep_com_ctx* rockchip_iep2_api_alloc_ctx(void) in rockchip_iep2_api_alloc_ctx()
493 iep_com_ctx *com_ctx = calloc(sizeof(*com_ctx), 1); in rockchip_iep2_api_alloc_ctx()
504 void rockchip_iep2_api_release_ctx(iep_com_ctx *com_ctx) in rockchip_iep2_api_release_ctx()
/OK3568_Linux_fs/external/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()