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 |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "testing/gmock/include/gmock/gmock.h" | 13 #include "testing/gmock/include/gmock/gmock.h" |
14 #include "webrtc/modules/video_coding/include/video_codec_interface.h" | 14 #include "webrtc/modules/video_coding/include/video_codec_interface.h" |
15 #include "webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.h" | 15 #include "webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.h" |
16 #include "webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h" | 16 #include "webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h" |
17 #include "webrtc/modules/video_coding/codecs/vp8/vp8_factory.h" | |
18 | 17 |
19 namespace webrtc { | 18 namespace webrtc { |
20 namespace testing { | 19 namespace testing { |
21 | 20 |
22 static VP8Encoder* CreateTestEncoderAdapter() { | |
23 VP8EncoderFactoryConfig::set_use_simulcast_adapter(true); | |
24 return VP8Encoder::Create(); | |
25 } | |
26 | |
27 class TestSimulcastEncoderAdapter : public TestVp8Simulcast { | 21 class TestSimulcastEncoderAdapter : public TestVp8Simulcast { |
28 public: | 22 public: |
29 TestSimulcastEncoderAdapter() | 23 TestSimulcastEncoderAdapter() |
30 : TestVp8Simulcast(CreateTestEncoderAdapter(), VP8Decoder::Create()) {} | 24 : TestVp8Simulcast(new SimulcastEncoderAdapter(new Vp8EncoderFactory()), |
| 25 VP8Decoder::Create()) {} |
31 | 26 |
32 protected: | 27 protected: |
| 28 class Vp8EncoderFactory : public VideoEncoderFactory { |
| 29 public: |
| 30 VideoEncoder* Create() override { return VP8Encoder::Create(); } |
| 31 |
| 32 void Destroy(VideoEncoder* encoder) override { delete encoder; } |
| 33 |
| 34 virtual ~Vp8EncoderFactory() {} |
| 35 }; |
| 36 |
33 virtual void SetUp() { TestVp8Simulcast::SetUp(); } | 37 virtual void SetUp() { TestVp8Simulcast::SetUp(); } |
34 virtual void TearDown() { | 38 virtual void TearDown() { TestVp8Simulcast::TearDown(); } |
35 TestVp8Simulcast::TearDown(); | |
36 VP8EncoderFactoryConfig::set_use_simulcast_adapter(false); | |
37 } | |
38 }; | 39 }; |
39 | 40 |
40 TEST_F(TestSimulcastEncoderAdapter, TestKeyFrameRequestsOnAllStreams) { | 41 TEST_F(TestSimulcastEncoderAdapter, TestKeyFrameRequestsOnAllStreams) { |
41 TestVp8Simulcast::TestKeyFrameRequestsOnAllStreams(); | 42 TestVp8Simulcast::TestKeyFrameRequestsOnAllStreams(); |
42 } | 43 } |
43 | 44 |
44 TEST_F(TestSimulcastEncoderAdapter, TestPaddingAllStreams) { | 45 TEST_F(TestSimulcastEncoderAdapter, TestPaddingAllStreams) { |
45 TestVp8Simulcast::TestPaddingAllStreams(); | 46 TestVp8Simulcast::TestPaddingAllStreams(); |
46 } | 47 } |
47 | 48 |
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 EXPECT_EQ(0, adapter_->InitEncode(&codec_, 1, 1200)); | 407 EXPECT_EQ(0, adapter_->InitEncode(&codec_, 1, 1200)); |
407 adapter_->RegisterEncodeCompleteCallback(this); | 408 adapter_->RegisterEncodeCompleteCallback(this); |
408 ASSERT_EQ(3u, helper_->factory()->encoders().size()); | 409 ASSERT_EQ(3u, helper_->factory()->encoders().size()); |
409 for (MockVideoEncoder* encoder : helper_->factory()->encoders()) | 410 for (MockVideoEncoder* encoder : helper_->factory()->encoders()) |
410 encoder->set_supports_native_handle(true); | 411 encoder->set_supports_native_handle(true); |
411 EXPECT_FALSE(adapter_->SupportsNativeHandle()); | 412 EXPECT_FALSE(adapter_->SupportsNativeHandle()); |
412 } | 413 } |
413 | 414 |
414 } // namespace testing | 415 } // namespace testing |
415 } // namespace webrtc | 416 } // namespace webrtc |
OLD | NEW |