Niels Möller | 530ead4 | 2018-10-04 14:28:39 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2012 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 AUDIO_CHANNEL_SEND_H_ |
| 12 | #define AUDIO_CHANNEL_SEND_H_ |
| 13 | |
Niels Möller | 530ead4 | 2018-10-04 14:28:39 +0200 | [diff] [blame] | 14 | #include <memory> |
| 15 | #include <string> |
| 16 | #include <vector> |
| 17 | |
| 18 | #include "api/audio/audio_frame.h" |
| 19 | #include "api/audio_codecs/audio_encoder.h" |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 20 | #include "api/crypto/crypto_options.h" |
Artem Titov | 741daaf | 2019-03-21 14:37:36 +0100 | [diff] [blame] | 21 | #include "api/function_view.h" |
Niels Möller | 7d76a31 | 2018-10-26 12:57:07 +0200 | [diff] [blame] | 22 | #include "api/media_transport_interface.h" |
Sebastian Jansson | 44dd9f2 | 2019-03-08 14:50:30 +0100 | [diff] [blame] | 23 | #include "api/task_queue/task_queue_factory.h" |
Niels Möller | 530ead4 | 2018-10-04 14:28:39 +0200 | [diff] [blame] | 24 | #include "modules/rtp_rtcp/include/rtp_rtcp.h" |
Niels Möller | ee5ccbc | 2019-03-06 16:47:29 +0100 | [diff] [blame] | 25 | #include "modules/rtp_rtcp/source/rtp_sender_audio.h" |
Niels Möller | 530ead4 | 2018-10-04 14:28:39 +0200 | [diff] [blame] | 26 | |
| 27 | namespace webrtc { |
| 28 | |
Benjamin Wright | 84583f6 | 2018-10-04 14:22:34 -0700 | [diff] [blame] | 29 | class FrameEncryptorInterface; |
Niels Möller | 530ead4 | 2018-10-04 14:28:39 +0200 | [diff] [blame] | 30 | class ProcessThread; |
Niels Möller | 530ead4 | 2018-10-04 14:28:39 +0200 | [diff] [blame] | 31 | class RtcEventLog; |
| 32 | class RtpRtcp; |
| 33 | class RtpTransportControllerSendInterface; |
| 34 | |
Niels Möller | 530ead4 | 2018-10-04 14:28:39 +0200 | [diff] [blame] | 35 | struct CallSendStatistics { |
| 36 | int64_t rttMs; |
| 37 | size_t bytesSent; |
Henrik Boström | cf96e0f | 2019-04-17 13:51:53 +0200 | [diff] [blame] | 38 | // https://w3c.github.io/webrtc-stats/#dom-rtcoutboundrtpstreamstats-retransmittedbytessent |
| 39 | uint64_t retransmitted_bytes_sent; |
Niels Möller | 530ead4 | 2018-10-04 14:28:39 +0200 | [diff] [blame] | 40 | int packetsSent; |
Henrik Boström | cf96e0f | 2019-04-17 13:51:53 +0200 | [diff] [blame] | 41 | // https://w3c.github.io/webrtc-stats/#dom-rtcoutboundrtpstreamstats-retransmittedpacketssent |
| 42 | uint64_t retransmitted_packets_sent; |
Niels Möller | 530ead4 | 2018-10-04 14:28:39 +0200 | [diff] [blame] | 43 | }; |
| 44 | |
| 45 | // See section 6.4.2 in http://www.ietf.org/rfc/rfc3550.txt for details. |
| 46 | struct ReportBlock { |
| 47 | uint32_t sender_SSRC; // SSRC of sender |
| 48 | uint32_t source_SSRC; |
| 49 | uint8_t fraction_lost; |
| 50 | int32_t cumulative_num_packets_lost; |
| 51 | uint32_t extended_highest_sequence_number; |
| 52 | uint32_t interarrival_jitter; |
| 53 | uint32_t last_SR_timestamp; |
| 54 | uint32_t delay_since_last_SR; |
| 55 | }; |
| 56 | |
| 57 | namespace voe { |
| 58 | |
Niels Möller | dced9f6 | 2018-11-19 10:27:07 +0100 | [diff] [blame] | 59 | class ChannelSendInterface { |
Niels Möller | 530ead4 | 2018-10-04 14:28:39 +0200 | [diff] [blame] | 60 | public: |
Niels Möller | dced9f6 | 2018-11-19 10:27:07 +0100 | [diff] [blame] | 61 | virtual ~ChannelSendInterface() = default; |
Niels Möller | 530ead4 | 2018-10-04 14:28:39 +0200 | [diff] [blame] | 62 | |
Niels Möller | 8fb1a6a | 2019-03-05 14:29:42 +0100 | [diff] [blame] | 63 | virtual void ReceivedRTCPPacket(const uint8_t* packet, size_t length) = 0; |
Niels Möller | 530ead4 | 2018-10-04 14:28:39 +0200 | [diff] [blame] | 64 | |
Niels Möller | dced9f6 | 2018-11-19 10:27:07 +0100 | [diff] [blame] | 65 | virtual CallSendStatistics GetRTCPStatistics() const = 0; |
Niels Möller | 530ead4 | 2018-10-04 14:28:39 +0200 | [diff] [blame] | 66 | |
Niels Möller | 8fb1a6a | 2019-03-05 14:29:42 +0100 | [diff] [blame] | 67 | virtual void SetEncoder(int payload_type, |
Niels Möller | dced9f6 | 2018-11-19 10:27:07 +0100 | [diff] [blame] | 68 | std::unique_ptr<AudioEncoder> encoder) = 0; |
| 69 | virtual void ModifyEncoder( |
| 70 | rtc::FunctionView<void(std::unique_ptr<AudioEncoder>*)> modifier) = 0; |
Sebastian Jansson | 14a7cf9 | 2019-02-13 15:11:42 +0100 | [diff] [blame] | 71 | virtual void CallEncoder(rtc::FunctionView<void(AudioEncoder*)> modifier) = 0; |
Niels Möller | 530ead4 | 2018-10-04 14:28:39 +0200 | [diff] [blame] | 72 | |
Niels Möller | dced9f6 | 2018-11-19 10:27:07 +0100 | [diff] [blame] | 73 | virtual void SetLocalSSRC(uint32_t ssrc) = 0; |
Amit Hilbuch | 77938e6 | 2018-12-21 09:23:38 -0800 | [diff] [blame] | 74 | // Use 0 to indicate that the extension should not be registered. |
| 75 | virtual void SetRid(const std::string& rid, |
| 76 | int extension_id, |
| 77 | int repaired_extension_id) = 0; |
Niels Möller | dced9f6 | 2018-11-19 10:27:07 +0100 | [diff] [blame] | 78 | virtual void SetMid(const std::string& mid, int extension_id) = 0; |
| 79 | virtual void SetRTCP_CNAME(absl::string_view c_name) = 0; |
| 80 | virtual void SetExtmapAllowMixed(bool extmap_allow_mixed) = 0; |
| 81 | virtual void SetSendAudioLevelIndicationStatus(bool enable, int id) = 0; |
| 82 | virtual void EnableSendTransportSequenceNumber(int id) = 0; |
| 83 | virtual void RegisterSenderCongestionControlObjects( |
Niels Möller | 530ead4 | 2018-10-04 14:28:39 +0200 | [diff] [blame] | 84 | RtpTransportControllerSendInterface* transport, |
Niels Möller | dced9f6 | 2018-11-19 10:27:07 +0100 | [diff] [blame] | 85 | RtcpBandwidthObserver* bandwidth_observer) = 0; |
| 86 | virtual void ResetSenderCongestionControlObjects() = 0; |
| 87 | virtual std::vector<ReportBlock> GetRemoteRTCPReportBlocks() const = 0; |
| 88 | virtual ANAStats GetANAStatistics() const = 0; |
Niels Möller | ee5ccbc | 2019-03-06 16:47:29 +0100 | [diff] [blame] | 89 | virtual void RegisterCngPayloadType(int payload_type, |
| 90 | int payload_frequency) = 0; |
Niels Möller | 8fb1a6a | 2019-03-05 14:29:42 +0100 | [diff] [blame] | 91 | virtual void SetSendTelephoneEventPayloadType(int payload_type, |
Niels Möller | dced9f6 | 2018-11-19 10:27:07 +0100 | [diff] [blame] | 92 | int payload_frequency) = 0; |
| 93 | virtual bool SendTelephoneEventOutband(int event, int duration_ms) = 0; |
Sebastian Jansson | 254d869 | 2018-11-21 19:19:00 +0100 | [diff] [blame] | 94 | virtual void OnBitrateAllocation(BitrateAllocationUpdate update) = 0; |
Niels Möller | dced9f6 | 2018-11-19 10:27:07 +0100 | [diff] [blame] | 95 | virtual int GetBitrate() const = 0; |
| 96 | virtual void SetInputMute(bool muted) = 0; |
Niels Möller | 530ead4 | 2018-10-04 14:28:39 +0200 | [diff] [blame] | 97 | |
Niels Möller | dced9f6 | 2018-11-19 10:27:07 +0100 | [diff] [blame] | 98 | virtual void ProcessAndEncodeAudio( |
| 99 | std::unique_ptr<AudioFrame> audio_frame) = 0; |
Niels Möller | dced9f6 | 2018-11-19 10:27:07 +0100 | [diff] [blame] | 100 | virtual RtpRtcp* GetRtpRtcp() const = 0; |
Niels Möller | 530ead4 | 2018-10-04 14:28:39 +0200 | [diff] [blame] | 101 | |
Niels Möller | dced9f6 | 2018-11-19 10:27:07 +0100 | [diff] [blame] | 102 | virtual void OnTwccBasedUplinkPacketLossRate(float packet_loss_rate) = 0; |
| 103 | virtual void OnRecoverableUplinkPacketLossRate( |
| 104 | float recoverable_packet_loss_rate) = 0; |
Piotr (Peter) Slatala | 179a392 | 2018-11-16 09:57:58 -0800 | [diff] [blame] | 105 | // In RTP we currently rely on RTCP packets (|ReceivedRTCPPacket|) to inform |
| 106 | // about RTT. |
| 107 | // In media transport we rely on the TargetTransferRateObserver instead. |
| 108 | // In other words, if you are using RTP, you should expect |
| 109 | // |ReceivedRTCPPacket| to be called, if you are using media transport, |
| 110 | // |OnTargetTransferRate| will be called. |
| 111 | // |
| 112 | // In future, RTP media will move to the media transport implementation and |
| 113 | // these conditions will be removed. |
Niels Möller | dced9f6 | 2018-11-19 10:27:07 +0100 | [diff] [blame] | 114 | // Returns the RTT in milliseconds. |
| 115 | virtual int64_t GetRTT() const = 0; |
| 116 | virtual void StartSend() = 0; |
| 117 | virtual void StopSend() = 0; |
Piotr (Peter) Slatala | 179a392 | 2018-11-16 09:57:58 -0800 | [diff] [blame] | 118 | |
Niels Möller | dced9f6 | 2018-11-19 10:27:07 +0100 | [diff] [blame] | 119 | // E2EE Custom Audio Frame Encryption (Optional) |
| 120 | virtual void SetFrameEncryptor( |
| 121 | rtc::scoped_refptr<FrameEncryptorInterface> frame_encryptor) = 0; |
Niels Möller | 530ead4 | 2018-10-04 14:28:39 +0200 | [diff] [blame] | 122 | }; |
| 123 | |
Niels Möller | dced9f6 | 2018-11-19 10:27:07 +0100 | [diff] [blame] | 124 | std::unique_ptr<ChannelSendInterface> CreateChannelSend( |
Sebastian Jansson | 977b335 | 2019-03-04 17:43:34 +0100 | [diff] [blame] | 125 | Clock* clock, |
Sebastian Jansson | 44dd9f2 | 2019-03-08 14:50:30 +0100 | [diff] [blame] | 126 | TaskQueueFactory* task_queue_factory, |
Niels Möller | dced9f6 | 2018-11-19 10:27:07 +0100 | [diff] [blame] | 127 | ProcessThread* module_process_thread, |
| 128 | MediaTransportInterface* media_transport, |
Anton Sukhanov | 626015d | 2019-02-04 15:16:06 -0800 | [diff] [blame] | 129 | OverheadObserver* overhead_observer, |
Niels Möller | e977199 | 2018-11-26 10:55:07 +0100 | [diff] [blame] | 130 | Transport* rtp_transport, |
Niels Möller | dced9f6 | 2018-11-19 10:27:07 +0100 | [diff] [blame] | 131 | RtcpRttStats* rtcp_rtt_stats, |
| 132 | RtcEventLog* rtc_event_log, |
| 133 | FrameEncryptorInterface* frame_encryptor, |
| 134 | const webrtc::CryptoOptions& crypto_options, |
| 135 | bool extmap_allow_mixed, |
| 136 | int rtcp_report_interval_ms); |
| 137 | |
Niels Möller | 530ead4 | 2018-10-04 14:28:39 +0200 | [diff] [blame] | 138 | } // namespace voe |
| 139 | } // namespace webrtc |
| 140 | |
| 141 | #endif // AUDIO_CHANNEL_SEND_H_ |