blob: f6388c3c78de351ff05710846e9a1f645c1c3b34 [file] [log] [blame]
ossuf515ab82016-12-07 12:52:581/*
2 * Copyright (c) 2013 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 */
Mirko Bonadei92ea95e2017-09-15 04:47:3110#ifndef CALL_CALL_H_
11#define CALL_CALL_H_
ossuf515ab82016-12-07 12:52:5812
zsteina5e0df62017-06-14 18:41:4813#include <algorithm>
zstein7cb69d52017-05-08 18:52:3814#include <memory>
ossuf515ab82016-12-07 12:52:5815#include <string>
16#include <vector>
17
Henrik Boströmf4a99912020-06-11 10:07:1418#include "api/adaptation/resource.h"
Steve Anton10542f22019-01-11 17:11:0019#include "api/media_types.h"
Tomas Gunnarssone984aa22021-04-19 07:21:0620#include "api/task_queue/task_queue_base.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3121#include "call/audio_receive_stream.h"
22#include "call/audio_send_stream.h"
Paulina Hensman11b34f42018-04-09 12:24:5223#include "call/call_config.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3124#include "call/flexfec_receive_stream.h"
Niels Möller70082872018-08-07 09:03:1225#include "call/packet_receiver.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3126#include "call/rtp_transport_controller_send_interface.h"
27#include "call/video_receive_stream.h"
28#include "call/video_send_stream.h"
Sebastian Jansson896b47c2019-03-01 17:48:1629#include "modules/utility/include/process_thread.h"
Steve Anton10542f22019-01-11 17:11:0030#include "rtc_base/copy_on_write_buffer.h"
Sebastian Jansson12985412018-10-15 19:06:2631#include "rtc_base/network/sent_packet.h"
Steve Anton10542f22019-01-11 17:11:0032#include "rtc_base/network_route.h"
Tommi25c77c12020-05-25 15:44:5533#include "rtc_base/ref_count.h"
ossuf515ab82016-12-07 12:52:5834
35namespace webrtc {
36
Tommi25c77c12020-05-25 15:44:5537// A restricted way to share the module process thread across multiple instances
38// of Call that are constructed on the same worker thread (which is what the
39// peer connection factory guarantees).
40// SharedModuleThread supports a callback that is issued when only one reference
41// remains, which is used to indicate to the original owner that the thread may
42// be discarded.
43class SharedModuleThread : public rtc::RefCountInterface {
44 protected:
45 SharedModuleThread(std::unique_ptr<ProcessThread> process_thread,
46 std::function<void()> on_one_ref_remaining);
47 friend class rtc::scoped_refptr<SharedModuleThread>;
48 ~SharedModuleThread() override;
49
50 public:
Tommi25c77c12020-05-25 15:44:5551 // Allows injection of an externally created process thread.
52 static rtc::scoped_refptr<SharedModuleThread> Create(
53 std::unique_ptr<ProcessThread> process_thread,
54 std::function<void()> on_one_ref_remaining);
55
56 void EnsureStarted();
57
58 ProcessThread* process_thread();
59
60 private:
61 void AddRef() const override;
62 rtc::RefCountReleaseStatus Release() const override;
63
64 class Impl;
65 mutable std::unique_ptr<Impl> impl_;
66};
67
ossuf515ab82016-12-07 12:52:5868// A Call instance can contain several send and/or receive streams. All streams
69// are assumed to have the same remote endpoint and will share bitrate estimates
70// etc.
71class Call {
72 public:
Niels Möller8366e172018-02-14 11:20:1373 using Config = CallConfig;
ossuf515ab82016-12-07 12:52:5874
75 struct Stats {
76 std::string ToString(int64_t time_ms) const;
77
78 int send_bandwidth_bps = 0; // Estimated available send bandwidth.
79 int max_padding_bitrate_bps = 0; // Cumulative configured max padding.
80 int recv_bandwidth_bps = 0; // Estimated available receive bandwidth.
81 int64_t pacer_delay_ms = 0;
82 int64_t rtt_ms = -1;
83 };
84
85 static Call* Create(const Call::Config& config);
Sebastian Jansson896b47c2019-03-01 17:48:1686 static Call* Create(const Call::Config& config,
Sebastian Jansson4e5f5ed2019-03-01 17:13:2787 Clock* clock,
Tommi25c77c12020-05-25 15:44:5588 rtc::scoped_refptr<SharedModuleThread> call_thread,
Danil Chapovalov359fe332019-04-01 08:46:3689 std::unique_ptr<ProcessThread> pacer_thread);
Vojin Ilic504fc192021-05-31 12:02:2890 static Call* Create(const Call::Config& config,
91 Clock* clock,
92 rtc::scoped_refptr<SharedModuleThread> call_thread,
93 std::unique_ptr<RtpTransportControllerSendInterface>
94 transportControllerSend);
ossuf515ab82016-12-07 12:52:5895
96 virtual AudioSendStream* CreateAudioSendStream(
97 const AudioSendStream::Config& config) = 0;
Piotr (Peter) Slatalacc8e8bb2018-11-15 16:26:1998
ossuf515ab82016-12-07 12:52:5899 virtual void DestroyAudioSendStream(AudioSendStream* send_stream) = 0;
100
101 virtual AudioReceiveStream* CreateAudioReceiveStream(
102 const AudioReceiveStream::Config& config) = 0;
103 virtual void DestroyAudioReceiveStream(
104 AudioReceiveStream* receive_stream) = 0;
105
106 virtual VideoSendStream* CreateVideoSendStream(
107 VideoSendStream::Config config,
108 VideoEncoderConfig encoder_config) = 0;
Ying Wang3b790f32018-01-19 16:58:57109 virtual VideoSendStream* CreateVideoSendStream(
110 VideoSendStream::Config config,
111 VideoEncoderConfig encoder_config,
112 std::unique_ptr<FecController> fec_controller);
ossuf515ab82016-12-07 12:52:58113 virtual void DestroyVideoSendStream(VideoSendStream* send_stream) = 0;
114
115 virtual VideoReceiveStream* CreateVideoReceiveStream(
116 VideoReceiveStream::Config configuration) = 0;
117 virtual void DestroyVideoReceiveStream(
118 VideoReceiveStream* receive_stream) = 0;
119
brandtrfb45c6c2017-01-27 14:47:55120 // In order for a created VideoReceiveStream to be aware that it is
121 // protected by a FlexfecReceiveStream, the latter should be created before
122 // the former.
ossuf515ab82016-12-07 12:52:58123 virtual FlexfecReceiveStream* CreateFlexfecReceiveStream(
brandtr446fcb62016-12-08 12:14:24124 const FlexfecReceiveStream::Config& config) = 0;
ossuf515ab82016-12-07 12:52:58125 virtual void DestroyFlexfecReceiveStream(
126 FlexfecReceiveStream* receive_stream) = 0;
127
Henrik Boströmf4a99912020-06-11 10:07:14128 // When a resource is overused, the Call will try to reduce the load on the
129 // sysem, for example by reducing the resolution or frame rate of encoded
130 // streams.
131 virtual void AddAdaptationResource(rtc::scoped_refptr<Resource> resource) = 0;
132
ossuf515ab82016-12-07 12:52:58133 // All received RTP and RTCP packets for the call should be inserted to this
134 // PacketReceiver. The PacketReceiver pointer is valid as long as the
135 // Call instance exists.
136 virtual PacketReceiver* Receiver() = 0;
137
Sebastian Jansson8f83b422018-02-21 12:07:13138 // This is used to access the transport controller send instance owned by
139 // Call. The send transport controller is currently owned by Call for legacy
140 // reasons. (for instance variants of call tests are built on this assumtion)
141 // TODO(srte): Move ownership of transport controller send out of Call and
142 // remove this method interface.
143 virtual RtpTransportControllerSendInterface* GetTransportControllerSend() = 0;
144
ossuf515ab82016-12-07 12:52:58145 // Returns the call statistics, such as estimated send and receive bandwidth,
146 // pacing delay, etc.
147 virtual Stats GetStats() const = 0;
148
ossuf515ab82016-12-07 12:52:58149 // TODO(skvlad): When the unbundled case with multiple streams for the same
150 // media type going over different networks is supported, track the state
151 // for each stream separately. Right now it's global per media type.
152 virtual void SignalChannelNetworkState(MediaType media,
153 NetworkState state) = 0;
154
Stefan Holmer64be7fa2018-10-04 13:21:55155 virtual void OnAudioTransportOverheadChanged(
ossuf515ab82016-12-07 12:52:58156 int transport_overhead_per_packet) = 0;
157
Tommi08be9ba2021-06-15 21:01:57158 // Called when a receive stream's local ssrc has changed and association with
159 // send streams needs to be updated.
160 virtual void OnLocalSsrcUpdated(AudioReceiveStream& stream,
161 uint32_t local_ssrc) = 0;
162
Tommi55107c82021-06-16 14:31:18163 virtual void OnUpdateSyncGroup(AudioReceiveStream& stream,
164 const std::string& sync_group) = 0;
165
ossuf515ab82016-12-07 12:52:58166 virtual void OnSentPacket(const rtc::SentPacket& sent_packet) = 0;
167
Piotr (Peter) Slatala7fbfaa42019-03-18 17:31:54168 virtual void SetClientBitratePreferences(
169 const BitrateSettings& preferences) = 0;
170
Erik Språngceb44952020-09-22 09:36:35171 virtual const WebRtcKeyValueConfig& trials() const = 0;
172
Tomas Gunnarssone984aa22021-04-19 07:21:06173 virtual TaskQueueBase* network_thread() const = 0;
174 virtual TaskQueueBase* worker_thread() const = 0;
175
ossuf515ab82016-12-07 12:52:58176 virtual ~Call() {}
177};
178
179} // namespace webrtc
180
Mirko Bonadei92ea95e2017-09-15 04:47:31181#endif // CALL_CALL_H_