OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 EXPECT_NEAR(kColorU, decoded_image.video_frame_buffer()->DataU()[i], 4); | 138 EXPECT_NEAR(kColorU, decoded_image.video_frame_buffer()->DataU()[i], 4); |
139 EXPECT_NEAR(kColorV, decoded_image.video_frame_buffer()->DataV()[i], 4); | 139 EXPECT_NEAR(kColorV, decoded_image.video_frame_buffer()->DataV()[i], 4); |
140 } | 140 } |
141 decoded_frames_++; | 141 decoded_frames_++; |
142 return 0; | 142 return 0; |
143 } | 143 } |
144 int32_t Decoded(VideoFrame& decoded_image, int64_t decode_time_ms) override { | 144 int32_t Decoded(VideoFrame& decoded_image, int64_t decode_time_ms) override { |
145 RTC_NOTREACHED(); | 145 RTC_NOTREACHED(); |
146 return -1; | 146 return -1; |
147 } | 147 } |
148 void Decoded(VideoFrame& decoded_image, | |
149 rtc::Optional<int32_t> decode_time_ms, | |
150 rtc::Optional<uint8_t> qp) override { | |
151 RTC_NOTREACHED(); | |
152 } | |
153 int DecodedFrames() { return decoded_frames_; } | 148 int DecodedFrames() { return decoded_frames_; } |
154 | 149 |
155 private: | 150 private: |
156 int decoded_frames_; | 151 int decoded_frames_; |
157 }; | 152 }; |
158 | 153 |
159 class TestVp8Simulcast : public ::testing::Test { | 154 class TestVp8Simulcast : public ::testing::Test { |
160 public: | 155 public: |
161 TestVp8Simulcast(VP8Encoder* encoder, VP8Decoder* decoder) | 156 TestVp8Simulcast(VP8Encoder* encoder, VP8Decoder* decoder) |
162 : encoder_(encoder), decoder_(decoder) {} | 157 : encoder_(encoder), decoder_(decoder) {} |
(...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
890 VideoCodec settings_; | 885 VideoCodec settings_; |
891 rtc::scoped_refptr<I420Buffer> input_buffer_; | 886 rtc::scoped_refptr<I420Buffer> input_buffer_; |
892 std::unique_ptr<VideoFrame> input_frame_; | 887 std::unique_ptr<VideoFrame> input_frame_; |
893 std::unique_ptr<SimulcastRateAllocator> rate_allocator_; | 888 std::unique_ptr<SimulcastRateAllocator> rate_allocator_; |
894 }; | 889 }; |
895 | 890 |
896 } // namespace testing | 891 } // namespace testing |
897 } // namespace webrtc | 892 } // namespace webrtc |
898 | 893 |
899 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_SIMULCAST_UNITTEST_H_ | 894 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_SIMULCAST_UNITTEST_H_ |
OLD | NEW |