Home | History | Annotate | Download | only in capi

Lines Matching refs:handle

32 /*! \brief    create xcam handle to process buffer
39 /*! \brief destroy xcam handle
41 * \params[in] handle handle need to destory
43 void xcam_destroy_handle (XCamHandle *handle);
45 /*! \brief xcam handle get usage how to set parameters
47 * \params[in] handle xcam handle
52 XCamReturn xcam_handle_get_usage (XCamHandle *handle, char *usage_buf, int *usage_len);
54 /*! \brief set handle parameters before init
56 * \params[in] handle xcam handle
61 XCamHandle *handle, const char *field, ...);
63 /*! \brief xcam handle initialize
65 * \params[in] handle xcam handle
68 XCamReturn xcam_handle_init (XCamHandle *handle);
70 /*! \brief xcam handle uninitialize
72 * \params[in] handle xcam handle
75 XCamReturn xcam_handle_uinit (XCamHandle *handle);
78 /*! \brief xcam handle process buffer
80 * \params[in] handle xcam handle
86 XCamReturn xcam_handle_execute (XCamHandle *handle, XCamVideoBuffer *buf_in, XCamVideoBuffer **buf_out);