/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decoder.h | 47 typedef struct VP9Decoder { struct 79 } VP9Decoder; argument 81 int vp9_receive_compressed_data(struct VP9Decoder *pbi, size_t size, 84 int vp9_get_raw_frame(struct VP9Decoder *pbi, YV12_BUFFER_CONFIG *sd, 87 vpx_codec_err_t vp9_copy_reference_dec(struct VP9Decoder *pbi, 112 struct VP9Decoder *vp9_decoder_create(BufferPool *const pool); 114 void vp9_decoder_remove(struct VP9Decoder *pbi);
|
D | vp9_decodeframe.h | 20 struct VP9Decoder; 28 void vp9_decode_frame(struct VP9Decoder *pbi, const uint8_t *data,
|
D | vp9_decoder.c | 74 VP9Decoder *vp9_decoder_create(BufferPool *const pool) { in vp9_decoder_create() 75 VP9Decoder *volatile const pbi = vpx_memalign(32, sizeof(*pbi)); in vp9_decoder_create() 122 void vp9_decoder_remove(VP9Decoder *pbi) { in vp9_decoder_remove() 151 vpx_codec_err_t vp9_copy_reference_dec(VP9Decoder *pbi, in vp9_copy_reference_dec() 227 static void swap_frame_buffers(VP9Decoder *pbi) { in swap_frame_buffers() 268 int vp9_receive_compressed_data(VP9Decoder *pbi, size_t size, in vp9_receive_compressed_data() 411 int vp9_get_raw_frame(VP9Decoder *pbi, YV12_BUFFER_CONFIG *sd, in vp9_get_raw_frame()
|
D | vp9_dthread.h | 23 struct VP9Decoder; 28 struct VP9Decoder *pbi;
|
D | vp9_decodemv.h | 22 void vp9_read_mode_info(TileWorkerData *twd, VP9Decoder *const pbi, int mi_row,
|
D | vp9_decodemv.c | 459 VP9Decoder *const pbi = (VP9Decoder *)data; in fpm_sync() 714 static void read_inter_block_mode_info(VP9Decoder *const pbi, in read_inter_block_mode_info() 808 static void read_inter_frame_mode_info(VP9Decoder *const pbi, in read_inter_frame_mode_info() 833 void vp9_read_mode_info(TileWorkerData *twd, VP9Decoder *const pbi, int mi_row, in vp9_read_mode_info()
|
D | vp9_decodeframe.c | 644 static void dec_build_inter_predictors_sb(VP9Decoder *const pbi, in dec_build_inter_predictors_sb() 763 static void decode_block(TileWorkerData *twd, VP9Decoder *const pbi, int mi_row, in decode_block() 913 static void decode_partition(TileWorkerData *twd, VP9Decoder *const pbi, in decode_partition() 1354 static void get_tile_buffers(VP9Decoder *pbi, const uint8_t *data, in get_tile_buffers() 1371 static const uint8_t *decode_tiles(VP9Decoder *pbi, const uint8_t *data, in decode_tiles() 1505 VP9Decoder *const pbi) { in tile_worker_hook() 1559 static const uint8_t *decode_tiles_mt(VP9Decoder *pbi, const uint8_t *data, in decode_tiles_mt() 1752 static size_t read_uncompressed_header(VP9Decoder *pbi, in read_uncompressed_header() 1957 static int read_compressed_header(VP9Decoder *pbi, const uint8_t *data, in read_compressed_header() 2008 VP9Decoder *pbi, struct vpx_read_bit_buffer *rb, const uint8_t *data, in init_read_bit_buffer() [all …]
|
D | vp9_dthread.c | 79 const VP9Decoder *const pbi = ref_worker_data->pbi; in vp9_frameworker_wait()
|
/external/webrtc/webrtc/modules/video_coding/codecs/vp9/include/ |
D | vp9.h | 26 class VP9Decoder : public VideoDecoder { 28 static VP9Decoder* Create(); 30 virtual ~VP9Decoder() {} in ~VP9Decoder()
|
/external/libvpx/libvpx/test/ |
D | codec_factory.h | 174 class VP9Decoder : public Decoder { 176 explicit VP9Decoder(vpx_codec_dec_cfg_t cfg) : Decoder(cfg) {} in VP9Decoder() function 178 VP9Decoder(vpx_codec_dec_cfg_t cfg, const vpx_codec_flags_t flag) in VP9Decoder() function 218 return new VP9Decoder(cfg, flags); in CreateDecoder()
|
D | byte_alignment_test.cc | 67 decoder_ = new libvpx_test::VP9Decoder(cfg, 0); in SetUp() 154 libvpx_test::VP9Decoder *decoder_;
|
D | vp9_frame_parallel_test.cc | 53 libvpx_test::VP9Decoder decoder(cfg, flags); in DecodeFileWithPause() 139 libvpx_test::VP9Decoder decoder(cfg, flags); in DecodeFile()
|
D | vp9_skip_loopfilter_test.cc | 46 decoder_ = new libvpx_test::VP9Decoder(cfg, 0); in Init() 114 libvpx_test::VP9Decoder *decoder_;
|
D | decode_perf_test.cc | 83 libvpx_test::VP9Decoder decoder(cfg, 0); in TEST_P() 232 libvpx_test::VP9Decoder decoder(cfg, 0); in TEST_P()
|
D | vp9_decrypt_test.cc | 49 VP9Decoder decoder(dec_cfg, 0); in TEST()
|
D | user_priv_test.cc | 51 libvpx_test::VP9Decoder decoder(cfg, 0); in DecodeFile()
|
D | external_frame_buffer_test.cc | 289 decoder_ = new libvpx_test::VP9Decoder(cfg, 0); in SetUp() 340 libvpx_test::VP9Decoder *decoder_;
|
D | vp9_thread_test.cc | 164 libvpx_test::VP9Decoder decoder(cfg, 0); in DecodeFile()
|
/external/webrtc/webrtc/video/ |
D | video_decoder.cc | 28 return VP9Decoder::Create(); in Create()
|
D | end_to_end_tests.cc | 243 decoder_(VP9Decoder::Create()), in TEST_F()
|
/external/webrtc/webrtc/modules/video_coding/codecs/vp9/ |
D | vp9_impl.h | 134 class VP9DecoderImpl : public VP9Decoder {
|
D | vp9_impl.cc | 817 VP9Decoder* VP9Decoder::Create() { in Create()
|
/external/webrtc/webrtc/modules/video_coding/ |
D | codec_database.cc | 584 return new VCMGenericDecoder(VP9Decoder::Create()); in CreateDecoder()
|
/external/webrtc/webrtc/modules/video_coding/codecs/test/ |
D | videoprocessor_integrationtest.cc | 159 decoder_ = VP9Decoder::Create(); in SetUpCodecConfig()
|
/external/libvpx/libvpx/vp9/ |
D | vp9_dx_iface.c | 403 const VP9Decoder *const pbi) { in check_resync()
|