Searched defs:ctrl_id (Results 1 - 4 of 4) sorted by relevance
/external/libvpx/libvpx/vpx/src/ |
H A D | vpx_codec.c | 109 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 D | decode_test_driver.h | 74 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 D | encode_test_driver.h | 122 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 D | vpx_codec_internal.h | 146 * 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
|
Completed in 104 milliseconds