Home
last modified time | relevance | path

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

12

/external/libvpx/libvpx/vpx/
Dvpx_codec.h142 vpx_codec_err_t; typedef
202 vpx_codec_err_t err; /**< Last returned error */
303 const char *vpx_codec_err_to_string(vpx_codec_err_t err);
349 vpx_codec_err_t vpx_codec_destroy(vpx_codec_ctx_t *ctx);
386 vpx_codec_err_t vpx_codec_control_(vpx_codec_ctx_t *ctx,
421 static vpx_codec_err_t \
424 static vpx_codec_err_t \
441 DECLSPEC_DEPRECATED static vpx_codec_err_t \
444 DECLSPEC_DEPRECATED static vpx_codec_err_t \
461 static vpx_codec_err_t \
[all …]
Dvpx_decoder.h136 vpx_codec_err_t vpx_codec_dec_init_ver(vpx_codec_ctx_t *ctx,
167 vpx_codec_err_t vpx_codec_peek_stream_info(vpx_codec_iface_t *iface,
186 vpx_codec_err_t vpx_codec_get_stream_info(vpx_codec_ctx_t *ctx,
220 vpx_codec_err_t vpx_codec_decode(vpx_codec_ctx_t *ctx,
279 vpx_codec_err_t vpx_codec_register_put_frame_cb(vpx_codec_ctx_t *ctx,
321 vpx_codec_err_t vpx_codec_register_put_slice_cb(vpx_codec_ctx_t *ctx,
366 vpx_codec_err_t vpx_codec_set_frame_buffer_functions(
Dsvc_context.h51 vpx_codec_err_t vpx_svc_set_options(SvcContext *svc_ctx, const char *options);
58 vpx_codec_err_t vpx_svc_set_quantizers(SvcContext *svc_ctx,
66 vpx_codec_err_t vpx_svc_set_scale_factors(SvcContext *svc_ctx,
72 vpx_codec_err_t vpx_svc_init(SvcContext *svc_ctx, vpx_codec_ctx_t *codec_ctx,
78 vpx_codec_err_t vpx_svc_encode(SvcContext *svc_ctx, vpx_codec_ctx_t *codec_ctx,
123 vpx_codec_err_t vpx_svc_get_layer_resolution(const SvcContext *svc_ctx,
Dvpx_encoder.h716 vpx_codec_err_t vpx_codec_enc_init_ver(vpx_codec_ctx_t *ctx,
751 vpx_codec_err_t vpx_codec_enc_init_multi_ver(vpx_codec_ctx_t *ctx,
788 vpx_codec_err_t vpx_codec_enc_config_default(vpx_codec_iface_t *iface,
807 vpx_codec_err_t vpx_codec_enc_config_set(vpx_codec_ctx_t *ctx,
867 vpx_codec_err_t vpx_codec_encode(vpx_codec_ctx_t *ctx,
917 vpx_codec_err_t vpx_codec_set_cx_data_buf(vpx_codec_ctx_t *ctx,
/external/libvpx/libvpx/vpx/src/
Dvpx_decoder.c21 vpx_codec_err_t vpx_codec_dec_init_ver(vpx_codec_ctx_t *ctx, in vpx_codec_dec_init_ver()
26 vpx_codec_err_t res; in vpx_codec_dec_init_ver()
66 vpx_codec_err_t vpx_codec_peek_stream_info(vpx_codec_iface_t *iface, in vpx_codec_peek_stream_info()
70 vpx_codec_err_t res; in vpx_codec_peek_stream_info()
87 vpx_codec_err_t vpx_codec_get_stream_info(vpx_codec_ctx_t *ctx, in vpx_codec_get_stream_info()
89 vpx_codec_err_t res; in vpx_codec_get_stream_info()
107 vpx_codec_err_t vpx_codec_decode(vpx_codec_ctx_t *ctx, in vpx_codec_decode()
112 vpx_codec_err_t res; in vpx_codec_decode()
141 vpx_codec_err_t vpx_codec_register_put_frame_cb(vpx_codec_ctx_t *ctx, in vpx_codec_register_put_frame_cb()
144 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_()
139 vpx_codec_err_t error, in vpx_internal_error()
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()
64 vpx_codec_err_t vpx_codec_enc_init_multi_ver(vpx_codec_ctx_t *ctx, in vpx_codec_enc_init_multi_ver()
71 vpx_codec_err_t res = VPX_CODEC_OK; in vpx_codec_enc_init_multi_ver()
156 vpx_codec_err_t vpx_codec_enc_config_default(vpx_codec_iface_t *iface, in vpx_codec_enc_config_default()
159 vpx_codec_err_t res; in vpx_codec_enc_config_default()
202 vpx_codec_err_t vpx_codec_encode(vpx_codec_ctx_t *ctx, in vpx_codec_encode()
208 vpx_codec_err_t res = VPX_CODEC_OK; in vpx_codec_encode()
303 vpx_codec_err_t vpx_codec_set_cx_data_buf(vpx_codec_ctx_t *ctx, in vpx_codec_set_cx_data_buf()
361 vpx_codec_err_t vpx_codec_enc_config_set(vpx_codec_ctx_t *ctx, in vpx_codec_enc_config_set()
[all …]
Dsvc_encodeframe.c199 static vpx_codec_err_t parse_quantizer_values(SvcContext *svc_ctx, in parse_quantizer_values()
207 vpx_codec_err_t res = VPX_CODEC_OK; in parse_quantizer_values()
243 static vpx_codec_err_t parse_auto_alt_ref(SvcContext *svc_ctx, in parse_auto_alt_ref()
251 vpx_codec_err_t res = VPX_CODEC_OK; in parse_auto_alt_ref()
301 static vpx_codec_err_t parse_scale_factors(SvcContext *svc_ctx, in parse_scale_factors()
310 vpx_codec_err_t res = VPX_CODEC_OK; in parse_scale_factors()
364 static vpx_codec_err_t parse_options(SvcContext *svc_ctx, const char *options) { in parse_options()
369 vpx_codec_err_t res = VPX_CODEC_OK; in parse_options()
407 vpx_codec_err_t vpx_svc_set_options(SvcContext *svc_ctx, const char *options) { in vpx_svc_set_options()
417 vpx_codec_err_t vpx_svc_set_quantizers(SvcContext *svc_ctx, in vpx_svc_set_quantizers()
[all …]
/external/libvpx/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,
196 typedef vpx_codec_err_t (*vpx_codec_decode_fn_t)(vpx_codec_alg_priv_t *ctx,
246 typedef vpx_codec_err_t (*vpx_codec_set_fb_fn_t)(
252 typedef vpx_codec_err_t (*vpx_codec_encode_fn_t)(vpx_codec_alg_priv_t *ctx,
261 typedef vpx_codec_err_t
270 typedef vpx_codec_err_t
[all …]
/external/libvpx/libvpx/test/
Ddecode_test_driver.h52 vpx_codec_err_t PeekStream(const uint8_t *cxdata, size_t size,
55 vpx_codec_err_t DecodeFrame(const uint8_t *cxdata, size_t size);
57 vpx_codec_err_t DecodeFrame(const uint8_t *cxdata, size_t size,
70 const vpx_codec_err_t res = vpx_codec_control_(&decoder_, ctrl_id, arg); in Control()
76 const vpx_codec_err_t res = vpx_codec_control_(&decoder_, ctrl_id, arg); in Control()
86 vpx_codec_err_t SetFrameBufferFunctions( in SetFrameBufferFunctions()
105 const vpx_codec_err_t res = vpx_codec_dec_init(&decoder_, in InitOnce()
132 virtual bool HandleDecodeResult(const vpx_codec_err_t res_dec, in HandleDecodeResult()
146 const vpx_codec_err_t res_peek);
Ddecode_test_driver.cc20 vpx_codec_err_t Decoder::PeekStream(const uint8_t *cxdata, size_t size, in PeekStream()
27 vpx_codec_err_t Decoder::DecodeFrame(const uint8_t *cxdata, size_t size) { in DecodeFrame()
31 vpx_codec_err_t Decoder::DecodeFrame(const uint8_t *cxdata, size_t size, in DecodeFrame()
33 vpx_codec_err_t res_dec; in DecodeFrame()
49 const vpx_codec_err_t res_peek) { in HandlePeekResult()
81 const vpx_codec_err_t res_peek = decoder->PeekStream(video->cxdata(), in RunLoop()
87 vpx_codec_err_t res_dec = decoder->DecodeFrame(video->cxdata(), in RunLoop()
93 const vpx_codec_err_t res_dec = decoder->DecodeFrame(NULL, 0); in RunLoop()
Dsvc_test.cc48 const vpx_codec_err_t res = in SetUp()
81 vpx_codec_err_t res = vpx_svc_init(NULL, &codec_, codec_iface_, &codec_enc_); in TEST_F()
105 vpx_codec_err_t res = vpx_svc_init(&svc_, &codec_, codec_iface_, &codec_enc_); in TEST_F()
115 vpx_codec_err_t res = vpx_svc_set_options(&svc_, NULL); in TEST_F()
125 vpx_codec_err_t res = vpx_svc_set_options(&svc_, "layers=3"); in TEST_F()
134 vpx_codec_err_t res = in TEST_F()
144 vpx_codec_err_t res = in TEST_F()
159 vpx_codec_err_t res = vpx_svc_set_options(&svc_, "quantizers=not-quantizers"); in TEST_F()
172 vpx_codec_err_t res = vpx_svc_set_options(&svc_, "auto-alt-refs=none"); in TEST_F()
189 vpx_codec_err_t res = vpx_svc_set_quantizers(NULL, "40,30"); in TEST_F()
[all …]
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()
225 virtual bool HandleDecodeResult(const vpx_codec_err_t res_dec, in HandleDecodeResult()
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()
79 const vpx_codec_err_t res = codec_->DefaultEncoderConfig(&cfg_, 0); in InitializeConfig()
181 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.cc299 vpx_codec_err_t SetFrameBufferFunctions( in SetFrameBufferFunctions()
311 vpx_codec_err_t DecodeOneFrame() { in DecodeOneFrame()
312 const vpx_codec_err_t res = in DecodeOneFrame()
320 vpx_codec_err_t DecodeRemainingFrames() { in DecodeRemainingFrames()
322 const vpx_codec_err_t res = in DecodeRemainingFrames()
Dinvalid_file_test.cc55 const vpx_codec_err_t res_dec, in HandleDecodeResult()
131 const vpx_codec_err_t res_peek) {} in HandlePeekResult()
/external/libvpx/libvpx/vp9/
Dvp9_dx_iface.c53 static vpx_codec_err_t decoder_init(vpx_codec_ctx_t *ctx, in decoder_init()
90 static vpx_codec_err_t decoder_destroy(vpx_codec_alg_priv_t *ctx) { in decoder_destroy()
125 static vpx_codec_err_t decoder_peek_si_internal(const uint8_t *data, in decoder_peek_si_internal()
199 static vpx_codec_err_t decoder_peek_si(const uint8_t *data, in decoder_peek_si()
205 static vpx_codec_err_t decoder_get_si(vpx_codec_alg_priv_t *ctx, in decoder_get_si()
216 static vpx_codec_err_t update_error_state(vpx_codec_alg_priv_t *ctx, in update_error_state()
278 static vpx_codec_err_t decode_one(vpx_codec_alg_priv_t *ctx, in decode_one()
295 const vpx_codec_err_t res = in decode_one()
346 static vpx_codec_err_t parse_superframe_index(const uint8_t *data, in parse_superframe_index()
410 static vpx_codec_err_t decoder_decode(vpx_codec_alg_priv_t *ctx, in decoder_decode()
[all …]
Dvp9_cx_iface.c111 static vpx_codec_err_t update_error_state(vpx_codec_alg_priv_t *ctx, in update_error_state()
113 const vpx_codec_err_t res = error->error_code; in update_error_state()
147 static vpx_codec_err_t validate_config(vpx_codec_alg_priv_t *ctx, in validate_config()
293 static vpx_codec_err_t validate_img(vpx_codec_alg_priv_t *ctx, in validate_img()
324 static vpx_codec_err_t set_encoder_config( in set_encoder_config()
481 static vpx_codec_err_t encoder_set_config(vpx_codec_alg_priv_t *ctx, in encoder_set_config()
483 vpx_codec_err_t res; in encoder_set_config()
506 static vpx_codec_err_t ctrl_get_quantizer(vpx_codec_alg_priv_t *ctx, in ctrl_get_quantizer()
515 static vpx_codec_err_t ctrl_get_quantizer64(vpx_codec_alg_priv_t *ctx, in ctrl_get_quantizer64()
524 static vpx_codec_err_t update_extra_cfg(vpx_codec_alg_priv_t *ctx, in update_extra_cfg()
[all …]
/external/libvpx/libvpx/vp8/
Dvp8_cx_iface.c96 static vpx_codec_err_t
100 vpx_codec_err_t res; in update_error_state()
136 static vpx_codec_err_t validate_config(vpx_codec_alg_priv_t *ctx, in validate_config()
265 static vpx_codec_err_t validate_img(vpx_codec_alg_priv_t *ctx, in validate_img()
286 static vpx_codec_err_t set_vp8e_config(VP8_CONFIG *oxcf, in set_vp8e_config()
447 static vpx_codec_err_t vp8e_set_config(vpx_codec_alg_priv_t *ctx, in vp8e_set_config()
450 vpx_codec_err_t res; in vp8e_set_config()
478 static vpx_codec_err_t get_quantizer(vpx_codec_alg_priv_t *ctx, va_list args) in get_quantizer()
487 static vpx_codec_err_t get_quantizer64(vpx_codec_alg_priv_t *ctx, va_list args) in get_quantizer64()
496 static vpx_codec_err_t update_extracfg(vpx_codec_alg_priv_t *ctx, in update_extracfg()
[all …]
Dvp8_dx_iface.c103 static vpx_codec_err_t vp8_init(vpx_codec_ctx_t *ctx, in vp8_init()
106 vpx_codec_err_t res = VPX_CODEC_OK; in vp8_init()
150 static vpx_codec_err_t vp8_destroy(vpx_codec_alg_priv_t *ctx) in vp8_destroy()
159 static vpx_codec_err_t vp8_peek_si_internal(const uint8_t *data, in vp8_peek_si_internal()
165 vpx_codec_err_t res = VPX_CODEC_OK; in vp8_peek_si_internal()
213 static vpx_codec_err_t vp8_peek_si(const uint8_t *data, in vp8_peek_si()
219 static vpx_codec_err_t vp8_get_si(vpx_codec_alg_priv_t *ctx, in vp8_get_si()
237 static vpx_codec_err_t
241 vpx_codec_err_t res; in update_error_state()
286 vpx_codec_err_t *res) in update_fragments()
[all …]
/external/libvpx/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…
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decoder.h69 vpx_codec_err_t vp9_copy_reference_dec(struct VP9Decoder *pbi,
73 vpx_codec_err_t vp9_set_reference_dec(VP9_COMMON *cm,
/external/libvpx/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()

12