OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 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 "webrtc/media/engine/nullwebrtcvideoengine.h" | 11 #include "webrtc/media/engine/nullwebrtcvideoengine.h" |
12 #include "webrtc/media/engine/webrtcvoiceengine.h" | 12 #include "webrtc/media/engine/webrtcvoiceengine.h" |
13 #include "webrtc/modules/audio_coding/codecs/mock/mock_audio_decoder_factory.h" | 13 #include "webrtc/modules/audio_coding/codecs/mock/mock_audio_decoder_factory.h" |
| 14 #include "webrtc/modules/audio_coding/codecs/mock/mock_audio_encoder_factory.h" |
14 #include "webrtc/test/gtest.h" | 15 #include "webrtc/test/gtest.h" |
15 | 16 |
16 namespace cricket { | 17 namespace cricket { |
17 | 18 |
18 class WebRtcMediaEngineNullVideo | 19 class WebRtcMediaEngineNullVideo |
19 : public CompositeMediaEngine<WebRtcVoiceEngine, NullWebRtcVideoEngine> { | 20 : public CompositeMediaEngine<WebRtcVoiceEngine, NullWebRtcVideoEngine> { |
20 public: | 21 public: |
21 WebRtcMediaEngineNullVideo( | 22 WebRtcMediaEngineNullVideo( |
22 webrtc::AudioDeviceModule* adm, | 23 webrtc::AudioDeviceModule* adm, |
| 24 const rtc::scoped_refptr<webrtc::AudioEncoderFactory>& |
| 25 audio_encoder_factory, |
23 const rtc::scoped_refptr<webrtc::AudioDecoderFactory>& | 26 const rtc::scoped_refptr<webrtc::AudioDecoderFactory>& |
24 audio_decoder_factory, | 27 audio_decoder_factory, |
25 WebRtcVideoEncoderFactory* video_encoder_factory, | 28 WebRtcVideoEncoderFactory* video_encoder_factory, |
26 WebRtcVideoDecoderFactory* video_decoder_factory) | 29 WebRtcVideoDecoderFactory* video_decoder_factory) |
27 : CompositeMediaEngine<WebRtcVoiceEngine, NullWebRtcVideoEngine>( | 30 : CompositeMediaEngine<WebRtcVoiceEngine, NullWebRtcVideoEngine>( |
28 adm, | 31 adm, |
| 32 audio_encoder_factory, |
29 audio_decoder_factory, | 33 audio_decoder_factory, |
30 nullptr) { | 34 nullptr) { |
31 video_.SetExternalDecoderFactory(video_decoder_factory); | 35 video_.SetExternalDecoderFactory(video_decoder_factory); |
32 video_.SetExternalEncoderFactory(video_encoder_factory); | 36 video_.SetExternalEncoderFactory(video_encoder_factory); |
33 } | 37 } |
34 }; | 38 }; |
35 | 39 |
36 // Simple test to check if NullWebRtcVideoEngine implements the methods | 40 // Simple test to check if NullWebRtcVideoEngine implements the methods |
37 // required by CompositeMediaEngine. | 41 // required by CompositeMediaEngine. |
38 TEST(NullWebRtcVideoEngineTest, CheckInterface) { | 42 TEST(NullWebRtcVideoEngineTest, CheckInterface) { |
39 WebRtcMediaEngineNullVideo engine( | 43 WebRtcMediaEngineNullVideo engine( |
40 nullptr, webrtc::MockAudioDecoderFactory::CreateUnusedFactory(), nullptr, | 44 nullptr, webrtc::MockAudioEncoderFactory::CreateUnusedFactory(), |
41 nullptr); | 45 webrtc::MockAudioDecoderFactory::CreateUnusedFactory(), nullptr, nullptr); |
42 EXPECT_TRUE(engine.Init()); | 46 EXPECT_TRUE(engine.Init()); |
43 } | 47 } |
44 | 48 |
45 } // namespace cricket | 49 } // namespace cricket |
OLD | NEW |