Searched refs:get_alg_priv (Results 1 – 2 of 2) sorted by relevance
/external/libvpx/libvpx/vpx/src/ |
D | vpx_decoder.c | 21 static vpx_codec_alg_priv_t *get_alg_priv(vpx_codec_ctx_t *ctx) { in get_alg_priv() function 101 res = ctx->iface->dec.get_si(get_alg_priv(ctx), si); in vpx_codec_get_stream_info() 122 res = ctx->iface->dec.decode(get_alg_priv(ctx), data, data_sz, user_priv, in vpx_codec_decode() 136 img = ctx->iface->dec.get_frame(get_alg_priv(ctx), iter); in vpx_codec_get_frame() 192 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 | 23 static vpx_codec_alg_priv_t *get_alg_priv(vpx_codec_ctx_t *ctx) { in get_alg_priv() function 223 res = ctx->iface->enc.encode(get_alg_priv(ctx), img, pts, in vpx_codec_encode() 237 if ((res = ctx->iface->enc.encode(get_alg_priv(ctx), img, pts, in vpx_codec_encode() 266 pkt = ctx->iface->enc.get_cx_data(get_alg_priv(ctx), iter); in vpx_codec_get_cx_data() 334 img = ctx->iface->enc.get_preview(get_alg_priv(ctx)); in vpx_codec_get_preview_frame() 352 buf = ctx->iface->enc.get_glob_hdrs(get_alg_priv(ctx)); in vpx_codec_get_global_headers() 368 res = ctx->iface->enc.cfg_set(get_alg_priv(ctx), cfg); in vpx_codec_enc_config_set()
|