brandtr | c295e00 | 2016-11-03 09:22:33 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016 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 WEBRTC_MODULES_RTP_RTCP_INCLUDE_FLEXFEC_SENDER_H_ |
| 12 | #define WEBRTC_MODULES_RTP_RTCP_INCLUDE_FLEXFEC_SENDER_H_ |
| 13 | |
| 14 | #include <memory> |
| 15 | #include <vector> |
| 16 | |
| 17 | #include "webrtc/base/basictypes.h" |
| 18 | #include "webrtc/base/random.h" |
| 19 | #include "webrtc/base/sequenced_task_checker.h" |
| 20 | #include "webrtc/config.h" |
| 21 | #include "webrtc/modules/include/module_common_types.h" |
| 22 | #include "webrtc/modules/rtp_rtcp/include/flexfec_sender.h" |
| 23 | #include "webrtc/modules/rtp_rtcp/source/rtp_header_extension.h" |
| 24 | #include "webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h" |
| 25 | #include "webrtc/modules/rtp_rtcp/source/ulpfec_generator.h" |
| 26 | #include "webrtc/system_wrappers/include/clock.h" |
| 27 | |
| 28 | namespace webrtc { |
| 29 | |
| 30 | class RtpPacketToSend; |
| 31 | |
| 32 | class FlexfecSender { |
| 33 | public: |
| 34 | FlexfecSender(int payload_type, |
| 35 | uint32_t ssrc, |
| 36 | uint32_t protected_media_ssrc, |
| 37 | const std::vector<RtpExtension>& rtp_header_extensions, |
| 38 | Clock* clock); |
| 39 | ~FlexfecSender(); |
| 40 | |
brandtr | 9dfff29 | 2016-11-14 05:14:50 -0800 | [diff] [blame] | 41 | uint32_t ssrc() const { return ssrc_; } |
| 42 | |
brandtr | c295e00 | 2016-11-03 09:22:33 -0700 | [diff] [blame] | 43 | // Sets the FEC rate, max frames sent before FEC packets are sent, |
| 44 | // and what type of generator matrices are used. |
| 45 | void SetFecParameters(const FecProtectionParams& params); |
| 46 | |
| 47 | // Adds a media packet to the internal buffer. When enough media packets |
| 48 | // have been added, the FEC packets are generated and stored internally. |
| 49 | // These FEC packets are then obtained by calling GetFecPackets(). |
| 50 | // Returns true if the media packet was successfully added. |
| 51 | bool AddRtpPacketAndGenerateFec(const RtpPacketToSend& packet); |
| 52 | |
| 53 | // Returns true if there are generated FEC packets available. |
| 54 | bool FecAvailable() const; |
| 55 | |
| 56 | // Returns generated FlexFEC packets. |
| 57 | std::vector<std::unique_ptr<RtpPacketToSend>> GetFecPackets(); |
| 58 | |
| 59 | // Returns the overhead, per packet, for FlexFEC. |
| 60 | size_t MaxPacketOverhead() const; |
| 61 | |
| 62 | private: |
| 63 | // Utility. |
| 64 | Clock* const clock_; |
| 65 | Random random_ GUARDED_BY(sequence_checker_); |
| 66 | int64_t last_generated_packet_ms_ GUARDED_BY(sequence_checker_); |
| 67 | rtc::SequencedTaskChecker sequence_checker_; |
| 68 | |
| 69 | // Config. |
| 70 | const int payload_type_; |
| 71 | const uint32_t timestamp_offset_; |
| 72 | const uint32_t ssrc_; |
| 73 | const uint32_t protected_media_ssrc_; |
| 74 | // Sequence number of next packet to generate. |
| 75 | uint16_t seq_num_ GUARDED_BY(sequence_checker_); |
| 76 | |
| 77 | // Implementation. |
| 78 | UlpfecGenerator ulpfec_generator_ GUARDED_BY(sequence_checker_); |
brandtr | 131bc49 | 2016-11-10 05:01:11 -0800 | [diff] [blame] | 79 | const RtpHeaderExtensionMap rtp_header_extension_map_; |
brandtr | c295e00 | 2016-11-03 09:22:33 -0700 | [diff] [blame] | 80 | }; |
| 81 | |
| 82 | } // namespace webrtc |
| 83 | |
| 84 | #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_FLEXFEC_SENDER_H_ |