Searched refs:vpx_codec_err_t (Results 1 - 13 of 13) sorted by relevance

/external/libvpx/vpx/
H A Dvpx_decoder.h122 vpx_codec_err_t vpx_codec_dec_init_ver(vpx_codec_ctx_t *ctx,
153 vpx_codec_err_t vpx_codec_peek_stream_info(vpx_codec_iface_t *iface,
172 vpx_codec_err_t vpx_codec_get_stream_info(vpx_codec_ctx_t *ctx,
196 * see the descriptions of the other error codes in ::vpx_codec_err_t
199 vpx_codec_err_t vpx_codec_decode(vpx_codec_ctx_t *ctx,
258 vpx_codec_err_t vpx_codec_register_put_frame_cb(vpx_codec_ctx_t *ctx,
300 vpx_codec_err_t vpx_codec_register_put_slice_cb(vpx_codec_ctx_t *ctx,
H A Dvpx_codec.h134 vpx_codec_err_t; typedef in typeref:enum:__anon8260
197 vpx_codec_err_t err; /**< Last returned error */
290 const char *vpx_codec_err_to_string(vpx_codec_err_t err);
336 vpx_codec_err_t vpx_codec_destroy(vpx_codec_ctx_t *ctx);
373 vpx_codec_err_t vpx_codec_control_(vpx_codec_ctx_t *ctx,
408 static vpx_codec_err_t \
411 static vpx_codec_err_t \
428 DECLSPEC_DEPRECATED static vpx_codec_err_t \
431 DECLSPEC_DEPRECATED static vpx_codec_err_t \
448 static vpx_codec_err_t \
[all...]
H A Dvpx_encoder.h577 vpx_codec_err_t vpx_codec_enc_init_ver(vpx_codec_ctx_t *ctx,
611 vpx_codec_err_t vpx_codec_enc_config_default(vpx_codec_iface_t *iface,
630 vpx_codec_err_t vpx_codec_enc_config_set(vpx_codec_ctx_t *ctx,
690 vpx_codec_err_t vpx_codec_encode(vpx_codec_ctx_t *ctx,
741 vpx_codec_err_t vpx_codec_set_cx_data_buf(vpx_codec_ctx_t *ctx,
/external/libvpx/vpx/src/
H A Dvpx_decoder.c21 vpx_codec_err_t vpx_codec_dec_init_ver(vpx_codec_ctx_t *ctx,
27 vpx_codec_err_t res;
76 vpx_codec_err_t vpx_codec_peek_stream_info(vpx_codec_iface_t *iface,
81 vpx_codec_err_t res;
99 vpx_codec_err_t vpx_codec_get_stream_info(vpx_codec_ctx_t *ctx,
102 vpx_codec_err_t res;
121 vpx_codec_err_t vpx_codec_decode(vpx_codec_ctx_t *ctx,
127 vpx_codec_err_t res;
158 vpx_codec_err_t vpx_codec_register_put_frame_cb(vpx_codec_ctx_t *ctx,
162 vpx_codec_err_t re
[all...]
H A Dvpx_codec.c46 const char *vpx_codec_err_to_string(vpx_codec_err_t err)
90 vpx_codec_err_t vpx_codec_destroy(vpx_codec_ctx_t *ctx)
92 vpx_codec_err_t res;
119 vpx_codec_err_t vpx_codec_control_(vpx_codec_ctx_t *ctx,
123 vpx_codec_err_t res;
H A Dvpx_encoder.c22 vpx_codec_err_t vpx_codec_enc_init_ver(vpx_codec_ctx_t *ctx,
28 vpx_codec_err_t res;
67 vpx_codec_err_t vpx_codec_enc_config_default(vpx_codec_iface_t *iface,
71 vpx_codec_err_t res;
115 vpx_codec_err_t vpx_codec_encode(vpx_codec_ctx_t *ctx,
122 vpx_codec_err_t res;
199 vpx_codec_err_t vpx_codec_set_cx_data_buf(vpx_codec_ctx_t *ctx,
265 vpx_codec_err_t vpx_codec_enc_config_set(vpx_codec_ctx_t *ctx,
268 vpx_codec_err_t res;
/external/libvpx/vpx/internal/
H A Dvpx_codec_internal.h76 typedef vpx_codec_err_t (*vpx_codec_init_fn_t)(vpx_codec_ctx_t *ctx);
91 typedef vpx_codec_err_t (*vpx_codec_destroy_fn_t)(vpx_codec_alg_priv_t *ctx);
109 typedef vpx_codec_err_t (*vpx_codec_peek_si_fn_t)(const uint8_t *data,
126 typedef vpx_codec_err_t (*vpx_codec_get_si_fn_t)(vpx_codec_alg_priv_t *ctx,
151 typedef vpx_codec_err_t (*vpx_codec_control_fn_t)(vpx_codec_alg_priv_t *ctx,
189 * see the descriptions of the other error codes in ::vpx_codec_err_t
192 typedef vpx_codec_err_t (*vpx_codec_decode_fn_t)(vpx_codec_alg_priv_t *ctx,
228 typedef vpx_codec_err_t (*vpx_codec_get_mmap_fn_t)(const vpx_codec_ctx_t *ctx,
245 typedef vpx_codec_err_t (*vpx_codec_set_mmap_fn_t)(vpx_codec_ctx_t *ctx,
249 typedef vpx_codec_err_t (*vpx_codec_encode_fn_
[all...]
/external/libvpx/vp8/
H A Dvp8_dx_iface.c90 static vpx_codec_err_t vp8_mmap_alloc(vpx_codec_mmap_t *mmap)
92 vpx_codec_err_t res;
108 static vpx_codec_err_t vp8_validate_mmaps(const vp8_stream_info_t *si,
113 vpx_codec_err_t res = VPX_CODEC_OK;
182 static vpx_codec_err_t vp8_init(vpx_codec_ctx_t *ctx)
184 vpx_codec_err_t res = VPX_CODEC_OK;
213 static vpx_codec_err_t vp8_destroy(vpx_codec_alg_priv_t *ctx)
228 static vpx_codec_err_t vp8_peek_si(const uint8_t *data,
232 vpx_codec_err_t res = VPX_CODEC_OK;
270 static vpx_codec_err_t vp8_get_s
[all...]
H A Dvp8_cx_iface.c96 static vpx_codec_err_t
100 vpx_codec_err_t res;
136 static vpx_codec_err_t validate_config(vpx_codec_alg_priv_t *ctx,
227 static vpx_codec_err_t validate_img(vpx_codec_alg_priv_t *ctx,
248 static vpx_codec_err_t set_vp8e_config(VP8_CONFIG *oxcf,
389 static vpx_codec_err_t vp8e_set_config(vpx_codec_alg_priv_t *ctx,
392 vpx_codec_err_t res;
421 static vpx_codec_err_t get_param(vpx_codec_alg_priv_t *ctx,
443 static vpx_codec_err_t set_param(vpx_codec_alg_priv_t *ctx,
447 vpx_codec_err_t re
[all...]
/external/libvpx/examples/
H A Ddecoder_tmpl.c52 vpx_codec_err_t res;
H A Dencoder_tmpl.c117 vpx_codec_err_t res;
/external/libvpx/
H A Dexample_xma.c87 vpx_codec_err_t res = VPX_CODEC_OK;
H A Dvpxenc.c1095 vpx_codec_err_t res;

Completed in 461 milliseconds