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

  /external/libvpx/libvpx/vpx/
vpx_decoder.h 135 vpx_codec_err_t vpx_codec_dec_init_ver(vpx_codec_ctx_t *ctx,
185 vpx_codec_err_t vpx_codec_get_stream_info(vpx_codec_ctx_t *ctx,
219 vpx_codec_err_t vpx_codec_decode(vpx_codec_ctx_t *ctx,
241 vpx_image_t *vpx_codec_get_frame(vpx_codec_ctx_t *ctx,
278 vpx_codec_err_t vpx_codec_register_put_frame_cb(vpx_codec_ctx_t *ctx,
320 vpx_codec_err_t vpx_codec_register_put_slice_cb(vpx_codec_ctx_t *ctx,
vpx_codec.h 31 * vpx_codec_ctx_t algo;
207 } vpx_codec_ctx_t; typedef in typeref:struct:vpx_codec_ctx
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) {
    [all...]
vpx_encoder.h 677 vpx_codec_err_t vpx_codec_enc_init_ver(vpx_codec_ctx_t *ctx,
716 vpx_codec_err_t vpx_codec_enc_init_multi_ver(vpx_codec_ctx_t *ctx,
772 vpx_codec_err_t vpx_codec_enc_config_set(vpx_codec_ctx_t *ctx,
787 vpx_fixed_buf_t *vpx_codec_get_global_headers(vpx_codec_ctx_t *ctx);
    [all...]
  /external/libvpx/libvpx/vpx/src/
vpx_codec.c 75 const char *vpx_codec_error(vpx_codec_ctx_t *ctx)
81 const char *vpx_codec_error_detail(vpx_codec_ctx_t *ctx)
90 vpx_codec_err_t vpx_codec_destroy(vpx_codec_ctx_t *ctx)
119 vpx_codec_err_t vpx_codec_control_(vpx_codec_ctx_t *ctx,
vpx_decoder.c 21 vpx_codec_err_t vpx_codec_dec_init_ver(vpx_codec_ctx_t *ctx,
99 vpx_codec_err_t vpx_codec_get_stream_info(vpx_codec_ctx_t *ctx,
121 vpx_codec_err_t vpx_codec_decode(vpx_codec_ctx_t *ctx,
144 vpx_image_t *vpx_codec_get_frame(vpx_codec_ctx_t *ctx,
158 vpx_codec_err_t vpx_codec_register_put_frame_cb(vpx_codec_ctx_t *ctx,
180 vpx_codec_err_t vpx_codec_register_put_slice_cb(vpx_codec_ctx_t *ctx,
202 vpx_codec_err_t vpx_codec_get_mem_map(vpx_codec_ctx_t *ctx,
219 vpx_codec_err_t vpx_codec_set_mem_map(vpx_codec_ctx_t *ctx,
vpx_encoder.c 23 vpx_codec_err_t vpx_codec_enc_init_ver(vpx_codec_ctx_t *ctx,
69 vpx_codec_err_t vpx_codec_enc_init_multi_ver(vpx_codec_ctx_t *ctx,
217 vpx_codec_err_t vpx_codec_encode(vpx_codec_ctx_t *ctx,
275 const vpx_codec_cx_pkt_t *vpx_codec_get_cx_data(vpx_codec_ctx_t *ctx,
329 vpx_codec_err_t vpx_codec_set_cx_data_buf(vpx_codec_ctx_t *ctx,
355 const vpx_image_t *vpx_codec_get_preview_frame(vpx_codec_ctx_t *ctx)
375 vpx_fixed_buf_t *vpx_codec_get_global_headers(vpx_codec_ctx_t *ctx)
395 vpx_codec_err_t vpx_codec_enc_config_set(vpx_codec_ctx_t *ctx,
  /external/libvpx/libvpx/test/
decode_test_driver.h 26 explicit DxDataIterator(vpx_codec_ctx_t *decoder)
34 vpx_codec_ctx_t *decoder_;
74 vpx_codec_ctx_t decoder_;
encode_test_driver.h 43 explicit CxDataIterator(vpx_codec_ctx_t *encoder)
51 vpx_codec_ctx_t *encoder_;
132 vpx_codec_ctx_t encoder_;
  /external/libvpx/libvpx/examples/
decoder_tmpl.c 49 vpx_codec_ctx_t codec;
encoder_tmpl.c 111 vpx_codec_ctx_t codec;
  /frameworks/av/media/libstagefright/codecs/on2/enc/
SoftVPXEncoder.h 107 vpx_codec_ctx_t* mCodecContext;
SoftVPXEncoder.cpp 181 mCodecContext = new vpx_codec_ctx_t;
  /frameworks/av/media/libstagefright/codecs/on2/dec/
SoftVPX.cpp 56 vpx_codec_destroy((vpx_codec_ctx_t *)mCtx);
57 delete (vpx_codec_ctx_t *)mCtx;
134 mCtx = new vpx_codec_ctx_t;
140 (vpx_codec_ctx_t *)mCtx, &vpx_codec_vp8_dx_algo, &cfg, 0))) {
252 (vpx_codec_ctx_t *)mCtx,
264 vpx_image_t *img = vpx_codec_get_frame((vpx_codec_ctx_t *)mCtx, &iter);
  /external/libvpx/libvpx/vpx/internal/
vpx_codec_internal.h 36 * vpx_codec_ctx_t algo;
77 typedef vpx_codec_err_t (*vpx_codec_init_fn_t)(vpx_codec_ctx_t *ctx,
230 typedef vpx_codec_err_t (*vpx_codec_get_mmap_fn_t)(const vpx_codec_ctx_t *ctx,
247 typedef vpx_codec_err_t (*vpx_codec_set_mmap_fn_t)(vpx_codec_ctx_t *ctx,
  /external/libvpx/libvpx/
example_xma.c 83 vpx_codec_ctx_t decoder;
vp8_multi_resolution_encoder.c 72 static void die_codec(vpx_codec_ctx_t *ctx, const char *s) {
190 vpx_codec_ctx_t codec[NUM_ENCODERS];
vp8_scalable_patterns.c 52 static void die_codec(vpx_codec_ctx_t *ctx, const char *s) {
121 vpx_codec_ctx_t codec;
vpxdec.c 702 vpx_codec_ctx_t decoder;
    [all...]
vpxenc.c 131 static void ctx_exit_on_error(vpx_codec_ctx_t *ctx, const char *s, ...)
    [all...]
  /external/libvpx/libvpx/vp8/
vp8_dx_iface.c 152 static void vp8_init_ctx(vpx_codec_ctx_t *ctx, const vpx_codec_mmap_t *mmap)
191 static vpx_codec_err_t vp8_init(vpx_codec_ctx_t *ctx,
607 vpx_codec_err_t vp8_xma_get_mmap(const vpx_codec_ctx_t *ctx,
644 static vpx_codec_err_t vp8_xma_set_mmap(vpx_codec_ctx_t *ctx,
vp8_cx_iface.c 575 static vpx_codec_err_t vp8e_init(vpx_codec_ctx_t *ctx,
    [all...]

Completed in 266 milliseconds