Home
last modified time | relevance | path

Searched refs:vpx_codec_err_t (Results 1 – 25 of 41) sorted by relevance

12

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
Dvpx_codec.h142 vpx_codec_err_t; typedef
204 vpx_codec_err_t err; /**< Last returned error */
296 const char *vpx_codec_err_to_string(vpx_codec_err_t err);
342 vpx_codec_err_t vpx_codec_destroy(vpx_codec_ctx_t *ctx);
379 vpx_codec_err_t vpx_codec_control_(vpx_codec_ctx_t *ctx,
414 static vpx_codec_err_t \
417 static vpx_codec_err_t \
434 DECLSPEC_DEPRECATED static vpx_codec_err_t \
437 DECLSPEC_DEPRECATED static vpx_codec_err_t \
454 static vpx_codec_err_t \
[all …]
Dvpx_decoder.h140 vpx_codec_err_t vpx_codec_dec_init_ver(vpx_codec_ctx_t *ctx,
171 vpx_codec_err_t vpx_codec_peek_stream_info(vpx_codec_iface_t *iface,
190 vpx_codec_err_t vpx_codec_get_stream_info(vpx_codec_ctx_t *ctx,
224 vpx_codec_err_t vpx_codec_decode(vpx_codec_ctx_t *ctx,
283 vpx_codec_err_t vpx_codec_register_put_frame_cb(vpx_codec_ctx_t *ctx,
325 vpx_codec_err_t vpx_codec_register_put_slice_cb(vpx_codec_ctx_t *ctx,
370 vpx_codec_err_t vpx_codec_set_frame_buffer_functions(
Dsvc_context.h59 vpx_codec_err_t vpx_svc_set_options(SvcContext *svc_ctx, const char *options);
66 vpx_codec_err_t vpx_svc_set_quantizers(SvcContext *svc_ctx,
75 vpx_codec_err_t vpx_svc_set_scale_factors(SvcContext *svc_ctx,
81 vpx_codec_err_t vpx_svc_init(SvcContext *svc_ctx, vpx_codec_ctx_t *codec_ctx,
87 vpx_codec_err_t vpx_svc_encode(SvcContext *svc_ctx, vpx_codec_ctx_t *codec_ctx,
130 vpx_codec_err_t vpx_svc_get_layer_resolution(const SvcContext *svc_ctx,
Dvpx_encoder.h686 vpx_codec_err_t vpx_codec_enc_init_ver(vpx_codec_ctx_t *ctx,
725 vpx_codec_err_t vpx_codec_enc_init_multi_ver(vpx_codec_ctx_t *ctx,
762 vpx_codec_err_t vpx_codec_enc_config_default(vpx_codec_iface_t *iface,
781 vpx_codec_err_t vpx_codec_enc_config_set(vpx_codec_ctx_t *ctx,
841 vpx_codec_err_t vpx_codec_encode(vpx_codec_ctx_t *ctx,
891 vpx_codec_err_t vpx_codec_set_cx_data_buf(vpx_codec_ctx_t *ctx,
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/
Dvpx_decoder.c22 vpx_codec_err_t vpx_codec_dec_init_ver(vpx_codec_ctx_t *ctx, in vpx_codec_dec_init_ver()
27 vpx_codec_err_t res; in vpx_codec_dec_init_ver()
76 vpx_codec_err_t vpx_codec_peek_stream_info(vpx_codec_iface_t *iface, in vpx_codec_peek_stream_info()
80 vpx_codec_err_t res; in vpx_codec_peek_stream_info()
97 vpx_codec_err_t vpx_codec_get_stream_info(vpx_codec_ctx_t *ctx, in vpx_codec_get_stream_info()
99 vpx_codec_err_t res; in vpx_codec_get_stream_info()
117 vpx_codec_err_t vpx_codec_decode(vpx_codec_ctx_t *ctx, in vpx_codec_decode()
122 vpx_codec_err_t res; in vpx_codec_decode()
151 vpx_codec_err_t vpx_codec_register_put_frame_cb(vpx_codec_ctx_t *ctx, in vpx_codec_register_put_frame_cb()
154 vpx_codec_err_t res; in vpx_codec_register_put_frame_cb()
[all …]
Dvpx_codec.c43 const char *vpx_codec_err_to_string(vpx_codec_err_t err) { in vpx_codec_err_to_string()
83 vpx_codec_err_t vpx_codec_destroy(vpx_codec_ctx_t *ctx) { in vpx_codec_destroy()
84 vpx_codec_err_t res; in vpx_codec_destroy()
109 vpx_codec_err_t vpx_codec_control_(vpx_codec_ctx_t *ctx, in vpx_codec_control_()
112 vpx_codec_err_t res; in vpx_codec_control_()
141 vpx_codec_err_t vpx_mmap_alloc(vpx_codec_mmap_t *mmap) { in vpx_mmap_alloc()
159 vpx_codec_err_t vpx_validate_mmaps(const vpx_codec_stream_info_t *si, in vpx_validate_mmaps()
Dvpx_encoder.c23 vpx_codec_err_t vpx_codec_enc_init_ver(vpx_codec_ctx_t *ctx, in vpx_codec_enc_init_ver()
28 vpx_codec_err_t res; in vpx_codec_enc_init_ver()
66 vpx_codec_err_t vpx_codec_enc_init_multi_ver(vpx_codec_ctx_t *ctx, in vpx_codec_enc_init_multi_ver()
73 vpx_codec_err_t res = VPX_CODEC_OK; in vpx_codec_enc_init_multi_ver()
160 vpx_codec_err_t vpx_codec_enc_config_default(vpx_codec_iface_t *iface, in vpx_codec_enc_config_default()
163 vpx_codec_err_t res; in vpx_codec_enc_config_default()
204 vpx_codec_err_t vpx_codec_encode(vpx_codec_ctx_t *ctx, in vpx_codec_encode()
210 vpx_codec_err_t res = VPX_CODEC_OK; in vpx_codec_encode()
305 vpx_codec_err_t vpx_codec_set_cx_data_buf(vpx_codec_ctx_t *ctx, in vpx_codec_set_cx_data_buf()
363 vpx_codec_err_t vpx_codec_enc_config_set(vpx_codec_ctx_t *ctx, in vpx_codec_enc_config_set()
[all …]
Dsvc_encodeframe.c264 static vpx_codec_err_t set_option_encoding_mode(SvcContext *svc_ctx, in set_option_encoding_mode()
281 static vpx_codec_err_t parse_quantizer_values(SvcContext *svc_ctx, in parse_quantizer_values()
290 vpx_codec_err_t res = VPX_CODEC_OK; in parse_quantizer_values()
341 static vpx_codec_err_t parse_scale_factors(SvcContext *svc_ctx, in parse_scale_factors()
350 vpx_codec_err_t res = VPX_CODEC_OK; in parse_scale_factors()
404 static vpx_codec_err_t parse_options(SvcContext *svc_ctx, const char *options) { in parse_options()
410 vpx_codec_err_t res = VPX_CODEC_OK; in parse_options()
457 vpx_codec_err_t vpx_svc_set_options(SvcContext *svc_ctx, const char *options) { in vpx_svc_set_options()
467 vpx_codec_err_t vpx_svc_set_quantizers(SvcContext *svc_ctx, in vpx_svc_set_quantizers()
484 vpx_codec_err_t vpx_svc_set_scale_factors(SvcContext *svc_ctx, in vpx_svc_set_scale_factors()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/internal/
Dvpx_codec_internal.h80 typedef vpx_codec_err_t (*vpx_codec_init_fn_t)(vpx_codec_ctx_t *ctx,
96 typedef vpx_codec_err_t (*vpx_codec_destroy_fn_t)(vpx_codec_alg_priv_t *ctx);
115 typedef vpx_codec_err_t (*vpx_codec_peek_si_fn_t)(const uint8_t *data,
132 typedef vpx_codec_err_t (*vpx_codec_get_si_fn_t)(vpx_codec_alg_priv_t *ctx,
157 typedef vpx_codec_err_t (*vpx_codec_control_fn_t)(vpx_codec_alg_priv_t *ctx,
197 typedef vpx_codec_err_t (*vpx_codec_decode_fn_t)(vpx_codec_alg_priv_t *ctx,
247 typedef vpx_codec_err_t (*vpx_codec_set_fb_fn_t)(
263 typedef vpx_codec_err_t (*vpx_codec_get_mmap_fn_t)(const vpx_codec_ctx_t *ctx,
280 typedef vpx_codec_err_t (*vpx_codec_set_mmap_fn_t)(vpx_codec_ctx_t *ctx,
284 typedef vpx_codec_err_t (*vpx_codec_encode_fn_t)(vpx_codec_alg_priv_t *ctx,
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
Dvp9_dx_iface.c52 static vpx_codec_err_t vp9_init(vpx_codec_ctx_t *ctx, in vp9_init()
81 static vpx_codec_err_t vp9_destroy(vpx_codec_alg_priv_t *ctx) { in vp9_destroy()
88 static vpx_codec_err_t vp9_peek_si(const uint8_t *data, unsigned int data_sz, in vp9_peek_si()
149 static vpx_codec_err_t vp9_get_si(vpx_codec_alg_priv_t *ctx, in vp9_get_si()
161 static vpx_codec_err_t update_error_state(vpx_codec_alg_priv_t *ctx, in update_error_state()
169 static vpx_codec_err_t decode_one(vpx_codec_alg_priv_t *ctx, in decode_one()
172 vpx_codec_err_t res = VPX_CODEC_OK; in decode_one()
307 static vpx_codec_err_t vp9_decode(vpx_codec_alg_priv_t *ctx, in vp9_decode()
314 vpx_codec_err_t res = VPX_CODEC_OK; in vp9_decode()
388 static vpx_codec_err_t vp9_set_fb_fn( in vp9_set_fb_fn()
[all …]
Dvp9_cx_iface.c106 static vpx_codec_err_t update_error_state(vpx_codec_alg_priv_t *ctx, in update_error_state()
108 const vpx_codec_err_t res = error->error_code; in update_error_state()
142 static vpx_codec_err_t validate_config(vpx_codec_alg_priv_t *ctx, in validate_config()
260 static vpx_codec_err_t validate_img(vpx_codec_alg_priv_t *ctx, in validate_img()
280 static vpx_codec_err_t set_vp9e_config(VP9_CONFIG *oxcf, in set_vp9e_config()
417 static vpx_codec_err_t vp9e_set_config(vpx_codec_alg_priv_t *ctx, in vp9e_set_config()
419 vpx_codec_err_t res; in vp9e_set_config()
446 static vpx_codec_err_t get_param(vpx_codec_alg_priv_t *ctx, int ctrl_id, in get_param()
466 static vpx_codec_err_t set_param(vpx_codec_alg_priv_t *ctx, int ctrl_id, in set_param()
468 vpx_codec_err_t res = VPX_CODEC_OK; in set_param()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
Dsvc_test.cc50 const vpx_codec_err_t res = in SetUp()
84 vpx_codec_err_t res = vpx_svc_init(NULL, &codec_, codec_iface_, &codec_enc_); in TEST_F()
108 vpx_codec_err_t res = vpx_svc_init(&svc_, &codec_, codec_iface_, &codec_enc_); in TEST_F()
118 vpx_codec_err_t res = vpx_svc_set_options(&svc_, NULL); in TEST_F()
128 vpx_codec_err_t res = vpx_svc_set_options(&svc_, "layers=3"); in TEST_F()
137 vpx_codec_err_t res = vpx_svc_set_options(&svc_, "encoding-mode=alt-ip"); in TEST_F()
146 vpx_codec_err_t res = vpx_svc_set_options(&svc_, "layers=2 encoding-mode=ip"); in TEST_F()
156 vpx_codec_err_t res = in TEST_F()
171 vpx_codec_err_t res = vpx_svc_set_options(&svc_, "quantizers=not-quantizers"); in TEST_F()
184 vpx_codec_err_t res = vpx_svc_set_options(&svc_, in TEST_F()
[all …]
Ddecode_test_driver.h52 vpx_codec_err_t DecodeFrame(const uint8_t *cxdata, size_t size);
64 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()
80 vpx_codec_err_t SetFrameBufferFunctions( in SetFrameBufferFunctions()
93 const vpx_codec_err_t res = vpx_codec_dec_init(&decoder_, in InitOnce()
Ddecode_test_driver.cc18 vpx_codec_err_t Decoder::DecodeFrame(const uint8_t *cxdata, size_t size) { in DecodeFrame()
19 vpx_codec_err_t res_dec; in DecodeFrame()
36 vpx_codec_err_t res_dec = decoder->DecodeFrame(video->cxdata(), in RunLoop()
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()
Dencode_test_driver.cc39 vpx_codec_err_t res; in EncodeFrameInternal()
70 const vpx_codec_err_t res = vpx_codec_encode(&encoder_, NULL, 0, 0, 0, in Flush()
76 const vpx_codec_err_t res = codec_->DefaultEncoderConfig(&cfg_, 0); in InitializeConfig()
178 vpx_codec_err_t res_dec = decoder->DecodeFrame( in RunLoop()
Dcodec_factory.h43 virtual vpx_codec_err_t DefaultEncoderConfig(vpx_codec_enc_cfg_t *cfg,
125 virtual vpx_codec_err_t DefaultEncoderConfig(vpx_codec_enc_cfg_t *cfg, in DefaultEncoderConfig()
207 virtual vpx_codec_err_t DefaultEncoderConfig(vpx_codec_enc_cfg_t *cfg, in DefaultEncoderConfig()
Dexternal_frame_buffer_test.cc295 vpx_codec_err_t SetFrameBufferFunctions( in SetFrameBufferFunctions()
307 vpx_codec_err_t DecodeOneFrame() { in DecodeOneFrame()
308 const vpx_codec_err_t res = in DecodeOneFrame()
316 vpx_codec_err_t DecodeRemainingFrames() { in DecodeRemainingFrames()
318 const vpx_codec_err_t res = in DecodeRemainingFrames()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
Dvp8_dx_iface.c120 static vpx_codec_err_t vp8_init(vpx_codec_ctx_t *ctx, in vp8_init()
123 vpx_codec_err_t res = VPX_CODEC_OK; in vp8_init()
178 static vpx_codec_err_t vp8_destroy(vpx_codec_alg_priv_t *ctx) in vp8_destroy()
193 static vpx_codec_err_t vp8_peek_si_internal(const uint8_t *data, in vp8_peek_si_internal()
199 vpx_codec_err_t res = VPX_CODEC_OK; in vp8_peek_si_internal()
247 static vpx_codec_err_t vp8_peek_si(const uint8_t *data, in vp8_peek_si()
253 static vpx_codec_err_t vp8_get_si(vpx_codec_alg_priv_t *ctx, in vp8_get_si()
271 static vpx_codec_err_t
275 vpx_codec_err_t res; in update_error_state()
319 vpx_codec_err_t *res) in update_fragments()
[all …]
Dvp8_cx_iface.c95 static vpx_codec_err_t
99 vpx_codec_err_t res; in update_error_state()
135 static vpx_codec_err_t validate_config(vpx_codec_alg_priv_t *ctx, in validate_config()
264 static vpx_codec_err_t validate_img(vpx_codec_alg_priv_t *ctx, in validate_img()
285 static vpx_codec_err_t set_vp8e_config(VP8_CONFIG *oxcf, in set_vp8e_config()
448 static vpx_codec_err_t vp8e_set_config(vpx_codec_alg_priv_t *ctx, in vp8e_set_config()
451 vpx_codec_err_t res; in vp8e_set_config()
481 static vpx_codec_err_t get_param(vpx_codec_alg_priv_t *ctx, in get_param()
503 static vpx_codec_err_t set_param(vpx_codec_alg_priv_t *ctx, in set_param()
507 vpx_codec_err_t res = VPX_CODEC_OK; in set_param()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
Donyxd.h55vpx_codec_err_t vp8dx_get_reference(struct VP8D_COMP* comp, enum vpx_ref_frame_type ref_frame_flag…
56vpx_codec_err_t vp8dx_set_reference(struct VP8D_COMP* comp, enum vpx_ref_frame_type ref_frame_flag…
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
Dvp9_decoder.h75 vpx_codec_err_t vp9_copy_reference_dec(struct VP9Decompressor *pbi,
79 vpx_codec_err_t vp9_set_reference_dec(VP9_COMMON *cm,
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
Dtwopass_encoder.c78 const vpx_codec_err_t res = vpx_codec_encode(ctx, img, pts, duration, flags, in get_frame_stats()
103 const vpx_codec_err_t res = vpx_codec_encode(ctx, img, pts, duration, flags, in encode_frame()
128 vpx_codec_err_t res; in main()
Dvp8cx_set_ref.c74 const vpx_codec_err_t res = vpx_codec_encode(codec, img, frame_index, 1, 0, in encode_frame()
101 vpx_codec_err_t res; in main()
Dsimple_encoder.c128 const vpx_codec_err_t res = vpx_codec_encode(codec, img, frame_index, 1, in encode_frame()
155 vpx_codec_err_t res; in main()

12