blob: 40f1276242460738285ae870f9ec01cb84c4e71b [file] [log] [blame]
Mirko Bonadei3cf8f3e2018-11-19 09:17:51 +01001/*
2 * Copyright 2018 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#ifndef API_CREATE_PEERCONNECTION_FACTORY_H_
12#define API_CREATE_PEERCONNECTION_FACTORY_H_
13
Mirko Bonadei2ff3f492018-11-22 09:00:13 +010014#include <memory>
15
16#include "api/audio/audio_mixer.h"
17#include "api/audio_codecs/audio_decoder_factory.h"
18#include "api/audio_codecs/audio_encoder_factory.h"
19#include "api/fec_controller.h"
Steve Anton10542f22019-01-11 09:11:00 -080020#include "api/peer_connection_interface.h"
Mirko Bonadeid9708072019-01-25 20:26:48 +010021#include "api/scoped_refptr.h"
Mirko Bonadei2ff3f492018-11-22 09:00:13 +010022#include "api/transport/network_control.h"
Anders Carlsson01092952018-12-11 15:44:54 +010023#include "rtc_base/deprecation.h"
Mirko Bonadei2ff3f492018-11-22 09:00:13 +010024
Mirko Bonadeic5095e52018-11-26 19:25:05 +010025namespace rtc {
26// TODO(bugs.webrtc.org/9987): Move rtc::Thread to api/ or expose a better
27// type. At the moment, rtc::Thread is not part of api/ so it cannot be
28// included in order to avoid to leak internal types.
29class Thread;
30} // namespace rtc
31
Mirko Bonadei2ff3f492018-11-22 09:00:13 +010032namespace webrtc {
33
34class AudioDeviceModule;
35class AudioProcessing;
Mirko Bonadei2ff3f492018-11-22 09:00:13 +010036
Mirko Bonadei2ff3f492018-11-22 09:00:13 +010037// Create a new instance of PeerConnectionFactoryInterface with optional video
38// codec factories. These video factories represents all video codecs, i.e. no
39// extra internal video codecs will be added.
Mirko Bonadei2ff3f492018-11-22 09:00:13 +010040RTC_EXPORT rtc::scoped_refptr<PeerConnectionFactoryInterface>
41CreatePeerConnectionFactory(
42 rtc::Thread* network_thread,
43 rtc::Thread* worker_thread,
44 rtc::Thread* signaling_thread,
45 rtc::scoped_refptr<AudioDeviceModule> default_adm,
46 rtc::scoped_refptr<AudioEncoderFactory> audio_encoder_factory,
47 rtc::scoped_refptr<AudioDecoderFactory> audio_decoder_factory,
48 std::unique_ptr<VideoEncoderFactory> video_encoder_factory,
49 std::unique_ptr<VideoDecoderFactory> video_decoder_factory,
50 rtc::scoped_refptr<AudioMixer> audio_mixer,
51 rtc::scoped_refptr<AudioProcessing> audio_processing);
52
Mirko Bonadei2ff3f492018-11-22 09:00:13 +010053} // namespace webrtc
Mirko Bonadei3cf8f3e2018-11-19 09:17:51 +010054
55#endif // API_CREATE_PEERCONNECTION_FACTORY_H_