blob: 1eee0f55abd63ba31fd630a05aadf07c9412b065 [file] [log] [blame]
Adrian Grangecc017ca2012-10-02 12:16:27 -07001/*
2 Copyright (c) 2012 The WebM project authors. All Rights Reserved.
3
4 Use of this source code is governed by a BSD-style license
5 that can be found in the LICENSE file in the root of the source
6 tree. An additional intellectual property rights grant can be found
7 in the file PATENTS. All contributing project authors may
8 be found in the AUTHORS file in the root of the source tree.
9*/
Deb Mukherjee01cafaa2013-01-15 06:43:35 -080010
Adrian Grangecc017ca2012-10-02 12:16:27 -070011#include "third_party/googletest/src/include/gtest/gtest.h"
John Koleszar706cafe2013-01-18 11:51:12 -080012#include "test/codec_factory.h"
Adrian Grangecc017ca2012-10-02 12:16:27 -070013#include "test/encode_test_driver.h"
14#include "test/i420_video_source.h"
John Koleszar706cafe2013-01-18 11:51:12 -080015#include "test/util.h"
Adrian Grangecc017ca2012-10-02 12:16:27 -070016
17namespace {
18
Deb Mukherjee01cafaa2013-01-15 06:43:35 -080019const int kMaxErrorFrames = 8;
20const int kMaxDroppableFrames = 8;
21
John Koleszar706cafe2013-01-18 11:51:12 -080022class ErrorResilienceTest : public ::libvpx_test::EncoderTest,
23 public ::libvpx_test::CodecTestWithParam<libvpx_test::TestMode> {
Adrian Grangecc017ca2012-10-02 12:16:27 -070024 protected:
Deb Mukherjee01cafaa2013-01-15 06:43:35 -080025 ErrorResilienceTest() : EncoderTest(GET_PARAM(0)),
26 psnr_(0.0),
27 nframes_(0),
28 mismatch_psnr_(0.0),
29 mismatch_nframes_(0),
30 encoding_mode_(GET_PARAM(1)) {
31 Reset();
32 }
John Koleszar706cafe2013-01-18 11:51:12 -080033
Adrian Grangecc017ca2012-10-02 12:16:27 -070034 virtual ~ErrorResilienceTest() {}
35
Deb Mukherjee01cafaa2013-01-15 06:43:35 -080036 void Reset() {
37 error_nframes_ = 0;
38 droppable_nframes_ = 0;
39 }
40
Adrian Grangecc017ca2012-10-02 12:16:27 -070041 virtual void SetUp() {
42 InitializeConfig();
43 SetMode(encoding_mode_);
44 }
45
46 virtual void BeginPassHook(unsigned int /*pass*/) {
47 psnr_ = 0.0;
48 nframes_ = 0;
Deb Mukherjee01cafaa2013-01-15 06:43:35 -080049 mismatch_psnr_ = 0.0;
50 mismatch_nframes_ = 0;
Adrian Grangecc017ca2012-10-02 12:16:27 -070051 }
52
53 virtual bool Continue() const {
54 return !HasFatalFailure() && !abort_;
55 }
56
57 virtual void PSNRPktHook(const vpx_codec_cx_pkt_t *pkt) {
58 psnr_ += pkt->data.psnr.psnr[0];
59 nframes_++;
60 }
61
Deb Mukherjee01cafaa2013-01-15 06:43:35 -080062 virtual void PreEncodeFrameHook(libvpx_test::VideoSource *video) {
63 frame_flags_ &= ~(VP8_EFLAG_NO_UPD_LAST |
64 VP8_EFLAG_NO_UPD_GF |
65 VP8_EFLAG_NO_UPD_ARF);
66 if (droppable_nframes_ > 0 &&
67 (cfg_.g_pass == VPX_RC_LAST_PASS || cfg_.g_pass == VPX_RC_ONE_PASS)) {
68 for (unsigned int i = 0; i < droppable_nframes_; ++i) {
69 if (droppable_frames_[i] == nframes_) {
70 std::cout << " Encoding droppable frame: "
71 << droppable_frames_[i] << "\n";
72 frame_flags_ |= (VP8_EFLAG_NO_UPD_LAST |
73 VP8_EFLAG_NO_UPD_GF |
74 VP8_EFLAG_NO_UPD_ARF);
75 return;
76 }
77 }
78 }
79 }
80
Adrian Grangecc017ca2012-10-02 12:16:27 -070081 double GetAveragePsnr() const {
82 if (nframes_)
83 return psnr_ / nframes_;
84 return 0.0;
85 }
86
Deb Mukherjee01cafaa2013-01-15 06:43:35 -080087 double GetAverageMismatchPsnr() const {
88 if (mismatch_nframes_)
89 return mismatch_psnr_ / mismatch_nframes_;
90 return 0.0;
91 }
92
93 virtual bool DoDecode() const {
94 if (error_nframes_ > 0 &&
95 (cfg_.g_pass == VPX_RC_LAST_PASS || cfg_.g_pass == VPX_RC_ONE_PASS)) {
96 for (unsigned int i = 0; i < error_nframes_; ++i) {
97 if (error_frames_[i] == nframes_ - 1) {
98 std::cout << " Skipping decoding frame: "
99 << error_frames_[i] << "\n";
100 return 0;
101 }
102 }
103 }
104 return 1;
105 }
106
107 virtual void MismatchHook(const vpx_image_t *img1,
108 const vpx_image_t *img2) {
109 double mismatch_psnr = compute_psnr(img1, img2);
110 mismatch_psnr_ += mismatch_psnr;
111 ++mismatch_nframes_;
112 // std::cout << "Mismatch frame psnr: " << mismatch_psnr << "\n";
113 }
114
115 void SetErrorFrames(int num, unsigned int *list) {
116 if (num > kMaxErrorFrames)
117 num = kMaxErrorFrames;
118 else if (num < 0)
119 num = 0;
120 error_nframes_ = num;
121 for (unsigned int i = 0; i < error_nframes_; ++i)
122 error_frames_[i] = list[i];
123 }
124
125 void SetDroppableFrames(int num, unsigned int *list) {
126 if (num > kMaxDroppableFrames)
127 num = kMaxDroppableFrames;
128 else if (num < 0)
129 num = 0;
130 droppable_nframes_ = num;
131 for (unsigned int i = 0; i < droppable_nframes_; ++i)
132 droppable_frames_[i] = list[i];
133 }
134
135 unsigned int GetMismatchFrames() {
136 return mismatch_nframes_;
137 }
138
Adrian Grangecc017ca2012-10-02 12:16:27 -0700139 private:
140 double psnr_;
141 unsigned int nframes_;
Deb Mukherjee01cafaa2013-01-15 06:43:35 -0800142 unsigned int error_nframes_;
143 unsigned int droppable_nframes_;
144 double mismatch_psnr_;
145 unsigned int mismatch_nframes_;
146 unsigned int error_frames_[kMaxErrorFrames];
147 unsigned int droppable_frames_[kMaxDroppableFrames];
Adrian Grangecc017ca2012-10-02 12:16:27 -0700148 libvpx_test::TestMode encoding_mode_;
149};
150
151TEST_P(ErrorResilienceTest, OnVersusOff) {
152 const vpx_rational timebase = { 33333333, 1000000000 };
153 cfg_.g_timebase = timebase;
154 cfg_.rc_target_bitrate = 2000;
155 cfg_.g_lag_in_frames = 25;
156
157 init_flags_ = VPX_CODEC_USE_PSNR;
158
159 libvpx_test::I420VideoSource video("hantro_collage_w352h288.yuv", 352, 288,
160 timebase.den, timebase.num, 0, 30);
161
162 // Error resilient mode OFF.
163 cfg_.g_error_resilient = 0;
164 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
165 const double psnr_resilience_off = GetAveragePsnr();
166 EXPECT_GT(psnr_resilience_off, 25.0);
167
168 // Error resilient mode ON.
169 cfg_.g_error_resilient = 1;
170 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
171 const double psnr_resilience_on = GetAveragePsnr();
172 EXPECT_GT(psnr_resilience_on, 25.0);
173
174 // Test that turning on error resilient mode hurts by 10% at most.
175 if (psnr_resilience_off > 0.0) {
176 const double psnr_ratio = psnr_resilience_on / psnr_resilience_off;
177 EXPECT_GE(psnr_ratio, 0.9);
178 EXPECT_LE(psnr_ratio, 1.1);
179 }
180}
181
Deb Mukherjee01cafaa2013-01-15 06:43:35 -0800182TEST_P(ErrorResilienceTest, DropFramesWithoutRecovery) {
183 const vpx_rational timebase = { 33333333, 1000000000 };
184 cfg_.g_timebase = timebase;
John Koleszarc0490a52013-05-07 12:58:32 -0700185 cfg_.rc_target_bitrate = 500;
Deb Mukherjee01cafaa2013-01-15 06:43:35 -0800186
187 init_flags_ = VPX_CODEC_USE_PSNR;
188
189 libvpx_test::I420VideoSource video("hantro_collage_w352h288.yuv", 352, 288,
190 timebase.den, timebase.num, 0, 30);
191
192 // Error resilient mode ON.
193 cfg_.g_error_resilient = 1;
194
195 // Set an arbitrary set of error frames same as droppable frames
196 unsigned int num_droppable_frames = 2;
197 unsigned int droppable_frame_list[] = {5, 16};
198 SetDroppableFrames(num_droppable_frames, droppable_frame_list);
199 SetErrorFrames(num_droppable_frames, droppable_frame_list);
200 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
201 // Test that no mismatches have been found
202 std::cout << " Mismatch frames: "
203 << GetMismatchFrames() << "\n";
204 EXPECT_EQ(GetMismatchFrames(), (unsigned int) 0);
205
206 // reset previously set error/droppable frames
207 Reset();
208
209 // Now set an arbitrary set of error frames that are non-droppable
210 unsigned int num_error_frames = 3;
211 unsigned int error_frame_list[] = {3, 10, 20};
212 SetErrorFrames(num_error_frames, error_frame_list);
213 ASSERT_NO_FATAL_FAILURE(RunLoop(&video));
214 // Test that dropping an arbitrary set of inter frames does not hurt too much
215 // Note the Average Mismatch PSNR is the average of the PSNR between
216 // decoded frame and encoder's version of the same frame for all frames
217 // with mismatch.
218 const double psnr_resilience_mismatch = GetAverageMismatchPsnr();
219 std::cout << " Mismatch PSNR: "
220 << psnr_resilience_mismatch << "\n";
221 EXPECT_GT(psnr_resilience_mismatch, 20.0);
222}
223
John Koleszar706cafe2013-01-18 11:51:12 -0800224VP8_INSTANTIATE_TEST_CASE(ErrorResilienceTest, ONE_PASS_TEST_MODES);
Deb Mukherjee01cafaa2013-01-15 06:43:35 -0800225VP9_INSTANTIATE_TEST_CASE(ErrorResilienceTest, ONE_PASS_TEST_MODES);
226
Adrian Grangecc017ca2012-10-02 12:16:27 -0700227} // namespace