Stefan Holmer | dbdb3a0 | 2018-07-17 14:03:46 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 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 | |
Stefan Holmer | 9416ef8 | 2018-07-19 08:34:38 | [diff] [blame] | 11 | #ifndef CALL_RTP_VIDEO_SENDER_INTERFACE_H_ |
| 12 | #define CALL_RTP_VIDEO_SENDER_INTERFACE_H_ |
Stefan Holmer | dbdb3a0 | 2018-07-17 14:03:46 | [diff] [blame] | 13 | |
| 14 | #include <map> |
| 15 | #include <vector> |
| 16 | |
Elad Alon | 8b60e8b | 2019-04-08 12:14:05 | [diff] [blame] | 17 | #include "absl/types/optional.h" |
Elad Alon | 898395d | 2019-04-10 13:55:00 | [diff] [blame] | 18 | #include "api/array_view.h" |
Elad Alon | 8f01c4e | 2019-06-28 13:19:43 | [diff] [blame] | 19 | #include "api/fec_controller_override.h" |
Stefan Holmer | dbdb3a0 | 2018-07-17 14:03:46 | [diff] [blame] | 20 | #include "call/rtp_config.h" |
| 21 | #include "modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
Elad Alon | 8b60e8b | 2019-04-08 12:14:05 | [diff] [blame] | 22 | #include "modules/rtp_rtcp/source/rtp_sequence_number_map.h" |
Stefan Holmer | dbdb3a0 | 2018-07-17 14:03:46 | [diff] [blame] | 23 | #include "modules/utility/include/process_thread.h" |
| 24 | #include "modules/video_coding/include/video_codec_interface.h" |
| 25 | |
| 26 | namespace webrtc { |
| 27 | class VideoBitrateAllocation; |
| 28 | struct FecProtectionParams; |
| 29 | |
Elad Alon | 8f01c4e | 2019-06-28 13:19:43 | [diff] [blame] | 30 | class RtpVideoSenderInterface : public EncodedImageCallback, |
| 31 | public FecControllerOverride { |
Stefan Holmer | dbdb3a0 | 2018-07-17 14:03:46 | [diff] [blame] | 32 | public: |
| 33 | virtual void RegisterProcessThread(ProcessThread* module_process_thread) = 0; |
| 34 | virtual void DeRegisterProcessThread() = 0; |
| 35 | |
Stefan Holmer | 9416ef8 | 2018-07-19 08:34:38 | [diff] [blame] | 36 | // RtpVideoSender will only route packets if being active, all |
| 37 | // packets will be dropped otherwise. |
Stefan Holmer | dbdb3a0 | 2018-07-17 14:03:46 | [diff] [blame] | 38 | virtual void SetActive(bool active) = 0; |
| 39 | // Sets the sending status of the rtp modules and appropriately sets the |
Stefan Holmer | 9416ef8 | 2018-07-19 08:34:38 | [diff] [blame] | 40 | // RtpVideoSender to active if any rtp modules are active. |
Stefan Holmer | dbdb3a0 | 2018-07-17 14:03:46 | [diff] [blame] | 41 | virtual void SetActiveModules(const std::vector<bool> active_modules) = 0; |
| 42 | virtual bool IsActive() = 0; |
| 43 | |
| 44 | virtual void OnNetworkAvailability(bool network_available) = 0; |
| 45 | virtual std::map<uint32_t, RtpState> GetRtpStates() const = 0; |
| 46 | virtual std::map<uint32_t, RtpPayloadState> GetRtpPayloadStates() const = 0; |
| 47 | |
Stefan Holmer | dbdb3a0 | 2018-07-17 14:03:46 | [diff] [blame] | 48 | virtual void DeliverRtcp(const uint8_t* packet, size_t length) = 0; |
| 49 | |
Stefan Holmer | dbdb3a0 | 2018-07-17 14:03:46 | [diff] [blame] | 50 | virtual void OnBitrateAllocationUpdated( |
| 51 | const VideoBitrateAllocation& bitrate) = 0; |
Stefan Holmer | 64be7fa | 2018-10-04 13:21:55 | [diff] [blame] | 52 | virtual void OnBitrateUpdated(uint32_t bitrate_bps, |
| 53 | uint8_t fraction_loss, |
| 54 | int64_t rtt, |
| 55 | int framerate) = 0; |
| 56 | virtual void OnTransportOverheadChanged( |
| 57 | size_t transport_overhead_bytes_per_packet) = 0; |
| 58 | virtual uint32_t GetPayloadBitrateBps() const = 0; |
| 59 | virtual uint32_t GetProtectionBitrateBps() const = 0; |
| 60 | virtual void SetEncodingData(size_t width, |
| 61 | size_t height, |
| 62 | size_t num_temporal_layers) = 0; |
Elad Alon | 898395d | 2019-04-10 13:55:00 | [diff] [blame] | 63 | virtual std::vector<RtpSequenceNumberMap::Info> GetSentRtpPacketInfos( |
Elad Alon | 8b60e8b | 2019-04-08 12:14:05 | [diff] [blame] | 64 | uint32_t ssrc, |
Elad Alon | 898395d | 2019-04-10 13:55:00 | [diff] [blame] | 65 | rtc::ArrayView<const uint16_t> sequence_numbers) const = 0; |
Elad Alon | 8f01c4e | 2019-06-28 13:19:43 | [diff] [blame] | 66 | |
| 67 | // Implements FecControllerOverride. |
| 68 | void SetFecAllowed(bool fec_allowed) override = 0; |
Stefan Holmer | dbdb3a0 | 2018-07-17 14:03:46 | [diff] [blame] | 69 | }; |
| 70 | } // namespace webrtc |
Stefan Holmer | 9416ef8 | 2018-07-19 08:34:38 | [diff] [blame] | 71 | #endif // CALL_RTP_VIDEO_SENDER_INTERFACE_H_ |