Lines Matching refs:handle
197 virtual int ConfigMpp(void *handle, exynos_mpp_img *src,
199 virtual int ConfigBlendMpp(void *handle, exynos_mpp_img *src,
202 virtual int RunMpp(void *handle, exynos_mpp_img *src,
204 virtual int StopMpp(void *handle);
205 virtual void DestroyMpp(void *handle);
206 virtual int SetCSCProperty(void *handle, unsigned int eqAuto,
208 virtual int FreeMpp(void *handle);
209 virtual int SetInputCrop(void *handle, exynos_mpp_img *src, exynos_mpp_img *dst);
210 bool m_gsc_find_and_create(void *handle);
211 bool m_gsc_out_destroy(void *handle);
212 bool m_gsc_cap_destroy(void *handle);
213 bool m_gsc_m2m_destroy(void *handle);
215 int m_gsc_output_create(void *handle, int dev_num, int out_mode);
216 int m_gsc_capture_create(void *handle, int dev_num, int out_mode);
217 int m_gsc_out_stop(void *handle);
218 int m_gsc_cap_stop(void *handle);
219 int m_gsc_m2m_stop(void *handle);
220 int m_gsc_m2m_run_core(void *handle);
221 int m_gsc_m2m_wait_frame_done(void *handle);
222 int m_gsc_m2m_config(void *handle,
224 int m_gsc_out_config(void *handle,
226 int m_gsc_cap_config(void *handle,
228 int m_gsc_m2m_run(void *handle,
230 int m_gsc_out_run(void *handle, exynos_mpp_img *src_img);
231 int m_gsc_cap_run(void *handle, exynos_mpp_img *dst_img);
253 inline CGscaler *GetGscaler(void* handle) in GetGscaler() argument
255 if (handle == NULL) { in GetGscaler()
260 CGscaler *gsc = reinterpret_cast<CGscaler *>(handle); in GetGscaler()