Fredrik Solenberg | 04f4931 | 2015-06-08 13:04:56 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 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 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #ifndef CALL_AUDIO_SEND_STREAM_H_ |
| 12 | #define CALL_AUDIO_SEND_STREAM_H_ |
Fredrik Solenberg | 04f4931 | 2015-06-08 13:04:56 +0200 | [diff] [blame] | 13 | |
kwiberg | bfefb03 | 2016-05-01 14:53:46 -0700 | [diff] [blame] | 14 | #include <memory> |
Fredrik Solenberg | 04f4931 | 2015-06-08 13:04:56 +0200 | [diff] [blame] | 15 | #include <string> |
| 16 | #include <vector> |
| 17 | |
Danil Chapovalov | b9b146c | 2018-06-15 12:28:07 +0200 | [diff] [blame] | 18 | #include "absl/types/optional.h" |
Karl Wiberg | 77490b9 | 2018-03-21 15:18:42 +0100 | [diff] [blame] | 19 | #include "api/audio_codecs/audio_codec_pair_id.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 20 | #include "api/audio_codecs/audio_encoder.h" |
| 21 | #include "api/audio_codecs/audio_encoder_factory.h" |
| 22 | #include "api/audio_codecs/audio_format.h" |
| 23 | #include "api/call/transport.h" |
Benjamin Wright | bfb444c | 2018-10-15 10:20:24 -0700 | [diff] [blame^] | 24 | #include "api/crypto/cryptooptions.h" |
Benjamin Wright | 84583f6 | 2018-10-04 14:22:34 -0700 | [diff] [blame] | 25 | #include "api/crypto/frameencryptorinterface.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 26 | #include "api/rtpparameters.h" |
| 27 | #include "call/rtp_config.h" |
Ivo Creusen | 56d4609 | 2017-11-24 17:29:59 +0100 | [diff] [blame] | 28 | #include "modules/audio_processing/include/audio_processing_statistics.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 29 | #include "rtc_base/scoped_ref_ptr.h" |
Fredrik Solenberg | 04f4931 | 2015-06-08 13:04:56 +0200 | [diff] [blame] | 30 | |
| 31 | namespace webrtc { |
| 32 | |
Fredrik Solenberg | 2a87797 | 2017-12-15 16:42:15 +0100 | [diff] [blame] | 33 | class AudioFrame; |
| 34 | |
pbos | 1ba8d39 | 2016-05-01 20:18:34 -0700 | [diff] [blame] | 35 | class AudioSendStream { |
Fredrik Solenberg | 04f4931 | 2015-06-08 13:04:56 +0200 | [diff] [blame] | 36 | public: |
solenberg | 85a0496 | 2015-10-27 03:35:21 -0700 | [diff] [blame] | 37 | struct Stats { |
solenberg | 940b6d6 | 2016-10-25 11:19:07 -0700 | [diff] [blame] | 38 | Stats(); |
hbos | 1acfbd2 | 2016-11-17 23:43:29 -0800 | [diff] [blame] | 39 | ~Stats(); |
solenberg | 940b6d6 | 2016-10-25 11:19:07 -0700 | [diff] [blame] | 40 | |
solenberg | 85a0496 | 2015-10-27 03:35:21 -0700 | [diff] [blame] | 41 | // TODO(solenberg): Harmonize naming and defaults with receive stream stats. |
| 42 | uint32_t local_ssrc = 0; |
| 43 | int64_t bytes_sent = 0; |
| 44 | int32_t packets_sent = 0; |
| 45 | int32_t packets_lost = -1; |
| 46 | float fraction_lost = -1.0f; |
| 47 | std::string codec_name; |
Danil Chapovalov | b9b146c | 2018-06-15 12:28:07 +0200 | [diff] [blame] | 48 | absl::optional<int> codec_payload_type; |
solenberg | 85a0496 | 2015-10-27 03:35:21 -0700 | [diff] [blame] | 49 | int32_t ext_seqnum = -1; |
| 50 | int32_t jitter_ms = -1; |
| 51 | int64_t rtt_ms = -1; |
| 52 | int32_t audio_level = -1; |
zstein | e76bd3a | 2017-07-14 12:17:49 -0700 | [diff] [blame] | 53 | // See description of "totalAudioEnergy" in the WebRTC stats spec: |
| 54 | // https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-totalaudioenergy |
| 55 | double total_input_energy = 0.0; |
| 56 | double total_input_duration = 0.0; |
solenberg | 85a0496 | 2015-10-27 03:35:21 -0700 | [diff] [blame] | 57 | bool typing_noise_detected = false; |
Ivo Creusen | 56d4609 | 2017-11-24 17:29:59 +0100 | [diff] [blame] | 58 | |
ivoc | e1198e0 | 2017-09-08 08:13:19 -0700 | [diff] [blame] | 59 | ANAStats ana_statistics; |
Ivo Creusen | 56d4609 | 2017-11-24 17:29:59 +0100 | [diff] [blame] | 60 | AudioProcessingStats apm_statistics; |
solenberg | 85a0496 | 2015-10-27 03:35:21 -0700 | [diff] [blame] | 61 | }; |
Fredrik Solenberg | 04f4931 | 2015-06-08 13:04:56 +0200 | [diff] [blame] | 62 | |
| 63 | struct Config { |
solenberg | 4fbae2b | 2015-08-28 04:07:10 -0700 | [diff] [blame] | 64 | Config() = delete; |
solenberg | 940b6d6 | 2016-10-25 11:19:07 -0700 | [diff] [blame] | 65 | explicit Config(Transport* send_transport); |
minyue | 6b825df | 2016-10-31 04:08:32 -0700 | [diff] [blame] | 66 | ~Config(); |
Fredrik Solenberg | 04f4931 | 2015-06-08 13:04:56 +0200 | [diff] [blame] | 67 | std::string ToString() const; |
| 68 | |
solenberg | 971cab0 | 2016-06-14 10:02:41 -0700 | [diff] [blame] | 69 | // Send-stream specific RTP settings. |
Fredrik Solenberg | 04f4931 | 2015-06-08 13:04:56 +0200 | [diff] [blame] | 70 | struct Rtp { |
solenberg | 940b6d6 | 2016-10-25 11:19:07 -0700 | [diff] [blame] | 71 | Rtp(); |
| 72 | ~Rtp(); |
Fredrik Solenberg | 04f4931 | 2015-06-08 13:04:56 +0200 | [diff] [blame] | 73 | std::string ToString() const; |
| 74 | |
| 75 | // Sender SSRC. |
| 76 | uint32_t ssrc = 0; |
| 77 | |
Steve Anton | bb50ce5 | 2018-03-26 10:24:32 -0700 | [diff] [blame] | 78 | // The value to send in the MID RTP header extension if the extension is |
| 79 | // included in the list of extensions. |
| 80 | std::string mid; |
| 81 | |
Stefan Holmer | b86d4e4 | 2015-12-07 10:26:18 +0100 | [diff] [blame] | 82 | // RTP header extensions used for the sent stream. |
Fredrik Solenberg | 04f4931 | 2015-06-08 13:04:56 +0200 | [diff] [blame] | 83 | std::vector<RtpExtension> extensions; |
solenberg | 3a94154 | 2015-11-16 07:34:50 -0800 | [diff] [blame] | 84 | |
solenberg | 971cab0 | 2016-06-14 10:02:41 -0700 | [diff] [blame] | 85 | // See NackConfig for description. |
| 86 | NackConfig nack; |
| 87 | |
solenberg | 3a94154 | 2015-11-16 07:34:50 -0800 | [diff] [blame] | 88 | // RTCP CNAME, see RFC 3550. |
| 89 | std::string c_name; |
Fredrik Solenberg | 04f4931 | 2015-06-08 13:04:56 +0200 | [diff] [blame] | 90 | } rtp; |
| 91 | |
solenberg | c7a8b08 | 2015-10-16 14:35:07 -0700 | [diff] [blame] | 92 | // Transport for outgoing packets. The transport is expected to exist for |
| 93 | // the entire life of the AudioSendStream and is owned by the API client. |
pbos | 2d56668 | 2015-09-28 09:59:31 -0700 | [diff] [blame] | 94 | Transport* send_transport = nullptr; |
solenberg | 4fbae2b | 2015-08-28 04:07:10 -0700 | [diff] [blame] | 95 | |
mflodman | 86cc6ff | 2016-07-26 04:44:06 -0700 | [diff] [blame] | 96 | // Bitrate limits used for variable audio bitrate streams. Set both to -1 to |
| 97 | // disable audio bitrate adaptation. |
| 98 | // Note: This is still an experimental feature and not ready for real usage. |
minyue | 10cbb46 | 2016-11-07 09:29:22 -0800 | [diff] [blame] | 99 | int min_bitrate_bps = -1; |
| 100 | int max_bitrate_bps = -1; |
minyue | 7a97344 | 2016-10-20 03:27:12 -0700 | [diff] [blame] | 101 | |
Seth Hampson | 24722b3 | 2017-12-22 09:36:42 -0800 | [diff] [blame] | 102 | double bitrate_priority = 1.0; |
| 103 | |
minyue | 6b825df | 2016-10-31 04:08:32 -0700 | [diff] [blame] | 104 | // Defines whether to turn on audio network adaptor, and defines its config |
| 105 | // string. |
Danil Chapovalov | b9b146c | 2018-06-15 12:28:07 +0200 | [diff] [blame] | 106 | absl::optional<std::string> audio_network_adaptor_config; |
minyue | 6b825df | 2016-10-31 04:08:32 -0700 | [diff] [blame] | 107 | |
minyue | 7a97344 | 2016-10-20 03:27:12 -0700 | [diff] [blame] | 108 | struct SendCodecSpec { |
ossu | 20a4b3f | 2017-04-27 02:08:52 -0700 | [diff] [blame] | 109 | SendCodecSpec(int payload_type, const SdpAudioFormat& format); |
| 110 | ~SendCodecSpec(); |
solenberg | 940b6d6 | 2016-10-25 11:19:07 -0700 | [diff] [blame] | 111 | std::string ToString() const; |
| 112 | |
| 113 | bool operator==(const SendCodecSpec& rhs) const; |
minyue | 7a97344 | 2016-10-20 03:27:12 -0700 | [diff] [blame] | 114 | bool operator!=(const SendCodecSpec& rhs) const { |
| 115 | return !(*this == rhs); |
| 116 | } |
| 117 | |
ossu | 20a4b3f | 2017-04-27 02:08:52 -0700 | [diff] [blame] | 118 | int payload_type; |
| 119 | SdpAudioFormat format; |
minyue | 7a97344 | 2016-10-20 03:27:12 -0700 | [diff] [blame] | 120 | bool nack_enabled = false; |
| 121 | bool transport_cc_enabled = false; |
Danil Chapovalov | b9b146c | 2018-06-15 12:28:07 +0200 | [diff] [blame] | 122 | absl::optional<int> cng_payload_type; |
ossu | 20a4b3f | 2017-04-27 02:08:52 -0700 | [diff] [blame] | 123 | // If unset, use the encoder's default target bitrate. |
Danil Chapovalov | b9b146c | 2018-06-15 12:28:07 +0200 | [diff] [blame] | 124 | absl::optional<int> target_bitrate_bps; |
ossu | 20a4b3f | 2017-04-27 02:08:52 -0700 | [diff] [blame] | 125 | }; |
| 126 | |
Danil Chapovalov | b9b146c | 2018-06-15 12:28:07 +0200 | [diff] [blame] | 127 | absl::optional<SendCodecSpec> send_codec_spec; |
ossu | 20a4b3f | 2017-04-27 02:08:52 -0700 | [diff] [blame] | 128 | rtc::scoped_refptr<AudioEncoderFactory> encoder_factory; |
Danil Chapovalov | b9b146c | 2018-06-15 12:28:07 +0200 | [diff] [blame] | 129 | absl::optional<AudioCodecPairId> codec_pair_id; |
Alex Narest | b3944f0 | 2017-10-13 14:56:18 +0200 | [diff] [blame] | 130 | |
| 131 | // Track ID as specified during track creation. |
| 132 | std::string track_id; |
Benjamin Wright | 84583f6 | 2018-10-04 14:22:34 -0700 | [diff] [blame] | 133 | |
Benjamin Wright | bfb444c | 2018-10-15 10:20:24 -0700 | [diff] [blame^] | 134 | // Per PeerConnection crypto options. |
| 135 | webrtc::CryptoOptions crypto_options; |
| 136 | |
Benjamin Wright | 84583f6 | 2018-10-04 14:22:34 -0700 | [diff] [blame] | 137 | // An optional custom frame encryptor that allows the entire frame to be |
| 138 | // encryptor in whatever way the caller choses. This is not required by |
| 139 | // default. |
| 140 | rtc::scoped_refptr<webrtc::FrameEncryptorInterface> frame_encryptor; |
Fredrik Solenberg | 04f4931 | 2015-06-08 13:04:56 +0200 | [diff] [blame] | 141 | }; |
| 142 | |
eladalon | abbc430 | 2017-07-26 02:09:44 -0700 | [diff] [blame] | 143 | virtual ~AudioSendStream() = default; |
| 144 | |
| 145 | virtual const webrtc::AudioSendStream::Config& GetConfig() const = 0; |
| 146 | |
ossu | 20a4b3f | 2017-04-27 02:08:52 -0700 | [diff] [blame] | 147 | // Reconfigure the stream according to the Configuration. |
| 148 | virtual void Reconfigure(const Config& config) = 0; |
| 149 | |
pbos | 1ba8d39 | 2016-05-01 20:18:34 -0700 | [diff] [blame] | 150 | // Starts stream activity. |
| 151 | // When a stream is active, it can receive, process and deliver packets. |
| 152 | virtual void Start() = 0; |
| 153 | // Stops stream activity. |
| 154 | // When a stream is stopped, it can't receive, process or deliver packets. |
| 155 | virtual void Stop() = 0; |
| 156 | |
Fredrik Solenberg | 2a87797 | 2017-12-15 16:42:15 +0100 | [diff] [blame] | 157 | // Encode and send audio. |
| 158 | virtual void SendAudioData( |
| 159 | std::unique_ptr<webrtc::AudioFrame> audio_frame) = 0; |
| 160 | |
Fredrik Solenberg | b572768 | 2015-12-04 15:22:19 +0100 | [diff] [blame] | 161 | // TODO(solenberg): Make payload_type a config property instead. |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 162 | virtual bool SendTelephoneEvent(int payload_type, |
| 163 | int payload_frequency, |
| 164 | int event, |
| 165 | int duration_ms) = 0; |
solenberg | 9421853 | 2016-06-16 10:53:22 -0700 | [diff] [blame] | 166 | |
| 167 | virtual void SetMuted(bool muted) = 0; |
| 168 | |
Fredrik Solenberg | 04f4931 | 2015-06-08 13:04:56 +0200 | [diff] [blame] | 169 | virtual Stats GetStats() const = 0; |
Ivo Creusen | 56d4609 | 2017-11-24 17:29:59 +0100 | [diff] [blame] | 170 | virtual Stats GetStats(bool has_remote_tracks) const = 0; |
Fredrik Solenberg | 04f4931 | 2015-06-08 13:04:56 +0200 | [diff] [blame] | 171 | }; |
| 172 | } // namespace webrtc |
| 173 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 174 | #endif // CALL_AUDIO_SEND_STREAM_H_ |