Home
last modified time | relevance | path

Searched refs:vpx_codec_control_ (Results 1 – 9 of 9) sorted by relevance

/external/libvpx/libvpx/vpx/
Dvpx_codec.h383 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 …]
Dexports_com2 text vpx_codec_control_
/external/libvpx/libvpx/test/
Dencode_test_driver.h112 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()
Ddecode_test_driver.h67 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()
Ddecode_api_test.cc85 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()
Dencode_test_driver.cc40 res = vpx_codec_control_(&encoder_, VP9E_SET_TILE_COLUMNS, in InitEncoder()
/external/libvpx/libvpx/vpx/src/
Dvpx_codec.c88 vpx_codec_err_t vpx_codec_control_(vpx_codec_ctx_t *ctx, int ctrl_id, ...) { in vpx_codec_control_() function
/external/libvpx/libvpx/examples/
Dvp9_lossless_encoder.c115 if (vpx_codec_control_(&codec, VP9E_SET_LOSSLESS, 1)) in main()
/external/libvpx/libvpx/
Dvpxenc.c1544 if (vpx_codec_control_(&stream->encoder, ctrl, value)) in initialize_encoder()