Searched defs:ctrl_id (Results 1 - 6 of 6) sorted by relevance

/external/libvpx/libvpx/vpx/src/
H A Dvpx_codec.c109 int ctrl_id,
113 if (!ctx || !ctrl_id)
123 if (!entry->ctrl_id || entry->ctrl_id == ctrl_id) {
126 va_start(ap, ctrl_id);
108 vpx_codec_control_(vpx_codec_ctx_t *ctx, int ctrl_id, ...) argument
/external/libvpx/libvpx/test/
H A Ddecode_test_driver.h74 void Control(int ctrl_id, int arg) { argument
75 Control(ctrl_id, arg, VPX_CODEC_OK);
78 void Control(int ctrl_id, const void *arg) { argument
80 const vpx_codec_err_t res = vpx_codec_control_(&decoder_, ctrl_id, arg);
84 void Control(int ctrl_id, int arg, vpx_codec_err_t expected_value) { argument
86 const vpx_codec_err_t res = vpx_codec_control_(&decoder_, ctrl_id, arg);
H A Dencode_test_driver.h122 void Control(int ctrl_id, int arg) { argument
123 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, arg);
127 void Control(int ctrl_id, int *arg) { argument
128 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, arg);
132 void Control(int ctrl_id, struct vpx_scaling_mode *arg) { argument
133 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, arg);
137 void Control(int ctrl_id, struct vpx_svc_layer_id *arg) { argument
138 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, arg);
142 void Control(int ctrl_id, struct vpx_svc_parameters *arg) { argument
143 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, ar
147 Control(int ctrl_id, vpx_active_map_t *arg) argument
[all...]
/external/libvpx/libvpx/vpx/internal/
H A Dvpx_codec_internal.h146 * header file. In particular, the ctrl_id parameter is guaranteed to exist
151 * \param[in] ctrl_id Algorithm specific control identifier
168 * mapping. This implies that ctrl_id values chosen by the algorithm
172 int ctrl_id; member in struct:vpx_codec_ctrl_fn_map
/external/opencv3/modules/videoio/src/
H A Dcap_libv4l.cpp301 __u32 ctrl_id; member in struct:v4l2_ctrl_range
522 /* icvSetPropertyCAM_V4L(capture, capture->v4l2_ctrl_ranges[i]->ctrl_id, value); */
533 range->ctrl_id = ctrl->id;
547 if (id == capture->v4l2_ctrl_ranges[i]->ctrl_id) {
557 if (id == capture->v4l2_ctrl_ranges[i]->ctrl_id) {
567 if (id == capture->v4l2_ctrl_ranges[i]->ctrl_id) {
577 __u32 ctrl_id; local
607 for(ctrl_id=V4L2_CID_BASE; ctrl_id<V4L2_CID_LASTP1; ctrl_id
[all...]
H A Dcap_v4l.cpp652 __u32 ctrl_id; local
654 for (ctrl_id = V4L2_CID_BASE;
655 ctrl_id < V4L2_CID_LASTP1;
656 ctrl_id++)
661 capture->queryctrl.id = ctrl_id;
724 for (ctrl_id = V4L2_CID_PRIVATE_BASE;;ctrl_id++)
729 capture->queryctrl.id = ctrl_id;

Completed in 1360 milliseconds