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

1 2

  /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_decodemv.h 22 void vp9_read_mode_info(TileWorkerData *twd, VP9Decoder *const pbi, int mi_row,
vp9_decodeframe.h 20 struct VP9Decoder;
28 void vp9_decode_frame(struct VP9Decoder *pbi, const uint8_t *data,
vp9_decoder.h 46 typedef struct VP9Decoder {
75 } VP9Decoder;
77 int vp9_receive_compressed_data(struct VP9Decoder *pbi, size_t size,
80 int vp9_get_raw_frame(struct VP9Decoder *pbi, YV12_BUFFER_CONFIG *sd,
83 vpx_codec_err_t vp9_copy_reference_dec(struct VP9Decoder *pbi,
108 struct VP9Decoder *vp9_decoder_create(BufferPool *const pool);
110 void vp9_decoder_remove(struct VP9Decoder *pbi);
vp9_decoder.c 74 VP9Decoder *vp9_decoder_create(BufferPool *const pool) {
75 VP9Decoder *volatile const pbi = vpx_memalign(32, sizeof(*pbi));
122 void vp9_decoder_remove(VP9Decoder *pbi) {
152 vpx_codec_err_t vp9_copy_reference_dec(VP9Decoder *pbi,
228 static void swap_frame_buffers(VP9Decoder *pbi) {
263 int vp9_receive_compressed_data(VP9Decoder *pbi, size_t size,
378 int vp9_get_raw_frame(VP9Decoder *pbi, YV12_BUFFER_CONFIG *sd,
vp9_decodeframe.c 630 static void dec_build_inter_predictors_sb(VP9Decoder *const pbi,
747 static void decode_block(TileWorkerData *twd, VP9Decoder *const pbi, int mi_row,
    [all...]
vp9_decodemv.c 692 static void read_inter_block_mode_info(VP9Decoder *const pbi,
785 static void read_inter_frame_mode_info(VP9Decoder *const pbi,
810 void vp9_read_mode_info(TileWorkerData *twd, VP9Decoder *const pbi, int mi_row,
  /external/v4l2_codec2/vda/
vp9_decoder.cc 16 VP9Decoder::VP9Accelerator::VP9Accelerator() {}
18 VP9Decoder::VP9Accelerator::~VP9Accelerator() {}
20 VP9Decoder::VP9Decoder(VP9Accelerator* accelerator)
27 VP9Decoder::~VP9Decoder() {}
29 void VP9Decoder::SetStream(const uint8_t* ptr, size_t size) {
37 bool VP9Decoder::Flush() {
43 void VP9Decoder::Reset() {
54 VP9Decoder::DecodeResult VP9Decoder::Decode()
    [all...]
vp9_decoder.h 31 class VP9Decoder : public AcceleratedVideoDecoder {
96 explicit VP9Decoder(VP9Accelerator* accelerator);
97 ~VP9Decoder() override;
149 DISALLOW_COPY_AND_ASSIGN(VP9Decoder);
v4l2_slice_video_decode_accelerator.cc 311 : public VP9Decoder::VP9Accelerator {
316 // VP9Decoder::VP9Accelerator implementation.
530 decoder_.reset(new VP9Decoder(vp9_accelerator_.get()));
    [all...]
  /external/libvpx/libvpx/vp9/
vp9_dx_iface.h 22 VP9Decoder *pbi;
vp9_dx_iface.c 265 const VP9Decoder *const pbi) {
  /external/libvpx/libvpx/test/
codec_factory.h 174 class VP9Decoder : public Decoder {
176 explicit VP9Decoder(vpx_codec_dec_cfg_t cfg) : Decoder(cfg) {}
178 VP9Decoder(vpx_codec_dec_cfg_t cfg, const vpx_codec_flags_t flag)
218 return new VP9Decoder(cfg, flags);
user_priv_test.cc 51 libvpx_test::VP9Decoder decoder(cfg, 0);
vp9_decrypt_test.cc 49 VP9Decoder decoder(dec_cfg, 0);
byte_alignment_test.cc 67 decoder_ = new libvpx_test::VP9Decoder(cfg, 0);
154 libvpx_test::VP9Decoder *decoder_;
vp9_skip_loopfilter_test.cc 46 decoder_ = new libvpx_test::VP9Decoder(cfg, 0);
114 libvpx_test::VP9Decoder *decoder_;
decode_perf_test.cc 83 libvpx_test::VP9Decoder decoder(cfg, 0);
232 libvpx_test::VP9Decoder decoder(cfg, 0);
external_frame_buffer_test.cc 297 decoder_ = new libvpx_test::VP9Decoder(cfg, 0);
350 libvpx_test::VP9Decoder *decoder_;
364 decoder_ = new libvpx_test::VP9Decoder(cfg, 0);
vp9_thread_test.cc 164 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();
  /external/webrtc/webrtc/modules/video_coding/
codec_database.cc 584 return new VCMGenericDecoder(VP9Decoder::Create());
  /external/webrtc/webrtc/modules/video_coding/codecs/test/
videoprocessor_integrationtest.cc 159 decoder_ = VP9Decoder::Create();
    [all...]

Completed in 1631 milliseconds

1 2