Searched refs:vpx_codec_control_ (Results 1 – 9 of 9) sorted by relevance
/external/libvpx/libvpx/vpx/ |
D | vpx_codec.h | 388 vpx_codec_err_t vpx_codec_control_(vpx_codec_ctx_t *ctx, 392 # define vpx_codec_control(ctx,id,data) vpx_codec_control_(ctx,id,data) 407 # define vpx_codec_control(ctx,id,data) vpx_codec_control_##id(ctx,id,data)\ 424 vpx_codec_control_##id(vpx_codec_ctx_t*, int, typ) UNUSED;\ 427 vpx_codec_control_##id(vpx_codec_ctx_t *ctx, int ctrl_id, typ data) {\ 428 return vpx_codec_control_(ctx, ctrl_id, data);\ 444 vpx_codec_control_##id(vpx_codec_ctx_t*, int, typ) DEPRECATED UNUSED;\ 447 vpx_codec_control_##id(vpx_codec_ctx_t *ctx, int ctrl_id, typ data) {\ 448 return vpx_codec_control_(ctx, ctrl_id, data);\ 464 vpx_codec_control_##id(vpx_codec_ctx_t*, int) UNUSED;\ [all …]
|
D | exports_com | 2 text vpx_codec_control_
|
/external/libvpx/libvpx/test/ |
D | encode_test_driver.h | 123 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, arg); in Control() 128 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, arg); in Control() 133 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, arg); in Control() 138 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, arg); in Control() 143 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, arg); in Control() 148 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, arg); in Control()
|
D | decode_test_driver.h | 80 const vpx_codec_err_t res = vpx_codec_control_(&decoder_, ctrl_id, arg); in Control() 86 const vpx_codec_err_t res = vpx_codec_control_(&decoder_, ctrl_id, arg); in Control()
|
D | decode_api_test.cc | 92 const vpx_codec_err_t res = vpx_codec_control_(dec, kControls[i], val); in TestVp9Controls() 102 vpx_codec_control_(dec, kControls[i], NULL)); in TestVp9Controls()
|
D | encode_test_driver.cc | 41 res = vpx_codec_control_(&encoder_, VP9E_SET_TILE_COLUMNS, in InitEncoder() 50 res = vpx_codec_control_(&encoder_, VP9E_SET_TILE_COLUMNS, in InitEncoder()
|
/external/libvpx/libvpx/vpx/src/ |
D | vpx_codec.c | 108 vpx_codec_err_t vpx_codec_control_(vpx_codec_ctx_t *ctx, in vpx_codec_control_() function
|
/external/libvpx/libvpx/examples/ |
D | vp9_lossless_encoder.c | 122 if (vpx_codec_control_(&codec, VP9E_SET_LOSSLESS, 1)) in main()
|
/external/libvpx/libvpx/ |
D | vpxenc.c | 1562 if (vpx_codec_control_(&stream->encoder, ctrl, value)) in initialize_encoder()
|