Home
last modified time | relevance | path

Searched refs:vpx_codec_ctx_t (Results 1 – 19 of 19) sorted by relevance

/external/libvpx/vpx/src/
Dvpx_decoder_compat.c35 return vpx_codec_error((vpx_codec_ctx_t *)ctx); in vpx_dec_error()
40 return vpx_codec_error_detail((vpx_codec_ctx_t *)ctx); in vpx_dec_error_detail()
48 return vpx_codec_dec_init_ver((vpx_codec_ctx_t *)ctx, in vpx_dec_init_ver()
58 return vpx_codec_destroy((vpx_codec_ctx_t *)ctx); in vpx_dec_destroy()
81 return vpx_codec_get_stream_info((vpx_codec_ctx_t *)ctx, in vpx_dec_get_stream_info()
90 return vpx_codec_control_((vpx_codec_ctx_t *)ctx, ctrl_id, data); in vpx_dec_control()
101 return vpx_codec_decode((vpx_codec_ctx_t *)ctx, data, data_sz, user_priv, in vpx_dec_decode()
108 return vpx_codec_get_frame((vpx_codec_ctx_t *)ctx, iter); in vpx_dec_get_frame()
116 return vpx_codec_register_put_frame_cb((vpx_codec_ctx_t *)ctx, cb, in vpx_dec_register_put_frame_cb()
125 return vpx_codec_register_put_slice_cb((vpx_codec_ctx_t *)ctx, cb, in vpx_dec_register_put_slice_cb()
[all …]
Dvpx_decoder.c21 vpx_codec_err_t vpx_codec_dec_init_ver(vpx_codec_ctx_t *ctx, in vpx_codec_dec_init_ver()
99 vpx_codec_err_t vpx_codec_get_stream_info(vpx_codec_ctx_t *ctx, in vpx_codec_get_stream_info()
121 vpx_codec_err_t vpx_codec_decode(vpx_codec_ctx_t *ctx, in vpx_codec_decode()
144 vpx_image_t *vpx_codec_get_frame(vpx_codec_ctx_t *ctx, in vpx_codec_get_frame()
158 vpx_codec_err_t vpx_codec_register_put_frame_cb(vpx_codec_ctx_t *ctx, in vpx_codec_register_put_frame_cb()
180 vpx_codec_err_t vpx_codec_register_put_slice_cb(vpx_codec_ctx_t *ctx, in vpx_codec_register_put_slice_cb()
202 vpx_codec_err_t vpx_codec_get_mem_map(vpx_codec_ctx_t *ctx, in vpx_codec_get_mem_map()
219 vpx_codec_err_t vpx_codec_set_mem_map(vpx_codec_ctx_t *ctx, in vpx_codec_set_mem_map()
Dvpx_codec.c75 const char *vpx_codec_error(vpx_codec_ctx_t *ctx) in vpx_codec_error()
81 const char *vpx_codec_error_detail(vpx_codec_ctx_t *ctx) in vpx_codec_error_detail()
90 vpx_codec_err_t vpx_codec_destroy(vpx_codec_ctx_t *ctx) in vpx_codec_destroy()
119 vpx_codec_err_t vpx_codec_control_(vpx_codec_ctx_t *ctx, in vpx_codec_control_()
Dvpx_encoder.c22 vpx_codec_err_t vpx_codec_enc_init_ver(vpx_codec_ctx_t *ctx, in vpx_codec_enc_init_ver()
115 vpx_codec_err_t vpx_codec_encode(vpx_codec_ctx_t *ctx, in vpx_codec_encode()
145 const vpx_codec_cx_pkt_t *vpx_codec_get_cx_data(vpx_codec_ctx_t *ctx, in vpx_codec_get_cx_data()
199 vpx_codec_err_t vpx_codec_set_cx_data_buf(vpx_codec_ctx_t *ctx, in vpx_codec_set_cx_data_buf()
225 const vpx_image_t *vpx_codec_get_preview_frame(vpx_codec_ctx_t *ctx) in vpx_codec_get_preview_frame()
245 vpx_fixed_buf_t *vpx_codec_get_global_headers(vpx_codec_ctx_t *ctx) in vpx_codec_get_global_headers()
265 vpx_codec_err_t vpx_codec_enc_config_set(vpx_codec_ctx_t *ctx, in vpx_codec_enc_config_set()
/external/libvpx/vpx/
Dvpx_codec.h207 } vpx_codec_ctx_t; typedef
303 const char *vpx_codec_error(vpx_codec_ctx_t *ctx);
316 const char *vpx_codec_error_detail(vpx_codec_ctx_t *ctx);
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,
409 vpx_codec_control_##id(vpx_codec_ctx_t*, int, typ) UNUSED;\
412 vpx_codec_control_##id(vpx_codec_ctx_t *ctx, int ctrl_id, typ data) {\
429 vpx_codec_control_##id(vpx_codec_ctx_t*, int, typ) DEPRECATED UNUSED;\
432 vpx_codec_control_##id(vpx_codec_ctx_t *ctx, int ctrl_id, typ data) {\
449 vpx_codec_control_##id(vpx_codec_ctx_t*, int) UNUSED;\
[all …]
Dvpx_decoder.h122 vpx_codec_err_t vpx_codec_dec_init_ver(vpx_codec_ctx_t *ctx,
172 vpx_codec_err_t vpx_codec_get_stream_info(vpx_codec_ctx_t *ctx,
199 vpx_codec_err_t vpx_codec_decode(vpx_codec_ctx_t *ctx,
221 vpx_image_t *vpx_codec_get_frame(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,
Dvpx_encoder.h577 vpx_codec_err_t vpx_codec_enc_init_ver(vpx_codec_ctx_t *ctx,
630 vpx_codec_err_t vpx_codec_enc_config_set(vpx_codec_ctx_t *ctx,
645 vpx_fixed_buf_t *vpx_codec_get_global_headers(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,
770 const vpx_codec_cx_pkt_t *vpx_codec_get_cx_data(vpx_codec_ctx_t *ctx,
786 const vpx_image_t *vpx_codec_get_preview_frame(vpx_codec_ctx_t *ctx);
Dvpx_decoder_compat.h141 typedef vpx_codec_ctx_t vpx_dec_ctx_t;
/external/libvpx/vpx/internal/
Dvpx_codec_internal.h76 typedef vpx_codec_err_t (*vpx_codec_init_fn_t)(vpx_codec_ctx_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,
/external/libvpx/vp8/
Dvp8_dx_iface.c143 static void vp8_init_ctx(vpx_codec_ctx_t *ctx, const vpx_codec_mmap_t *mmap) in vp8_init_ctx()
182 static vpx_codec_err_t vp8_init(vpx_codec_ctx_t *ctx) in vp8_init()
469 vpx_codec_err_t vp8_xma_get_mmap(const vpx_codec_ctx_t *ctx, in vp8_xma_get_mmap()
506 static vpx_codec_err_t vp8_xma_set_mmap(vpx_codec_ctx_t *ctx, in vp8_xma_set_mmap()
Dvp8_cx_iface.c482 static vpx_codec_err_t vp8e_init(vpx_codec_ctx_t *ctx) in vp8e_init()
/external/libvpx/examples/
Ddecoder_tmpl.c47 vpx_codec_ctx_t codec; in main()
Ddecoder_tmpl.txt10 static void die_codec(vpx_codec_ctx_t *ctx, const char *s) {
Dencoder_tmpl.txt10 static void die_codec(vpx_codec_ctx_t *ctx, const char *s) {
Dencoder_tmpl.c111 vpx_codec_ctx_t codec; in main()
/external/libvpx/
Dexample_xma.c83 vpx_codec_ctx_t decoder; in main()
Dvpxenc.c94 static void ctx_exit_on_error(vpx_codec_ctx_t *ctx, const char *s) in ctx_exit_on_error()
1090 vpx_codec_ctx_t encoder; in main()
Dvpxdec.c697 vpx_codec_ctx_t decoder; in main()
Dusage.dox33 video must be known at initialization time. See #vpx_codec_ctx_t for further