Searched refs:vpx_codec_control_ (Results 1 – 9 of 9) sorted by relevance
/external/libvpx/libvpx/vpx/ |
D | vpx_codec.h | 383 vpx_codec_err_t vpx_codec_control_(vpx_codec_ctx_t *ctx, int ctrl_id, ...); 385 #define vpx_codec_control(ctx, id, data) vpx_codec_control_(ctx, id, data) 401 vpx_codec_control_##id(ctx, id, data) /**<\hideinitializer*/ 415 static vpx_codec_err_t vpx_codec_control_##id(vpx_codec_ctx_t *, int, typ) \ 418 static vpx_codec_err_t vpx_codec_control_##id(vpx_codec_ctx_t *ctx, \ 420 return vpx_codec_control_(ctx, ctrl_id, data); \ 434 DECLSPEC_DEPRECATED static vpx_codec_err_t vpx_codec_control_##id( \ 437 DECLSPEC_DEPRECATED static vpx_codec_err_t vpx_codec_control_##id( \ 439 return vpx_codec_control_(ctx, ctrl_id, data); \ 453 static vpx_codec_err_t vpx_codec_control_##id(vpx_codec_ctx_t *, int) \ [all …]
|
D | exports_com | 2 text vpx_codec_control_
|
/external/libvpx/libvpx/test/ |
D | encode_test_driver.h | 112 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, arg); in Control() 117 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, arg); in Control() 122 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, arg); in Control() 127 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, arg); in Control() 132 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, arg); in Control() 137 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, arg); in Control()
|
D | decode_test_driver.h | 67 const vpx_codec_err_t res = vpx_codec_control_(&decoder_, ctrl_id, arg); in Control() 73 const vpx_codec_err_t res = vpx_codec_control_(&decoder_, ctrl_id, arg); in Control()
|
D | decode_api_test.cc | 85 const vpx_codec_err_t res = vpx_codec_control_(dec, kControls[i], val); in TestVp9Controls() 93 vpx_codec_control_(dec, kControls[i], NULL)); in TestVp9Controls()
|
D | encode_test_driver.cc | 40 res = vpx_codec_control_(&encoder_, VP9E_SET_TILE_COLUMNS, in InitEncoder()
|
/external/libvpx/libvpx/vpx/src/ |
D | vpx_codec.c | 88 vpx_codec_err_t vpx_codec_control_(vpx_codec_ctx_t *ctx, int ctrl_id, ...) { in vpx_codec_control_() function
|
/external/libvpx/libvpx/examples/ |
D | vp9_lossless_encoder.c | 115 if (vpx_codec_control_(&codec, VP9E_SET_LOSSLESS, 1)) in main()
|
/external/libvpx/libvpx/ |
D | vpxenc.c | 1544 if (vpx_codec_control_(&stream->encoder, ctrl, value)) in initialize_encoder()
|