1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
/*
* Copyright (c) 2021, Alliance for Open Media. All rights reserved.
*
* 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.
*/
#include <unordered_map>
#include "gtest/gtest.h"
#include "test/codec_factory.h"
#include "test/encode_test_driver.h"
#include "test/util.h"
#include "test/y4m_video_source.h"
namespace {
const unsigned int kFrames = 10;
const int kBitrate = 500;
const unsigned int kCqLevel = 18;
// List of psnr thresholds for different test combinations
// keys: test-mode, cpu-used, sharpness.
const std::unordered_map<
int, std::unordered_map<int, std::unordered_map<int, double>>>
kPsnrThreshold = { { static_cast<int>(::libaom_test::kTwoPassGood),
{ { 2, { { 2, 37.6 }, { 5, 37.6 } } },
{ 4, { { 2, 37.5 }, { 5, 37.5 } } },
{ 6, { { 2, 37.2 }, { 5, 37.2 } } } } },
{ static_cast<int>(::libaom_test::kAllIntra),
{ { 3, { { 2, 42.2 }, { 5, 42.2 } } },
{ 6, { { 2, 41.7 }, { 4, 41.9 }, { 5, 41.9 } } },
{ 9, { { 2, 40.6 }, { 5, 40.6 } } } } } };
// This class is used to test sharpness parameter configured through control
// call using AOME_SET_SHARPNESS for different encoder configurations.
class SharpnessTest
: public ::libaom_test::CodecTestWith3Params<libaom_test::TestMode, int,
int>,
public ::libaom_test::EncoderTest {
protected:
SharpnessTest()
: EncoderTest(GET_PARAM(0)), encoding_mode_(GET_PARAM(1)),
cpu_used_(GET_PARAM(2)), sharpness_level_(GET_PARAM(3)), psnr_(0.0),
nframes_(0) {}
~SharpnessTest() override = default;
void SetUp() override {
InitializeConfig(encoding_mode_);
if (encoding_mode_ == ::libaom_test::kTwoPassGood) {
cfg_.rc_target_bitrate = kBitrate;
cfg_.g_lag_in_frames = 5;
}
}
void BeginPassHook(unsigned int) override {
psnr_ = 0.0;
nframes_ = 0;
}
void PSNRPktHook(const aom_codec_cx_pkt_t *pkt) override {
psnr_ += pkt->data.psnr.psnr[0];
nframes_++;
}
void PreEncodeFrameHook(::libaom_test::VideoSource *video,
::libaom_test::Encoder *encoder) override {
if (video->frame() == 0) {
encoder->Control(AOME_SET_CPUUSED, cpu_used_);
encoder->Control(AOME_SET_SHARPNESS, sharpness_level_);
if (encoding_mode_ == ::libaom_test::kTwoPassGood) {
encoder->Control(AOME_SET_ENABLEAUTOALTREF, 1);
encoder->Control(AOME_SET_ARNR_MAXFRAMES, 7);
encoder->Control(AOME_SET_ARNR_STRENGTH, 5);
} else if (encoding_mode_ == ::libaom_test::kAllIntra) {
encoder->Control(AOME_SET_CQ_LEVEL, kCqLevel);
}
}
}
double GetAveragePsnr() const {
if (nframes_) return psnr_ / nframes_;
return 0.0;
}
double GetPsnrThreshold() {
return kPsnrThreshold.at(encoding_mode_).at(cpu_used_).at(sharpness_level_);
}
void DoTest() {
init_flags_ = AOM_CODEC_USE_PSNR;
std::unique_ptr<libaom_test::VideoSource> video(
new libaom_test::Y4mVideoSource("paris_352_288_30.y4m", 0, kFrames));
ASSERT_NE(video, nullptr);
ASSERT_NO_FATAL_FAILURE(RunLoop(video.get()));
const double psnr = GetAveragePsnr();
EXPECT_GT(psnr, GetPsnrThreshold())
<< "encoding mode = " << encoding_mode_ << ", cpu used = " << cpu_used_
<< ", sharpness level = " << sharpness_level_;
}
private:
const libaom_test::TestMode encoding_mode_;
const int cpu_used_;
const int sharpness_level_;
double psnr_;
unsigned int nframes_;
};
class SharpnessTestLarge : public SharpnessTest {};
class SharpnessAllIntraTest : public SharpnessTest {};
class SharpnessAllIntraTestLarge : public SharpnessTest {};
TEST_P(SharpnessTestLarge, SharpnessPSNRTest) { DoTest(); }
TEST_P(SharpnessAllIntraTest, SharpnessPSNRTest) { DoTest(); }
TEST_P(SharpnessAllIntraTestLarge, SharpnessPSNRTest) { DoTest(); }
AV1_INSTANTIATE_TEST_SUITE(SharpnessTestLarge,
::testing::Values(::libaom_test::kTwoPassGood),
::testing::Values(2, 4, 6), // cpu_used
::testing::Values(2, 5)); // sharpness level
AV1_INSTANTIATE_TEST_SUITE(SharpnessAllIntraTest,
::testing::Values(::libaom_test::kAllIntra),
::testing::Values(6), // cpu_used
::testing::Values(4)); // sharpness level
AV1_INSTANTIATE_TEST_SUITE(SharpnessAllIntraTestLarge,
::testing::Values(::libaom_test::kAllIntra),
::testing::Values(3, 6, 9), // cpu_used
::testing::Values(2, 5)); // sharpness level
} // namespace
|