Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(354)

Side by Side Diff: webrtc/video/video_decoder_unittest.cc

Issue 1647163002: Deprecate VideoDecoder::Reset() and remove calls. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 DecodedImageCallback* callback) override { 42 DecodedImageCallback* callback) override {
43 decode_complete_callback_ = callback; 43 decode_complete_callback_ = callback;
44 return WEBRTC_VIDEO_CODEC_OK; 44 return WEBRTC_VIDEO_CODEC_OK;
45 } 45 }
46 46
47 int32_t Release() override { 47 int32_t Release() override {
48 ++release_count_; 48 ++release_count_;
49 return WEBRTC_VIDEO_CODEC_OK; 49 return WEBRTC_VIDEO_CODEC_OK;
50 } 50 }
51 51
52 int32_t Reset() override {
53 ++reset_count_;
54 return WEBRTC_VIDEO_CODEC_OK;
55 }
56
57 const char* ImplementationName() const override { 52 const char* ImplementationName() const override {
58 return "fake-decoder"; 53 return "fake-decoder";
59 } 54 }
60 55
61 int init_decode_count_ = 0; 56 int init_decode_count_ = 0;
62 int decode_count_ = 0; 57 int decode_count_ = 0;
63 int32_t decode_return_code_ = WEBRTC_VIDEO_CODEC_OK; 58 int32_t decode_return_code_ = WEBRTC_VIDEO_CODEC_OK;
64 DecodedImageCallback* decode_complete_callback_ = nullptr; 59 DecodedImageCallback* decode_complete_callback_ = nullptr;
65 int release_count_ = 0; 60 int release_count_ = 0;
66 int reset_count_ = 0; 61 int reset_count_ = 0;
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 122
128 fake_decoder_.decode_return_code_ = WEBRTC_VIDEO_CODEC_FALLBACK_SOFTWARE; 123 fake_decoder_.decode_return_code_ = WEBRTC_VIDEO_CODEC_FALLBACK_SOFTWARE;
129 EncodedImage encoded_image; 124 EncodedImage encoded_image;
130 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1); 125 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1);
131 EXPECT_EQ(1, fake_decoder_.release_count_) 126 EXPECT_EQ(1, fake_decoder_.release_count_)
132 << "Decoder should not be released during fallback."; 127 << "Decoder should not be released during fallback.";
133 fallback_wrapper_.Release(); 128 fallback_wrapper_.Release();
134 EXPECT_EQ(2, fake_decoder_.release_count_); 129 EXPECT_EQ(2, fake_decoder_.release_count_);
135 } 130 }
136 131
137 TEST_F(VideoDecoderSoftwareFallbackWrapperTest, ForwardsResetCall) {
138 VideoCodec codec = {};
139 fallback_wrapper_.InitDecode(&codec, 2);
140 fallback_wrapper_.Reset();
141 EXPECT_EQ(1, fake_decoder_.reset_count_);
142
143 fake_decoder_.decode_return_code_ = WEBRTC_VIDEO_CODEC_FALLBACK_SOFTWARE;
144 EncodedImage encoded_image;
145 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1);
146 fallback_wrapper_.Reset();
147 EXPECT_EQ(2, fake_decoder_.reset_count_)
148 << "Reset not forwarded during fallback.";
149 }
150
151 // TODO(pbos): Fake a VP8 frame well enough to actually receive a callback from 132 // TODO(pbos): Fake a VP8 frame well enough to actually receive a callback from
152 // the software decoder. 133 // the software decoder.
153 TEST_F(VideoDecoderSoftwareFallbackWrapperTest, 134 TEST_F(VideoDecoderSoftwareFallbackWrapperTest,
154 ForwardsRegisterDecodeCompleteCallback) { 135 ForwardsRegisterDecodeCompleteCallback) {
155 class FakeDecodedImageCallback : public DecodedImageCallback { 136 class FakeDecodedImageCallback : public DecodedImageCallback {
156 int32_t Decoded(VideoFrame& decodedImage) override { return 0; } 137 int32_t Decoded(VideoFrame& decodedImage) override { return 0; }
157 int32_t Decoded( 138 int32_t Decoded(
158 webrtc::VideoFrame& decodedImage, int64_t decode_time_ms) override { 139 webrtc::VideoFrame& decodedImage, int64_t decode_time_ms) override {
159 RTC_NOTREACHED(); 140 RTC_NOTREACHED();
160 return -1; 141 return -1;
(...skipping 21 matching lines...) Expand all
182 EncodedImage encoded_image; 163 EncodedImage encoded_image;
183 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1); 164 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1);
184 // Hard coded expected value since libvpx is the software implementation name 165 // Hard coded expected value since libvpx is the software implementation name
185 // for VP8. Change accordingly if the underlying implementation does. 166 // for VP8. Change accordingly if the underlying implementation does.
186 EXPECT_STREQ("libvpx (fallback from: fake-decoder)", 167 EXPECT_STREQ("libvpx (fallback from: fake-decoder)",
187 fallback_wrapper_.ImplementationName()); 168 fallback_wrapper_.ImplementationName());
188 fallback_wrapper_.Release(); 169 fallback_wrapper_.Release();
189 } 170 }
190 171
191 } // namespace webrtc 172 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698