Home
last modified time | relevance | path

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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
Dvpx_codec.h379 vpx_codec_err_t vpx_codec_control_(vpx_codec_ctx_t *ctx,
383 # define vpx_codec_control(ctx,id,data) vpx_codec_control_(ctx,id,data)
398 # define vpx_codec_control(ctx,id,data) vpx_codec_control_##id(ctx,id,data)\
415 vpx_codec_control_##id(vpx_codec_ctx_t*, int, typ) UNUSED;\
418 vpx_codec_control_##id(vpx_codec_ctx_t *ctx, int ctrl_id, typ data) {\
419 return vpx_codec_control_(ctx, ctrl_id, data);\
435 vpx_codec_control_##id(vpx_codec_ctx_t*, int, typ) DEPRECATED UNUSED;\
438 vpx_codec_control_##id(vpx_codec_ctx_t *ctx, int ctrl_id, typ data) {\
439 return vpx_codec_control_(ctx, ctrl_id, data);\
455 vpx_codec_control_##id(vpx_codec_ctx_t*, int) UNUSED;\
[all …]
Dexports_com2 text vpx_codec_control_
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
Dencode_test_driver.h120 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, arg); in Control()
125 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, arg); in Control()
130 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, arg); in Control()
136 const vpx_codec_err_t res = vpx_codec_control_(&encoder_, ctrl_id, arg); in Control()
Ddecode_test_driver.h64 const vpx_codec_err_t res = vpx_codec_control_(&decoder_, ctrl_id, arg); in Control()
70 const vpx_codec_err_t res = vpx_codec_control_(&decoder_, ctrl_id, arg); in Control()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/
Dvpx_codec.c109 vpx_codec_err_t vpx_codec_control_(vpx_codec_ctx_t *ctx, in vpx_codec_control_() function
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
Dvpxenc.c1240 if (vpx_codec_control_(&stream->encoder, ctrl, value)) in initialize_encoder()