/external/webrtc/webrtc/modules/video_coding/codecs/vp9/include/ |
vp9.h | 26 class VP9Decoder : public VideoDecoder { 28 static VP9Decoder* Create(); 30 virtual ~VP9Decoder() {}
|
/external/libvpx/libvpx/vp9/decoder/ |
vp9_decodeframe.h | 21 struct VP9Decoder; 29 void vp9_decode_frame(struct VP9Decoder *pbi,
|
vp9_decodemv.h | 22 void vpx_read_mode_info(VP9Decoder *const pbi, MACROBLOCKD *xd,
|
vp9_dthread.h | 23 struct VP9Decoder; 28 struct VP9Decoder *pbi;
|
vp9_decoder.h | 56 typedef struct VP9Decoder { 90 } VP9Decoder; 92 int vp9_receive_compressed_data(struct VP9Decoder *pbi, 95 int vp9_get_raw_frame(struct VP9Decoder *pbi, YV12_BUFFER_CONFIG *sd, 98 vpx_codec_err_t vp9_copy_reference_dec(struct VP9Decoder *pbi, 125 struct VP9Decoder *vp9_decoder_create(BufferPool *const pool); 127 void vp9_decoder_remove(struct VP9Decoder *pbi);
|
vp9_decoder.c | 76 VP9Decoder *vp9_decoder_create(BufferPool *const pool) { 77 VP9Decoder *volatile const pbi = vpx_memalign(32, sizeof(*pbi)); 126 void vp9_decoder_remove(VP9Decoder *pbi) { 155 vpx_codec_err_t vp9_copy_reference_dec(VP9Decoder *pbi, 233 static void swap_frame_buffers(VP9Decoder *pbi) { 274 int vp9_receive_compressed_data(VP9Decoder *pbi, 415 int vp9_get_raw_frame(VP9Decoder *pbi, YV12_BUFFER_CONFIG *sd,
|
vp9_decodemv.c | 480 VP9Decoder *const pbi = (VP9Decoder *)data; 485 static void read_inter_block_mode_info(VP9Decoder *const pbi, 588 static void read_inter_frame_mode_info(VP9Decoder *const pbi, 609 void vpx_read_mode_info(VP9Decoder *const pbi, MACROBLOCKD *xd,
|
vp9_dthread.c | 80 const VP9Decoder *const pbi = ref_worker_data->pbi;
|
vp9_decodeframe.c | 555 static void dec_build_inter_predictors(VP9Decoder *const pbi, MACROBLOCKD *xd, 707 static void dec_build_inter_predictors_sb(VP9Decoder *const pbi, 815 static void decode_block(VP9Decoder *const pbi, MACROBLOCKD *const xd, [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/ |
codec_factory.h | 152 class VP9Decoder : public Decoder { 154 VP9Decoder(vpx_codec_dec_cfg_t cfg, unsigned long deadline) 190 return new VP9Decoder(cfg, deadline);
|
decode_perf_test.cc | 77 libvpx_test::VP9Decoder decoder(cfg, 0);
|
vp9_thread_test.cc | 107 libvpx_test::VP9Decoder decoder(cfg, 0);
|
external_frame_buffer_test.cc | 285 decoder_ = new libvpx_test::VP9Decoder(cfg, 0); 339 libvpx_test::VP9Decoder *decoder_;
|
/external/libvpx/libvpx/test/ |
codec_factory.h | 167 class VP9Decoder : public Decoder { 169 VP9Decoder(vpx_codec_dec_cfg_t cfg, unsigned long deadline) 172 VP9Decoder(vpx_codec_dec_cfg_t cfg, const vpx_codec_flags_t flag, 215 return new VP9Decoder(cfg, flags, deadline);
|
user_priv_test.cc | 51 libvpx_test::VP9Decoder decoder(cfg, 0);
|
vp9_decrypt_test.cc | 51 VP9Decoder decoder(dec_cfg, 0);
|
byte_alignment_test.cc | 70 decoder_ = new libvpx_test::VP9Decoder(cfg, 0); 160 libvpx_test::VP9Decoder *decoder_;
|
vp9_frame_parallel_test.cc | 53 libvpx_test::VP9Decoder decoder(cfg, flags, 0); 140 libvpx_test::VP9Decoder decoder(cfg, flags, 0);
|
vp9_skip_loopfilter_test.cc | 51 decoder_ = new libvpx_test::VP9Decoder(cfg, 0); 120 libvpx_test::VP9Decoder *decoder_;
|
decode_perf_test.cc | 85 libvpx_test::VP9Decoder decoder(cfg, 0); 244 libvpx_test::VP9Decoder decoder(cfg, 0);
|
external_frame_buffer_test.cc | 296 decoder_ = new libvpx_test::VP9Decoder(cfg, 0); 350 libvpx_test::VP9Decoder *decoder_;
|
vp9_thread_test.cc | 168 libvpx_test::VP9Decoder decoder(cfg, 0);
|
/external/webrtc/webrtc/modules/video_coding/codecs/vp9/ |
vp9_impl.h | 134 class VP9DecoderImpl : public VP9Decoder {
|
vp9_impl.cc | 817 VP9Decoder* VP9Decoder::Create() { [all...] |
/external/webrtc/webrtc/video/ |
video_decoder.cc | 28 return VP9Decoder::Create();
|