2012-08-31 00:43:15 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2012 The WebM project authors. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
*/
|
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
|
|
|
|
|
|
|
namespace libvpx_test {
|
|
|
|
|
2014-06-23 19:37:18 +04:00
|
|
|
const char kVP8Name[] = "WebM Project VP8";
|
2016-05-06 02:42:57 +03:00
|
|
|
const char kVP10Name[] = "WebM Project VP10";
|
2014-06-23 19:37:18 +04:00
|
|
|
|
|
|
|
vpx_codec_err_t Decoder::PeekStream(const uint8_t *cxdata, size_t size,
|
|
|
|
vpx_codec_stream_info_t *stream_info) {
|
2016-08-12 03:46:05 +03:00
|
|
|
return vpx_codec_peek_stream_info(
|
|
|
|
CodecInterface(), cxdata, static_cast<unsigned int>(size), stream_info);
|
2014-06-23 19:37:18 +04:00
|
|
|
}
|
|
|
|
|
2014-02-13 04:01:52 +04:00
|
|
|
vpx_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);
|
|
|
|
}
|
|
|
|
|
|
|
|
vpx_codec_err_t Decoder::DecodeFrame(const uint8_t *cxdata, size_t size,
|
|
|
|
void *user_priv) {
|
2012-11-28 01:08:05 +04:00
|
|
|
vpx_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-12 03:46:05 +03:00
|
|
|
res_dec = vpx_codec_decode(
|
|
|
|
&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-05-06 02:42:57 +03:00
|
|
|
bool Decoder::IsVP10() const {
|
|
|
|
const char *codec_name = GetDecoderName();
|
|
|
|
return strncmp(kVP10Name, codec_name, sizeof(kVP10Name) - 1) == 0;
|
|
|
|
}
|
|
|
|
|
2014-07-15 12:54:29 +04:00
|
|
|
void DecoderTest::HandlePeekResult(Decoder *const decoder,
|
|
|
|
CompressedVideoSource *video,
|
|
|
|
const vpx_codec_err_t res_peek) {
|
|
|
|
const bool is_vp8 = decoder->IsVP8();
|
|
|
|
if (is_vp8) {
|
|
|
|
/* Vp8's implementation of PeekStream returns an error if the frame you
|
|
|
|
* pass it is not a keyframe, so we only expect VPX_CODEC_OK on the first
|
|
|
|
* frame, which must be a keyframe. */
|
|
|
|
if (video->frame_number() == 0)
|
|
|
|
ASSERT_EQ(VPX_CODEC_OK, res_peek) << "Peek return failed: "
|
|
|
|
<< vpx_codec_err_to_string(res_peek);
|
|
|
|
} else {
|
|
|
|
/* The Vp9 implementation of PeekStream returns an error only if the
|
|
|
|
* data passed to it isn't a valid Vp9 chunk. */
|
|
|
|
ASSERT_EQ(VPX_CODEC_OK, res_peek) << "Peek return failed: "
|
|
|
|
<< vpx_codec_err_to_string(res_peek);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-02 03:04:53 +04:00
|
|
|
void DecoderTest::RunLoop(CompressedVideoSource *video,
|
|
|
|
const vpx_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
|
|
|
|
|
|
|
vpx_codec_stream_info_t stream_info;
|
|
|
|
stream_info.sz = sizeof(stream_info);
|
2014-08-01 06:04:35 +04:00
|
|
|
|
|
|
|
if (video->cxdata() != NULL) {
|
2016-08-12 03:46:05 +03:00
|
|
|
const vpx_codec_err_t res_peek = decoder->PeekStream(
|
|
|
|
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-12 03:46:05 +03:00
|
|
|
vpx_codec_err_t res_dec =
|
|
|
|
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.
|
|
|
|
const vpx_codec_err_t res_dec = decoder->DecodeFrame(NULL, 0);
|
|
|
|
ASSERT_EQ(VPX_CODEC_OK, res_dec) << decoder->DecodeError();
|
|
|
|
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();
|
2012-10-04 23:59:36 +04:00
|
|
|
const vpx_image_t *img = NULL;
|
|
|
|
|
|
|
|
// 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) {
|
2014-08-22 23:16:20 +04:00
|
|
|
vpx_codec_dec_cfg_t dec_cfg = vpx_codec_dec_cfg_t();
|
2014-07-02 03:04:53 +04:00
|
|
|
RunLoop(video, dec_cfg);
|
|
|
|
}
|
|
|
|
|
2014-11-21 02:39:56 +03:00
|
|
|
void DecoderTest::set_cfg(const vpx_codec_dec_cfg_t &dec_cfg) {
|
|
|
|
memcpy(&cfg_, &dec_cfg, sizeof(cfg_));
|
|
|
|
}
|
|
|
|
|
2016-08-12 03:46:05 +03:00
|
|
|
void DecoderTest::set_flags(const vpx_codec_flags_t flags) { flags_ = flags; }
|
2014-11-21 02:39:56 +03:00
|
|
|
|
2012-08-31 00:43:15 +04:00
|
|
|
} // namespace libvpx_test
|