/external/libvpx/libvpx/test/ |
D | decode_test_driver.cc | 22 vpx_codec_err_t Decoder::PeekStream(const uint8_t *cxdata, size_t size, in PeekStream() argument 25 CodecInterface(), cxdata, static_cast<unsigned int>(size), stream_info); in PeekStream() 28 vpx_codec_err_t Decoder::DecodeFrame(const uint8_t *cxdata, size_t size) { in DecodeFrame() argument 29 return DecodeFrame(cxdata, size, NULL); in DecodeFrame() 32 vpx_codec_err_t Decoder::DecodeFrame(const uint8_t *cxdata, size_t size, in DecodeFrame() argument 38 &decoder_, cxdata, static_cast<unsigned int>(size), user_priv, 0)); in DecodeFrame() 81 if (video->cxdata() != NULL) { in RunLoop() 83 video->cxdata(), video->frame_size(), &stream_info); in RunLoop() 88 decoder->DecodeFrame(video->cxdata(), video->frame_size()); in RunLoop()
|
D | decode_perf_test.cc | 90 for (video.Begin(); video.cxdata() != NULL; video.Next()) { in TEST_P() 91 decoder.DecodeFrame(video.cxdata(), video.frame_size()); in TEST_P() 239 for (decode_video.Begin(); decode_video.cxdata() != NULL; in TEST_P() 241 decoder.DecodeFrame(decode_video.cxdata(), decode_video.frame_size()); in TEST_P()
|
D | decode_test_driver.h | 53 vpx_codec_err_t PeekStream(const uint8_t *cxdata, size_t size, 56 vpx_codec_err_t DecodeFrame(const uint8_t *cxdata, size_t size); 58 vpx_codec_err_t DecodeFrame(const uint8_t *cxdata, size_t size,
|
D | byte_alignment_test.cc | 86 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeOneFrame() 93 for (; video_->cxdata() != NULL; video_->Next()) { in DecodeRemainingFrames() 95 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeRemainingFrames()
|
D | vp9_decrypt_test.cc | 54 vpx_codec_err_t res = decoder.DecodeFrame(video.cxdata(), video.frame_size()); in TEST() 61 encrypt_buffer(video.cxdata(), &encrypted[0], video.frame_size(), 0); in TEST()
|
D | vp8_decrypt_test.cc | 54 vpx_codec_err_t res = decoder.DecodeFrame(video.cxdata(), video.frame_size()); in TEST() 61 encrypt_buffer(video.cxdata(), &encrypted[0], video.frame_size(), 0); in TEST()
|
D | vp9_skip_loopfilter_test.cc | 59 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeOneFrame() 68 for (; video_->cxdata() != NULL; video_->Next()) { in DecodeRemainingFrames() 70 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeRemainingFrames()
|
D | user_priv_test.cc | 55 for (video.Begin(); !::testing::Test::HasFailure() && video.cxdata(); in DecodeFile() 59 decoder.DecodeFrame(video.cxdata(), video.frame_size(), in DecodeFile()
|
D | decode_api_test.cc | 129 vpx_codec_decode(&dec, video.cxdata(), frame_size, NULL, 0)); in TEST() 132 vpx_codec_decode(&dec, video.cxdata(), frame_size, NULL, 0)); in TEST()
|
D | vp9_thread_test.cc | 166 for (video.Begin(); video.cxdata(); video.Next()) { in DecodeFile() 168 decoder.DecodeFrame(video.cxdata(), video.frame_size()); in DecodeFile()
|
D | external_frame_buffer_test.cc | 323 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeOneFrame() 330 for (; video_->cxdata() != NULL; video_->Next()) { in DecodeRemainingFrames() 332 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeRemainingFrames()
|
D | webm_video_source.h | 77 virtual const uint8_t *cxdata() const { return end_of_file_ ? NULL : buf_; } in cxdata() function
|
D | ivf_video_source.h | 89 virtual const uint8_t *cxdata() const { in cxdata() function
|
D | video_source.h | 249 virtual const uint8_t *cxdata() const = 0;
|
/external/libaom/libaom/test/ |
D | decode_test_driver.cc | 23 aom_codec_err_t Decoder::PeekStream(const uint8_t *cxdata, size_t size, in PeekStream() argument 25 return aom_codec_peek_stream_info(CodecInterface(), cxdata, size, in PeekStream() 29 aom_codec_err_t Decoder::DecodeFrame(const uint8_t *cxdata, size_t size) { in DecodeFrame() argument 30 return DecodeFrame(cxdata, size, NULL); in DecodeFrame() 33 aom_codec_err_t Decoder::DecodeFrame(const uint8_t *cxdata, size_t size, in DecodeFrame() argument 38 res_dec = aom_codec_decode(&decoder_, cxdata, size, user_priv)); in DecodeFrame() 71 if (video->cxdata() != NULL) { in RunLoop() 77 video->cxdata(), video->frame_size(), &stream_info); in RunLoop() 84 decoder->DecodeFrame(video->cxdata(), video->frame_size()); in RunLoop()
|
D | decode_perf_test.cc | 74 for (video.Begin(); video.cxdata() != NULL; video.Next()) { in TEST_P() 75 decoder.DecodeFrame(video.cxdata(), video.frame_size()); in TEST_P() 223 for (decode_video.Begin(); decode_video.cxdata() != NULL; in TEST_P() 225 decoder.DecodeFrame(decode_video.cxdata(), decode_video.frame_size()); in TEST_P()
|
D | decode_test_driver.h | 56 aom_codec_err_t PeekStream(const uint8_t *cxdata, size_t size, 59 aom_codec_err_t DecodeFrame(const uint8_t *cxdata, size_t size); 61 aom_codec_err_t DecodeFrame(const uint8_t *cxdata, size_t size,
|
D | external_frame_buffer_test.cc | 344 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeOneFrame() 351 for (; video_->cxdata() != NULL; video_->Next()) { in DecodeRemainingFrames() 353 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size()); in DecodeRemainingFrames()
|
D | webm_video_source.h | 79 virtual const uint8_t *cxdata() const { return end_of_file_ ? NULL : buf_; } in cxdata() function
|
D | ivf_video_source.h | 97 virtual const uint8_t *cxdata() const { in cxdata() function
|
D | video_source.h | 250 virtual const uint8_t *cxdata() const = 0;
|