2012-08-31 00:43:15 +04:00
|
|
|
/*
|
2016-09-02 22:04:54 +03:00
|
|
|
* Copyright (c) 2016, Alliance for Open Media. All rights reserved
|
2012-08-31 00:43:15 +04:00
|
|
|
*
|
2016-09-02 22:04:54 +03:00
|
|
|
* This source code is subject to the terms of the BSD 2 Clause License and
|
|
|
|
* the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
|
|
|
|
* was not distributed with this source code in the LICENSE file, you can
|
|
|
|
* obtain it at www.aomedia.org/license/software. If the Alliance for Open
|
|
|
|
* Media Patent License 1.0 was not distributed with this source code in the
|
|
|
|
* PATENTS file, you can obtain it at www.aomedia.org/license/patent.
|
|
|
|
*/
|
2015-07-30 00:51:36 +03:00
|
|
|
|
|
|
|
#include "third_party/googletest/src/include/gtest/gtest.h"
|
|
|
|
|
2013-01-18 23:51:12 +04:00
|
|
|
#include "test/codec_factory.h"
|
2012-08-31 00:43:15 +04:00
|
|
|
#include "test/decode_test_driver.h"
|
2012-11-28 01:08:05 +04:00
|
|
|
#include "test/register_state_check.h"
|
2012-10-04 23:59:36 +04:00
|
|
|
#include "test/video_source.h"
|
2012-08-31 00:43:15 +04:00
|
|
|
|
2016-08-23 02:08:15 +03:00
|
|
|
namespace libaom_test {
|
2012-08-31 00:43:15 +04:00
|
|
|
|
2014-06-23 19:37:18 +04:00
|
|
|
const char kVP8Name[] = "WebM Project VP8";
|
2016-08-31 00:01:10 +03:00
|
|
|
const char kAV1Name[] = "WebM Project AV1";
|
2014-06-23 19:37:18 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_codec_err_t Decoder::PeekStream(const uint8_t *cxdata, size_t size,
|
|
|
|
aom_codec_stream_info_t *stream_info) {
|
|
|
|
return aom_codec_peek_stream_info(
|
2016-08-12 03:46:05 +03:00
|
|
|
CodecInterface(), cxdata, static_cast<unsigned int>(size), stream_info);
|
2014-06-23 19:37:18 +04:00
|
|
|
}
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_codec_err_t Decoder::DecodeFrame(const uint8_t *cxdata, size_t size) {
|
2014-06-24 01:59:20 +04:00
|
|
|
return DecodeFrame(cxdata, size, NULL);
|
|
|
|
}
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_codec_err_t Decoder::DecodeFrame(const uint8_t *cxdata, size_t size,
|
2014-06-24 01:59:20 +04:00
|
|
|
void *user_priv) {
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_codec_err_t res_dec;
|
2013-03-27 21:41:29 +04:00
|
|
|
InitOnce();
|
2014-07-10 08:02:02 +04:00
|
|
|
API_REGISTER_STATE_CHECK(
|
2016-08-31 00:01:10 +03:00
|
|
|
res_dec = aom_codec_decode(
|
2016-08-12 03:46:05 +03:00
|
|
|
&decoder_, cxdata, static_cast<unsigned int>(size), user_priv, 0));
|
2013-03-16 05:21:55 +04:00
|
|
|
return res_dec;
|
2012-08-31 00:43:15 +04:00
|
|
|
}
|
2012-10-04 23:59:36 +04:00
|
|
|
|
2014-07-15 12:54:29 +04:00
|
|
|
bool Decoder::IsVP8() const {
|
|
|
|
const char *codec_name = GetDecoderName();
|
|
|
|
return strncmp(kVP8Name, codec_name, sizeof(kVP8Name) - 1) == 0;
|
|
|
|
}
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
bool Decoder::IsAV1() const {
|
2016-05-06 02:42:57 +03:00
|
|
|
const char *codec_name = GetDecoderName();
|
2016-08-31 00:01:10 +03:00
|
|
|
return strncmp(kAV1Name, codec_name, sizeof(kAV1Name) - 1) == 0;
|
2016-05-06 02:42:57 +03:00
|
|
|
}
|
|
|
|
|
2014-07-15 12:54:29 +04:00
|
|
|
void DecoderTest::HandlePeekResult(Decoder *const decoder,
|
|
|
|
CompressedVideoSource *video,
|
2016-08-31 00:01:10 +03:00
|
|
|
const aom_codec_err_t res_peek) {
|
2014-07-15 12:54:29 +04:00
|
|
|
const bool is_vp8 = decoder->IsVP8();
|
|
|
|
if (is_vp8) {
|
|
|
|
/* Vp8's implementation of PeekStream returns an error if the frame you
|
2016-08-31 00:01:10 +03:00
|
|
|
* pass it is not a keyframe, so we only expect AOM_CODEC_OK on the first
|
2014-07-15 12:54:29 +04:00
|
|
|
* frame, which must be a keyframe. */
|
|
|
|
if (video->frame_number() == 0)
|
2016-08-31 00:01:10 +03:00
|
|
|
ASSERT_EQ(AOM_CODEC_OK, res_peek) << "Peek return failed: "
|
|
|
|
<< aom_codec_err_to_string(res_peek);
|
2014-07-15 12:54:29 +04:00
|
|
|
} else {
|
2016-08-31 00:01:10 +03:00
|
|
|
/* The Av1 implementation of PeekStream returns an error only if the
|
|
|
|
* data passed to it isn't a valid Av1 chunk. */
|
|
|
|
ASSERT_EQ(AOM_CODEC_OK, res_peek) << "Peek return failed: "
|
|
|
|
<< aom_codec_err_to_string(res_peek);
|
2014-07-15 12:54:29 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-02 03:04:53 +04:00
|
|
|
void DecoderTest::RunLoop(CompressedVideoSource *video,
|
2016-08-31 00:01:10 +03:00
|
|
|
const aom_codec_dec_cfg_t &dec_cfg) {
|
2016-08-12 03:46:05 +03:00
|
|
|
Decoder *const decoder = codec_->CreateDecoder(dec_cfg, flags_, 0);
|
2013-01-18 23:51:12 +04:00
|
|
|
ASSERT_TRUE(decoder != NULL);
|
2014-08-01 06:04:35 +04:00
|
|
|
bool end_of_file = false;
|
2012-10-04 23:59:36 +04:00
|
|
|
|
|
|
|
// Decode frames.
|
2014-08-01 06:04:35 +04:00
|
|
|
for (video->Begin(); !::testing::Test::HasFailure() && !end_of_file;
|
2014-06-22 06:04:12 +04:00
|
|
|
video->Next()) {
|
2013-12-10 05:07:10 +04:00
|
|
|
PreDecodeFrameHook(*video, decoder);
|
2014-06-23 19:37:18 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_codec_stream_info_t stream_info;
|
2014-06-23 19:37:18 +04:00
|
|
|
stream_info.sz = sizeof(stream_info);
|
2014-08-01 06:04:35 +04:00
|
|
|
|
|
|
|
if (video->cxdata() != NULL) {
|
2016-08-31 00:01:10 +03:00
|
|
|
const aom_codec_err_t res_peek = decoder->PeekStream(
|
2016-08-12 03:46:05 +03:00
|
|
|
video->cxdata(), video->frame_size(), &stream_info);
|
2014-08-01 06:04:35 +04:00
|
|
|
HandlePeekResult(decoder, video, res_peek);
|
|
|
|
ASSERT_FALSE(::testing::Test::HasFailure());
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_codec_err_t res_dec =
|
2016-08-12 03:46:05 +03:00
|
|
|
decoder->DecodeFrame(video->cxdata(), video->frame_size());
|
|
|
|
if (!HandleDecodeResult(res_dec, *video, decoder)) break;
|
2014-08-01 06:04:35 +04:00
|
|
|
} else {
|
|
|
|
// Signal end of the file to the decoder.
|
2016-08-31 00:01:10 +03:00
|
|
|
const aom_codec_err_t res_dec = decoder->DecodeFrame(NULL, 0);
|
|
|
|
ASSERT_EQ(AOM_CODEC_OK, res_dec) << decoder->DecodeError();
|
2014-08-01 06:04:35 +04:00
|
|
|
end_of_file = true;
|
|
|
|
}
|
2012-10-04 23:59:36 +04:00
|
|
|
|
2013-01-18 23:51:12 +04:00
|
|
|
DxDataIterator dec_iter = decoder->GetDxData();
|
2016-08-31 00:01:10 +03:00
|
|
|
const aom_image_t *img = NULL;
|
2012-10-04 23:59:36 +04:00
|
|
|
|
|
|
|
// Get decompressed data
|
|
|
|
while ((img = dec_iter.Next()))
|
|
|
|
DecompressedFrameHook(*img, video->frame_number());
|
|
|
|
}
|
2013-01-18 23:51:12 +04:00
|
|
|
delete decoder;
|
2012-10-04 23:59:36 +04:00
|
|
|
}
|
2014-07-02 03:04:53 +04:00
|
|
|
|
|
|
|
void DecoderTest::RunLoop(CompressedVideoSource *video) {
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_codec_dec_cfg_t dec_cfg = aom_codec_dec_cfg_t();
|
2014-07-02 03:04:53 +04:00
|
|
|
RunLoop(video, dec_cfg);
|
|
|
|
}
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
void DecoderTest::set_cfg(const aom_codec_dec_cfg_t &dec_cfg) {
|
2014-11-21 02:39:56 +03:00
|
|
|
memcpy(&cfg_, &dec_cfg, sizeof(cfg_));
|
|
|
|
}
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
void DecoderTest::set_flags(const aom_codec_flags_t flags) { flags_ = flags; }
|
2014-11-21 02:39:56 +03:00
|
|
|
|
2016-08-23 02:08:15 +03:00
|
|
|
} // namespace libaom_test
|