![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /proc/thread-self/root/usr/local/lib/node_modules/mediasoup/worker/include/RTC/RTCP/ |
Upload File : |
#ifndef MS_RTC_RTCP_FEEDBACK_HPP #define MS_RTC_RTCP_FEEDBACK_HPP #include "common.hpp" #include "RTC/RTCP/FeedbackItem.hpp" #include "RTC/RTCP/Packet.hpp" namespace RTC { namespace RTCP { template<typename T> class FeedbackPacket : public Packet { public: /* Struct for RTP Feedback message. */ struct Header { uint32_t senderSsrc; uint32_t mediaSsrc; }; public: static RTCP::Type rtcpType; static FeedbackPacket<T>* Parse(const uint8_t* data, size_t len); static const std::string& MessageType2String(typename T::MessageType type); private: static std::map<typename T::MessageType, std::string> type2String; public: typename T::MessageType GetMessageType() const { return this->messageType; } uint32_t GetSenderSsrc() const { return uint32_t{ ntohl(this->header->senderSsrc) }; } void SetSenderSsrc(uint32_t ssrc) { this->header->senderSsrc = uint32_t{ htonl(ssrc) }; } uint32_t GetMediaSsrc() const { return uint32_t{ ntohl(this->header->mediaSsrc) }; } void SetMediaSsrc(uint32_t ssrc) { this->header->mediaSsrc = uint32_t{ htonl(ssrc) }; } /* Pure virtual methods inherited from Packet. */ public: void Dump() const override; size_t Serialize(uint8_t* buffer) override; size_t GetCount() const override { return static_cast<size_t>(GetMessageType()); } size_t GetSize() const override { return sizeof(CommonHeader) + sizeof(Header); } protected: explicit FeedbackPacket(CommonHeader* commonHeader); FeedbackPacket(typename T::MessageType messageType, uint32_t senderSsrc, uint32_t mediaSsrc); ~FeedbackPacket() override; private: Header* header{ nullptr }; uint8_t* raw{ nullptr }; typename T::MessageType messageType; }; class FeedbackPs { public: enum class MessageType : uint8_t { PLI = 1, SLI = 2, RPSI = 3, FIR = 4, TSTR = 5, TSTN = 6, VBCM = 7, PSLEI = 8, ROI = 9, AFB = 15, EXT = 31 }; }; class FeedbackRtp { public: enum class MessageType : uint8_t { NACK = 1, TMMBR = 3, TMMBN = 4, SR_REQ = 5, RAMS = 6, TLLEI = 7, ECN = 8, PS = 9, TCC = 15, EXT = 31 }; }; using FeedbackPsPacket = FeedbackPacket<RTC::RTCP::FeedbackPs>; using FeedbackRtpPacket = FeedbackPacket<RTC::RTCP::FeedbackRtp>; } // namespace RTCP } // namespace RTC #endif