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.h388 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 …]
Dexports_com2 text vpx_codec_control_
/external/libvpx/libvpx/test/
Dencode_test_driver.h123 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()
Ddecode_test_driver.h80 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()
Ddecode_api_test.cc92 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()
Dencode_test_driver.cc41 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/
Dvpx_codec.c108 vpx_codec_err_t vpx_codec_control_(vpx_codec_ctx_t *ctx, in vpx_codec_control_() function
/external/libvpx/libvpx/examples/
Dvp9_lossless_encoder.c122 if (vpx_codec_control_(&codec, VP9E_SET_LOSSLESS, 1)) in main()
/external/libvpx/libvpx/
Dvpxenc.c1562 if (vpx_codec_control_(&stream->encoder, ctrl, value)) in initialize_encoder()