| /* |
| * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
| * |
| * Use of this source code is governed by a BSD-style license |
| * that can be found in the LICENSE file in the root of the source |
| * tree. An additional intellectual property rights grant can be found |
| * in the file PATENTS. All contributing project authors may |
| * be found in the AUTHORS file in the root of the source tree. |
| */ |
| |
| #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_TRANSPORT_FEEDBACK_H_ |
| #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_TRANSPORT_FEEDBACK_H_ |
| |
| #include <memory> |
| #include <vector> |
| |
| #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/rtpfb.h" |
| |
| namespace webrtc { |
| namespace rtcp { |
| class CommonHeader; |
| |
| class TransportFeedback : public Rtpfb { |
| public: |
| class ReceivedPacket { |
| public: |
| ReceivedPacket(uint16_t sequence_number, int16_t delta_ticks) |
| : sequence_number_(sequence_number), delta_ticks_(delta_ticks) {} |
| ReceivedPacket(const ReceivedPacket&) = default; |
| ReceivedPacket& operator=(const ReceivedPacket&) = default; |
| |
| uint16_t sequence_number() const { return sequence_number_; } |
| int16_t delta_ticks() const { return delta_ticks_; } |
| int32_t delta_us() const { return delta_ticks_ * kDeltaScaleFactor; } |
| |
| private: |
| uint16_t sequence_number_; |
| int16_t delta_ticks_; |
| }; |
| // TODO(sprang): IANA reg? |
| static constexpr uint8_t kFeedbackMessageType = 15; |
| // Convert to multiples of 0.25ms. |
| static constexpr int kDeltaScaleFactor = 250; |
| // Maximum number of packets (including missing) TransportFeedback can report. |
| static constexpr size_t kMaxReportedPackets = 0xffff; |
| |
| TransportFeedback(); |
| ~TransportFeedback() override; |
| |
| void SetBase(uint16_t base_sequence, // Seq# of first packet in this msg. |
| int64_t ref_timestamp_us); // Reference timestamp for this msg. |
| void SetFeedbackSequenceNumber(uint8_t feedback_sequence); |
| // NOTE: This method requires increasing sequence numbers (excepting wraps). |
| bool AddReceivedPacket(uint16_t sequence_number, int64_t timestamp_us); |
| const std::vector<ReceivedPacket>& GetReceivedPackets() const; |
| |
| uint16_t GetBaseSequence() const; |
| |
| // Returns number of packets (including missing) this feedback describes. |
| size_t GetPacketStatusCount() const { return num_seq_no_; } |
| |
| // Get the reference time in microseconds, including any precision loss. |
| int64_t GetBaseTimeUs() const; |
| |
| bool Parse(const CommonHeader& packet); |
| static std::unique_ptr<TransportFeedback> ParseFrom(const uint8_t* buffer, |
| size_t length); |
| // Pre and postcondition for all public methods. Should always return true. |
| // This function is for tests. |
| bool IsConsistent() const; |
| |
| size_t BlockLength() const override; |
| |
| bool Create(uint8_t* packet, |
| size_t* position, |
| size_t max_length, |
| PacketReadyCallback* callback) const override; |
| |
| private: |
| // Size in bytes of a delta time in rtcp packet. |
| // Valid values are 0 (packet wasn't received), 1 or 2. |
| using DeltaSize = uint8_t; |
| // Keeps DeltaSizes that can be encoded into single chunk if it is last chunk. |
| class LastChunk; |
| |
| // Reset packet to consistent empty state. |
| void Clear(); |
| |
| bool AddDeltaSize(DeltaSize delta_size); |
| |
| uint16_t base_seq_no_; |
| uint16_t num_seq_no_; |
| int32_t base_time_ticks_; |
| uint8_t feedback_seq_; |
| |
| int64_t last_timestamp_us_; |
| std::vector<ReceivedPacket> packets_; |
| // All but last encoded packet chunks. |
| std::vector<uint16_t> encoded_chunks_; |
| const std::unique_ptr<LastChunk> last_chunk_; |
| size_t size_bytes_; |
| }; |
| |
| } // namespace rtcp |
| } // namespace webrtc |
| #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_TRANSPORT_FEEDBACK_H_ |