Searched refs:get_alg_priv (Results 1 – 2 of 2) sorted by relevance
/external/libvpx/libvpx/vpx/src/ |
D | vpx_decoder.c | 20 static vpx_codec_alg_priv_t *get_alg_priv(vpx_codec_ctx_t *ctx) { in get_alg_priv() function 98 res = ctx->iface->dec.get_si(get_alg_priv(ctx), si); in vpx_codec_get_stream_info() 116 res = ctx->iface->dec.decode(get_alg_priv(ctx), data, data_sz, user_priv, in vpx_codec_decode() 129 img = ctx->iface->dec.get_frame(get_alg_priv(ctx), iter); in vpx_codec_get_frame() 183 res = ctx->iface->dec.set_fb_fn(get_alg_priv(ctx), cb_get, cb_release, in vpx_codec_set_frame_buffer_functions()
|
D | vpx_encoder.c | 22 static vpx_codec_alg_priv_t *get_alg_priv(vpx_codec_ctx_t *ctx) { in get_alg_priv() function 209 res = ctx->iface->enc.encode(get_alg_priv(ctx), img, pts, duration, flags, in vpx_codec_encode() 223 if ((res = ctx->iface->enc.encode(get_alg_priv(ctx), img, pts, duration, in vpx_codec_encode() 251 pkt = ctx->iface->enc.get_cx_data(get_alg_priv(ctx), iter); in vpx_codec_get_cx_data() 316 img = ctx->iface->enc.get_preview(get_alg_priv(ctx)); in vpx_codec_get_preview_frame() 333 buf = ctx->iface->enc.get_glob_hdrs(get_alg_priv(ctx)); in vpx_codec_get_global_headers() 348 res = ctx->iface->enc.cfg_set(get_alg_priv(ctx), cfg); in vpx_codec_enc_config_set()
|