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

1 2

  /external/libvpx/libvpx/vpx/
vpx_decoder.h 135 vpx_codec_err_t vpx_codec_dec_init_ver(vpx_codec_ctx_t *ctx,
182 vpx_codec_err_t vpx_codec_get_stream_info(vpx_codec_ctx_t *ctx,
215 vpx_codec_err_t vpx_codec_decode(vpx_codec_ctx_t *ctx, const uint8_t *data,
235 vpx_image_t *vpx_codec_get_frame(vpx_codec_ctx_t *ctx, vpx_codec_iter_t *iter);
270 vpx_codec_err_t vpx_codec_register_put_frame_cb(vpx_codec_ctx_t *ctx,
311 vpx_codec_err_t vpx_codec_register_put_slice_cb(vpx_codec_ctx_t *ctx,
356 vpx_codec_ctx_t *ctx, vpx_get_frame_buffer_cb_fn_t cb_get,
vpx_codec.h 30 * vpx_codec_ctx_t algo;
211 } vpx_codec_ctx_t; typedef in typeref:struct:vpx_codec_ctx
318 const char *vpx_codec_error(vpx_codec_ctx_t *ctx);
330 const char *vpx_codec_error_detail(vpx_codec_ctx_t *ctx);
349 vpx_codec_err_t vpx_codec_destroy(vpx_codec_ctx_t *ctx);
384 vpx_codec_err_t vpx_codec_control_(vpx_codec_ctx_t *ctx, int ctrl_id, ...);
416 static vpx_codec_err_t vpx_codec_control_##id(vpx_codec_ctx_t *, int, typ) \
419 static vpx_codec_err_t vpx_codec_control_##id(vpx_codec_ctx_t *ctx, \
436 vpx_codec_ctx_t *, int, typ) VPX_DEPRECATED VPX_UNUSED; \
439 vpx_codec_ctx_t *ctx, int ctrl_id, typ data) {
    [all...]
vpx_encoder.h 751 vpx_codec_err_t vpx_codec_enc_init_ver(vpx_codec_ctx_t *ctx,
784 vpx_codec_ctx_t *ctx, vpx_codec_iface_t *iface, vpx_codec_enc_cfg_t *cfg,
832 vpx_codec_err_t vpx_codec_enc_config_set(vpx_codec_ctx_t *ctx,
846 vpx_fixed_buf_t *vpx_codec_get_global_headers(vpx_codec_ctx_t *ctx);
    [all...]
svc_context.h 75 vpx_codec_ctx_t *codec_ctx;
91 vpx_codec_err_t vpx_svc_init(SvcContext *svc_ctx, vpx_codec_ctx_t *codec_ctx,
97 vpx_codec_err_t vpx_svc_encode(SvcContext *svc_ctx, vpx_codec_ctx_t *codec_ctx,
  /external/libvpx/libvpx/test/
decode_test_driver.h 26 explicit DxDataIterator(vpx_codec_ctx_t *decoder)
32 vpx_codec_ctx_t *decoder_;
97 vpx_codec_ctx_t *GetDecoder() { return &decoder_; }
111 vpx_codec_ctx_t decoder_;
decode_api_test.cc 32 vpx_codec_ctx_t dec;
62 vpx_codec_ctx_t dec;
78 void TestVp9Controls(vpx_codec_ctx_t *dec) {
124 vpx_codec_ctx_t dec;
156 vpx_codec_ctx_t dec;
encode_api_test.cc 32 vpx_codec_ctx_t enc;
88 vpx_codec_ctx_t enc;
131 vpx_codec_ctx_t enc[2];
encode_test_driver.h 51 explicit CxDataIterator(vpx_codec_ctx_t *encoder)
59 vpx_codec_ctx_t *encoder_;
172 vpx_codec_ctx_t encoder_;
  /external/libvpx/libvpx/vpx/src/
vpx_codec.c 53 const char *vpx_codec_error(vpx_codec_ctx_t *ctx) {
58 const char *vpx_codec_error_detail(vpx_codec_ctx_t *ctx) {
65 vpx_codec_err_t vpx_codec_destroy(vpx_codec_ctx_t *ctx) {
88 vpx_codec_err_t vpx_codec_control_(vpx_codec_ctx_t *ctx, int ctrl_id, ...) {
vpx_decoder.c 20 static vpx_codec_alg_priv_t *get_alg_priv(vpx_codec_ctx_t *ctx) {
24 vpx_codec_err_t vpx_codec_dec_init_ver(vpx_codec_ctx_t *ctx,
85 vpx_codec_err_t vpx_codec_get_stream_info(vpx_codec_ctx_t *ctx,
104 vpx_codec_err_t vpx_codec_decode(vpx_codec_ctx_t *ctx, const uint8_t *data,
123 vpx_image_t *vpx_codec_get_frame(vpx_codec_ctx_t *ctx, vpx_codec_iter_t *iter) {
134 vpx_codec_err_t vpx_codec_register_put_frame_cb(vpx_codec_ctx_t *ctx,
153 vpx_codec_err_t vpx_codec_register_put_slice_cb(vpx_codec_ctx_t *ctx,
173 vpx_codec_ctx_t *ctx, vpx_get_frame_buffer_cb_fn_t cb_get,
vpx_encoder.c 25 static vpx_codec_alg_priv_t *get_alg_priv(vpx_codec_ctx_t *ctx) {
29 vpx_codec_err_t vpx_codec_enc_init_ver(vpx_codec_ctx_t *ctx,
66 vpx_codec_ctx_t *ctx, vpx_codec_iface_t *iface, vpx_codec_enc_cfg_t *cfg,
196 vpx_codec_err_t vpx_codec_encode(vpx_codec_ctx_t *ctx, const vpx_image_t *img,
247 const vpx_codec_cx_pkt_t *vpx_codec_get_cx_data(vpx_codec_ctx_t *ctx,
293 vpx_codec_err_t vpx_codec_set_cx_data_buf(vpx_codec_ctx_t *ctx,
313 const vpx_image_t *vpx_codec_get_preview_frame(vpx_codec_ctx_t *ctx) {
330 vpx_fixed_buf_t *vpx_codec_get_global_headers(vpx_codec_ctx_t *ctx) {
347 vpx_codec_err_t vpx_codec_enc_config_set(vpx_codec_ctx_t *ctx,
  /frameworks/av/media/libstagefright/codecs/on2/dec/
SoftVPX.cpp 88 mCtx = new vpx_codec_ctx_t;
101 (vpx_codec_ctx_t *)mCtx,
112 vpx_codec_destroy((vpx_codec_ctx_t *)mCtx);
113 delete (vpx_codec_ctx_t *)mCtx;
127 if (vpx_codec_decode((vpx_codec_ctx_t *)mCtx, NULL, 0, NULL, 0)) {
139 while ((mImg = vpx_codec_get_frame((vpx_codec_ctx_t *)mCtx, &iter))) {
146 mImg = vpx_codec_get_frame((vpx_codec_ctx_t *)mCtx, &iter);
287 (vpx_codec_ctx_t *)mCtx, inHeader->pBuffer + inHeader->nOffset,
  /external/libvpx/libvpx/examples/
set_maps.c 64 vpx_codec_ctx_t *codec) {
97 vpx_codec_ctx_t *codec) {
114 vpx_codec_ctx_t *codec) {
125 static int encode_frame(vpx_codec_ctx_t *codec, vpx_image_t *img,
155 vpx_codec_ctx_t codec;
twopass_encoder.c 69 static int get_frame_stats(vpx_codec_ctx_t *ctx, const vpx_image_t *img,
95 static int encode_frame(vpx_codec_ctx_t *ctx, const vpx_image_t *img,
126 vpx_codec_ctx_t codec;
160 vpx_codec_ctx_t codec;
193 vpx_codec_ctx_t codec;
simple_decoder.c 98 vpx_codec_ctx_t codec;
vp9cx_set_ref.c 193 static void testing_decode(vpx_codec_ctx_t *encoder, vpx_codec_ctx_t *decoder,
228 static int encode_frame(vpx_codec_ctx_t *ecodec, vpx_image_t *img,
230 int test_decode, vpx_codec_ctx_t *dcodec,
281 vpx_codec_ctx_t ecodec;
293 vpx_codec_ctx_t dcodec;
simple_encoder.c 118 static int encode_frame(vpx_codec_ctx_t *codec, vpx_image_t *img,
148 vpx_codec_ctx_t codec;
vp8cx_set_ref.c 67 static int encode_frame(vpx_codec_ctx_t *codec, vpx_image_t *img,
97 vpx_codec_ctx_t codec;
vp9_lossless_encoder.c 32 static int encode_frame(vpx_codec_ctx_t *codec, vpx_image_t *img,
61 vpx_codec_ctx_t codec;
decode_with_drops.c 76 vpx_codec_ctx_t codec;
postproc.c 63 vpx_codec_ctx_t codec;
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
vp8_impl.h 116 std::vector<vpx_codec_ctx_t> encoders_;
160 vpx_codec_ctx_t* decoder_;
  /external/webrtc/webrtc/modules/video_coding/codecs/vp9/
vp9_impl.h 113 vpx_codec_ctx_t* encoder_;
163 vpx_codec_ctx_t* decoder_;
  /hardware/google/av/media/codecs/vpx/
C2SoftVpxDec.h 54 vpx_codec_ctx_t *mCodecCtx;
  /frameworks/av/media/libstagefright/codecs/on2/enc/
SoftVPXEncoder.h 190 vpx_codec_ctx_t* mCodecContext;

Completed in 192 milliseconds

1 2