HomeSort by relevance Sort by last modified time
    Searched refs:vpx_codec_alg_priv_t (Results 1 - 9 of 9) sorted by null

  /external/libvpx/libvpx/vpx/internal/
vpx_codec_internal.h 63 typedef struct vpx_codec_alg_priv vpx_codec_alg_priv_t; typedef in typeref:struct:vpx_codec_alg_priv
95 typedef vpx_codec_err_t (*vpx_codec_destroy_fn_t)(vpx_codec_alg_priv_t *ctx);
131 typedef vpx_codec_err_t (*vpx_codec_get_si_fn_t)(vpx_codec_alg_priv_t *ctx,
156 typedef vpx_codec_err_t (*vpx_codec_control_fn_t)(vpx_codec_alg_priv_t *ctx,
195 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, vpx_get_frame_buffer_cb_fn_t cb_get,
250 typedef vpx_codec_err_t (*vpx_codec_encode_fn_t)(vpx_codec_alg_priv_t *ctx,
257 vpx_codec_alg_priv_t *ctx, vpx_codec_iter_t *iter);
260 vpx_codec_alg_priv_t *ctx, const vpx_codec_enc_cfg_t *cfg)
    [all...]
  /external/libvpx/libvpx/vp9/
vp9_cx_iface.c 115 vpx_codec_alg_priv_t *ctx, const struct vpx_internal_error_info *error) {
152 static vpx_codec_err_t validate_config(vpx_codec_alg_priv_t *ctx,
345 static vpx_codec_err_t validate_img(vpx_codec_alg_priv_t *ctx,
627 static vpx_codec_err_t encoder_set_config(vpx_codec_alg_priv_t *ctx,
663 static vpx_codec_err_t ctrl_get_quantizer(vpx_codec_alg_priv_t *ctx,
671 static vpx_codec_err_t ctrl_get_quantizer64(vpx_codec_alg_priv_t *ctx,
679 static vpx_codec_err_t update_extra_cfg(vpx_codec_alg_priv_t *ctx,
690 static vpx_codec_err_t ctrl_set_cpuused(vpx_codec_alg_priv_t *ctx,
697 static vpx_codec_err_t ctrl_set_enable_auto_alt_ref(vpx_codec_alg_priv_t *ctx,
704 static vpx_codec_err_t ctrl_set_noise_sensitivity(vpx_codec_alg_priv_t *ctx
    [all...]
vp9_dx_iface.c 36 // This function only allocates space for the vpx_codec_alg_priv_t
42 vpx_codec_alg_priv_t *const priv =
43 (vpx_codec_alg_priv_t *)vpx_calloc(1, sizeof(*priv));
62 static vpx_codec_err_t decoder_destroy(vpx_codec_alg_priv_t *ctx) {
206 static vpx_codec_err_t decoder_get_si(vpx_codec_alg_priv_t *ctx,
217 static void set_error_detail(vpx_codec_alg_priv_t *ctx,
223 vpx_codec_alg_priv_t *ctx, const struct vpx_internal_error_info *error) {
230 static void init_buffer_callbacks(vpx_codec_alg_priv_t *ctx) {
266 static void set_ppflags(const vpx_codec_alg_priv_t *ctx, vp9_ppflags_t *flags) {
308 static vpx_codec_err_t init_decoder(vpx_codec_alg_priv_t *ctx)
    [all...]
  /external/libvpx/libvpx/vp8/
vp8_dx_iface.c 60 vpx_codec_alg_priv_t *priv =
61 (vpx_codec_alg_priv_t *)vpx_calloc(1, sizeof(*priv));
89 /* This function only allocates space for the vpx_codec_alg_priv_t
94 vpx_codec_alg_priv_t *priv;
98 priv = (vpx_codec_alg_priv_t *)ctx->priv;
112 static vpx_codec_err_t vp8_destroy(vpx_codec_alg_priv_t *ctx) {
174 static vpx_codec_err_t vp8_get_si(vpx_codec_alg_priv_t *ctx,
191 vpx_codec_alg_priv_t *ctx, const struct vpx_internal_error_info *error) {
230 static int update_fragments(vpx_codec_alg_priv_t *ctx, const uint8_t *data,
267 static vpx_codec_err_t vp8_decode(vpx_codec_alg_priv_t *ctx
    [all...]
vp8_cx_iface.c 91 vpx_codec_alg_priv_t *ctx, const struct vpx_internal_error_info *error) {
129 static vpx_codec_err_t validate_config(vpx_codec_alg_priv_t *ctx,
257 static vpx_codec_err_t validate_img(vpx_codec_alg_priv_t *ctx,
427 static vpx_codec_err_t vp8e_set_config(vpx_codec_alg_priv_t *ctx,
458 static vpx_codec_err_t get_quantizer(vpx_codec_alg_priv_t *ctx, va_list args) {
465 static vpx_codec_err_t get_quantizer64(vpx_codec_alg_priv_t *ctx,
473 static vpx_codec_err_t update_extracfg(vpx_codec_alg_priv_t *ctx,
484 static vpx_codec_err_t set_cpu_used(vpx_codec_alg_priv_t *ctx, va_list args) {
490 static vpx_codec_err_t set_enable_auto_alt_ref(vpx_codec_alg_priv_t *ctx,
497 static vpx_codec_err_t set_noise_sensitivity(vpx_codec_alg_priv_t *ctx
    [all...]
  /external/libvpx/libvpx/vpx/src/
vpx_codec.c 73 ctx->iface->destroy((vpx_codec_alg_priv_t *)ctx->priv);
105 res = entry->fn((vpx_codec_alg_priv_t *)ctx->priv, ap);
vpx_decoder.c 20 static vpx_codec_alg_priv_t *get_alg_priv(vpx_codec_ctx_t *ctx) {
21 return (vpx_codec_alg_priv_t *)ctx->priv;
vpx_encoder.c 22 static vpx_codec_alg_priv_t *get_alg_priv(vpx_codec_ctx_t *ctx) {
23 return (vpx_codec_alg_priv_t *)ctx->priv;
  /external/libvpx/libvpx/test/
vp9_encoder_parms_get_to_decoder.cc 100 vpx_codec_alg_priv_t *const priv =
101 reinterpret_cast<vpx_codec_alg_priv_t *>(vp9_decoder->priv);

Completed in 123 milliseconds