Home
last modified time | relevance | path

Searched refs:cxdata (Results 1 – 21 of 21) sorted by relevance

/external/libvpx/libvpx/test/
Ddecode_test_driver.cc22 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()
Ddecode_perf_test.cc90 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()
Ddecode_test_driver.h53 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,
Dbyte_alignment_test.cc86 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()
Dvp9_decrypt_test.cc54 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()
Dvp8_decrypt_test.cc54 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()
Dvp9_skip_loopfilter_test.cc59 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()
Duser_priv_test.cc55 for (video.Begin(); !::testing::Test::HasFailure() && video.cxdata(); in DecodeFile()
59 decoder.DecodeFrame(video.cxdata(), video.frame_size(), in DecodeFile()
Ddecode_api_test.cc129 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()
Dvp9_thread_test.cc166 for (video.Begin(); video.cxdata(); video.Next()) { in DecodeFile()
168 decoder.DecodeFrame(video.cxdata(), video.frame_size()); in DecodeFile()
Dexternal_frame_buffer_test.cc323 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()
Dwebm_video_source.h77 virtual const uint8_t *cxdata() const { return end_of_file_ ? NULL : buf_; } in cxdata() function
Divf_video_source.h89 virtual const uint8_t *cxdata() const { in cxdata() function
Dvideo_source.h249 virtual const uint8_t *cxdata() const = 0;
/external/libaom/libaom/test/
Ddecode_test_driver.cc23 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()
Ddecode_perf_test.cc74 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()
Ddecode_test_driver.h56 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,
Dexternal_frame_buffer_test.cc344 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()
Dwebm_video_source.h79 virtual const uint8_t *cxdata() const { return end_of_file_ ? NULL : buf_; } in cxdata() function
Divf_video_source.h97 virtual const uint8_t *cxdata() const { in cxdata() function
Dvideo_source.h250 virtual const uint8_t *cxdata() const = 0;