OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2008 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2008 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 <memory> | 11 #include <memory> |
12 | 12 |
13 #include "webrtc/pc/channel.h" | 13 #include "webrtc/pc/channel.h" |
14 #include "webrtc/base/arraysize.h" | 14 #include "webrtc/base/arraysize.h" |
15 #include "webrtc/base/byteorder.h" | 15 #include "webrtc/base/byteorder.h" |
16 #include "webrtc/base/gunit.h" | 16 #include "webrtc/base/gunit.h" |
17 #include "webrtc/call/call.h" | 17 #include "webrtc/call/call.h" |
18 #include "webrtc/p2p/base/faketransportcontroller.h" | |
19 #include "webrtc/test/field_trial.h" | 18 #include "webrtc/test/field_trial.h" |
20 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" | 19 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" |
21 #include "webrtc/media/base/fakemediaengine.h" | 20 #include "webrtc/media/base/fakemediaengine.h" |
22 #include "webrtc/media/base/fakenetworkinterface.h" | 21 #include "webrtc/media/base/fakenetworkinterface.h" |
23 #include "webrtc/media/base/fakertp.h" | 22 #include "webrtc/media/base/fakertp.h" |
24 #include "webrtc/media/base/mediaconstants.h" | 23 #include "webrtc/media/base/mediaconstants.h" |
25 #include "webrtc/media/engine/fakewebrtccall.h" | 24 #include "webrtc/media/engine/fakewebrtccall.h" |
26 #include "webrtc/media/engine/fakewebrtcvoiceengine.h" | 25 #include "webrtc/media/engine/fakewebrtcvoiceengine.h" |
27 #include "webrtc/media/engine/webrtcvoiceengine.h" | 26 #include "webrtc/media/engine/webrtcvoiceengine.h" |
28 #include "webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory.h" | 27 #include "webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory.h" |
(...skipping 3645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3674 nullptr, webrtc::CreateBuiltinAudioDecoderFactory(), nullptr); | 3673 nullptr, webrtc::CreateBuiltinAudioDecoderFactory(), nullptr); |
3675 webrtc::RtcEventLogNullImpl event_log; | 3674 webrtc::RtcEventLogNullImpl event_log; |
3676 std::unique_ptr<webrtc::Call> call( | 3675 std::unique_ptr<webrtc::Call> call( |
3677 webrtc::Call::Create(webrtc::Call::Config(&event_log))); | 3676 webrtc::Call::Create(webrtc::Call::Config(&event_log))); |
3678 cricket::WebRtcVoiceMediaChannel channel(&engine, cricket::MediaConfig(), | 3677 cricket::WebRtcVoiceMediaChannel channel(&engine, cricket::MediaConfig(), |
3679 cricket::AudioOptions(), call.get()); | 3678 cricket::AudioOptions(), call.get()); |
3680 cricket::AudioRecvParameters parameters; | 3679 cricket::AudioRecvParameters parameters; |
3681 parameters.codecs = engine.recv_codecs(); | 3680 parameters.codecs = engine.recv_codecs(); |
3682 EXPECT_TRUE(channel.SetRecvParameters(parameters)); | 3681 EXPECT_TRUE(channel.SetRecvParameters(parameters)); |
3683 } | 3682 } |
OLD | NEW |