Home
last modified time | relevance | path

Searched refs:vpx_codec_alg_priv_t (Results 1 – 5 of 5) sorted by relevance

/external/libvpx/libvpx/vpx/internal/
Dvpx_codec_internal.h64 typedef struct vpx_codec_alg_priv vpx_codec_alg_priv_t; typedef
96 typedef vpx_codec_err_t (*vpx_codec_destroy_fn_t)(vpx_codec_alg_priv_t *ctx);
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,
217 typedef vpx_image_t *(*vpx_codec_get_frame_fn_t)(vpx_codec_alg_priv_t *ctx,
247 vpx_codec_alg_priv_t *ctx,
252 typedef vpx_codec_err_t (*vpx_codec_encode_fn_t)(vpx_codec_alg_priv_t *ctx,
258 typedef const vpx_codec_cx_pkt_t *(*vpx_codec_get_cx_data_fn_t)(vpx_codec_alg_priv_t *ctx,
262 (*vpx_codec_enc_config_set_fn_t)(vpx_codec_alg_priv_t *ctx,
[all …]
/external/libvpx/libvpx/vp9/
Dvp9_cx_iface.c111 static vpx_codec_err_t update_error_state(vpx_codec_alg_priv_t *ctx, 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()
481 static vpx_codec_err_t encoder_set_config(vpx_codec_alg_priv_t *ctx, 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()
535 static vpx_codec_err_t ctrl_set_cpuused(vpx_codec_alg_priv_t *ctx, in ctrl_set_cpuused()
542 static vpx_codec_err_t ctrl_set_enable_auto_alt_ref(vpx_codec_alg_priv_t *ctx, in ctrl_set_enable_auto_alt_ref()
549 static vpx_codec_err_t ctrl_set_noise_sensitivity(vpx_codec_alg_priv_t *ctx, in ctrl_set_noise_sensitivity()
[all …]
Dvp9_dx_iface.c61 vpx_codec_alg_priv_t *alg_priv = vpx_memalign(32, sizeof(*alg_priv)); in decoder_init()
90 static vpx_codec_err_t decoder_destroy(vpx_codec_alg_priv_t *ctx) { in decoder_destroy()
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()
224 static void init_buffer_callbacks(vpx_codec_alg_priv_t *ctx) { in init_buffer_callbacks()
251 static void set_ppflags(const vpx_codec_alg_priv_t *ctx, in set_ppflags()
260 static void init_decoder(vpx_codec_alg_priv_t *ctx) { in init_decoder()
278 static vpx_codec_err_t decode_one(vpx_codec_alg_priv_t *ctx, in decode_one()
410 static vpx_codec_err_t decoder_decode(vpx_codec_alg_priv_t *ctx, in decoder_decode()
513 static vpx_image_t *decoder_get_frame(vpx_codec_alg_priv_t *ctx, in decoder_get_frame()
[all …]
/external/libvpx/libvpx/vp8/
Dvp8_dx_iface.c78 return sizeof(vpx_codec_alg_priv_t); in vp8_priv_sz()
84 (vpx_codec_priv_t *)vpx_memalign(8, sizeof(vpx_codec_alg_priv_t)); in vp8_init_ctx()
85 vpx_memset(ctx->priv, 0, sizeof(vpx_codec_alg_priv_t)); in vp8_init_ctx()
88 ctx->priv->alg_priv = (vpx_codec_alg_priv_t *)ctx->priv; in vp8_init_ctx()
150 static vpx_codec_err_t vp8_destroy(vpx_codec_alg_priv_t *ctx) in vp8_destroy()
219 static vpx_codec_err_t vp8_get_si(vpx_codec_alg_priv_t *ctx, in vp8_get_si()
238 update_error_state(vpx_codec_alg_priv_t *ctx, in update_error_state()
283 update_fragments(vpx_codec_alg_priv_t *ctx, in update_fragments()
323 static vpx_codec_err_t vp8_decode(vpx_codec_alg_priv_t *ctx, in vp8_decode()
518 static vpx_image_t *vp8_get_frame(vpx_codec_alg_priv_t *ctx, in vp8_get_frame()
[all …]
Dvp8_cx_iface.c97 update_error_state(vpx_codec_alg_priv_t *ctx, 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()
447 static vpx_codec_err_t vp8e_set_config(vpx_codec_alg_priv_t *ctx, 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()
508 static vpx_codec_err_t set_cpu_used(vpx_codec_alg_priv_t *ctx, va_list args) in set_cpu_used()
515 static vpx_codec_err_t set_enable_auto_alt_ref(vpx_codec_alg_priv_t *ctx, in set_enable_auto_alt_ref()
523 static vpx_codec_err_t set_noise_sensitivity(vpx_codec_alg_priv_t *ctx, in set_noise_sensitivity()
[all …]