Adrian Grange | cc017ca | 2012-10-02 12:16:27 -0700 | [diff] [blame] | 1 | /* |
| 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 Mukherjee | 01cafaa | 2013-01-15 06:43:35 -0800 | [diff] [blame] | 10 | |
Adrian Grange | cc017ca | 2012-10-02 12:16:27 -0700 | [diff] [blame] | 11 | #include "third_party/googletest/src/include/gtest/gtest.h" |
John Koleszar | 706cafe | 2013-01-18 11:51:12 -0800 | [diff] [blame] | 12 | #include "test/codec_factory.h" |
Adrian Grange | cc017ca | 2012-10-02 12:16:27 -0700 | [diff] [blame] | 13 | #include "test/encode_test_driver.h" |
| 14 | #include "test/i420_video_source.h" |
John Koleszar | 706cafe | 2013-01-18 11:51:12 -0800 | [diff] [blame] | 15 | #include "test/util.h" |
Adrian Grange | cc017ca | 2012-10-02 12:16:27 -0700 | [diff] [blame] | 16 | |
| 17 | namespace { |
| 18 | |
Deb Mukherjee | 01cafaa | 2013-01-15 06:43:35 -0800 | [diff] [blame] | 19 | const int kMaxErrorFrames = 8; |
| 20 | const int kMaxDroppableFrames = 8; |
| 21 | |
John Koleszar | 706cafe | 2013-01-18 11:51:12 -0800 | [diff] [blame] | 22 | class ErrorResilienceTest : public ::libvpx_test::EncoderTest, |
| 23 | public ::libvpx_test::CodecTestWithParam<libvpx_test::TestMode> { |
Adrian Grange | cc017ca | 2012-10-02 12:16:27 -0700 | [diff] [blame] | 24 | protected: |
Deb Mukherjee | 01cafaa | 2013-01-15 06:43:35 -0800 | [diff] [blame] | 25 | 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 Koleszar | 706cafe | 2013-01-18 11:51:12 -0800 | [diff] [blame] | 33 | |
Adrian Grange | cc017ca | 2012-10-02 12:16:27 -0700 | [diff] [blame] | 34 | virtual ~ErrorResilienceTest() {} |
| 35 | |
Deb Mukherjee | 01cafaa | 2013-01-15 06:43:35 -0800 | [diff] [blame] | 36 | void Reset() { |
| 37 | error_nframes_ = 0; |
| 38 | droppable_nframes_ = 0; |
| 39 | } |
| 40 | |
Adrian Grange | cc017ca | 2012-10-02 12:16:27 -0700 | [diff] [blame] | 41 | 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 Mukherjee | 01cafaa | 2013-01-15 06:43:35 -0800 | [diff] [blame] | 49 | mismatch_psnr_ = 0.0; |
| 50 | mismatch_nframes_ = 0; |
Adrian Grange | cc017ca | 2012-10-02 12:16:27 -0700 | [diff] [blame] | 51 | } |
| 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 Mukherjee | 01cafaa | 2013-01-15 06:43:35 -0800 | [diff] [blame] | 62 | 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 Grange | cc017ca | 2012-10-02 12:16:27 -0700 | [diff] [blame] | 81 | double GetAveragePsnr() const { |
| 82 | if (nframes_) |
| 83 | return psnr_ / nframes_; |
| 84 | return 0.0; |
| 85 | } |
| 86 | |
Deb Mukherjee | 01cafaa | 2013-01-15 06:43:35 -0800 | [diff] [blame] | 87 | 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 Grange | cc017ca | 2012-10-02 12:16:27 -0700 | [diff] [blame] | 139 | private: |
| 140 | double psnr_; |
| 141 | unsigned int nframes_; |
Deb Mukherjee | 01cafaa | 2013-01-15 06:43:35 -0800 | [diff] [blame] | 142 | 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 Grange | cc017ca | 2012-10-02 12:16:27 -0700 | [diff] [blame] | 148 | libvpx_test::TestMode encoding_mode_; |
| 149 | }; |
| 150 | |
| 151 | TEST_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 Mukherjee | 01cafaa | 2013-01-15 06:43:35 -0800 | [diff] [blame] | 182 | TEST_P(ErrorResilienceTest, DropFramesWithoutRecovery) { |
| 183 | const vpx_rational timebase = { 33333333, 1000000000 }; |
| 184 | cfg_.g_timebase = timebase; |
John Koleszar | c0490a5 | 2013-05-07 12:58:32 -0700 | [diff] [blame^] | 185 | cfg_.rc_target_bitrate = 500; |
Deb Mukherjee | 01cafaa | 2013-01-15 06:43:35 -0800 | [diff] [blame] | 186 | |
| 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 Koleszar | 706cafe | 2013-01-18 11:51:12 -0800 | [diff] [blame] | 224 | VP8_INSTANTIATE_TEST_CASE(ErrorResilienceTest, ONE_PASS_TEST_MODES); |
Deb Mukherjee | 01cafaa | 2013-01-15 06:43:35 -0800 | [diff] [blame] | 225 | VP9_INSTANTIATE_TEST_CASE(ErrorResilienceTest, ONE_PASS_TEST_MODES); |
| 226 | |
Adrian Grange | cc017ca | 2012-10-02 12:16:27 -0700 | [diff] [blame] | 227 | } // namespace |