![]() 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/self/root/usr/local/lib/node_modules/mediasoup/worker/src/RTC/RTCP/ |
Upload File : |
#define MS_CLASS "RTC::RTCP::FeedbackRtpTmmb" // #define MS_LOG_DEV_LEVEL 3 #include "RTC/RTCP/FeedbackRtpTmmb.hpp" #include "Logger.hpp" #include "Utils.hpp" #include <cstring> namespace RTC { namespace RTCP { /* Instance methods. */ template<typename T> FeedbackRtpTmmbItem<T>::FeedbackRtpTmmbItem(const Header* header) : FeedbackRtpTmmbItem<T>(reinterpret_cast<const uint8_t*>(header)) { } template<typename T> FeedbackRtpTmmbItem<T>::FeedbackRtpTmmbItem(const uint8_t* data) { this->ssrc = Utils::Byte::Get4Bytes(data, 0); // Read the 4 bytes block. uint32_t compact = Utils::Byte::Get4Bytes(data, 4); // Read each component. uint8_t exponent = compact >> 26; // 6 bits. uint64_t mantissa = (compact >> 9) & 0x1ffff; // 17 bits. this->overhead = compact & 0x1ff; // 9 bits. // Get the bitrate out of exponent and mantissa. this->bitrate = (mantissa << exponent); if ((this->bitrate >> exponent) != mantissa) { MS_WARN_TAG(rtcp, "invalid TMMB bitrate value : %" PRIu64 " x 2^%" PRIu8, mantissa, exponent); this->isCorrect = false; } } template<typename T> size_t FeedbackRtpTmmbItem<T>::Serialize(uint8_t* buffer) { static constexpr uint32_t MaxMantissa{ 0x1ffff }; // 17 bits. uint64_t mantissa = this->bitrate; uint32_t exponent{ 0 }; while (mantissa > MaxMantissa) { mantissa >>= 1; ++exponent; } Utils::Byte::Set4Bytes(buffer, 0, this->ssrc); uint32_t compact = (exponent << 26) | (mantissa << 9) | this->overhead; Utils::Byte::Set4Bytes(buffer, 4, compact); return sizeof(Header); } template<typename T> void FeedbackRtpTmmbItem<T>::Dump() const { MS_TRACE(); MS_DUMP("<FeedbackRtpTmmbItem>"); MS_DUMP(" ssrc : %" PRIu32, this->GetSsrc()); MS_DUMP(" bitrate : %" PRIu64, this->GetBitrate()); MS_DUMP(" overhead : %" PRIu16, this->GetOverhead()); MS_DUMP("</FeedbackRtpTmmbItem>"); } /* Specialization for Tmmbr class. */ template<> const FeedbackRtp::MessageType FeedbackRtpTmmbItem<FeedbackRtpTmmbr>::messageType = FeedbackRtp::MessageType::TMMBR; /* Specialization for Tmmbn class. */ template<> const FeedbackRtp::MessageType FeedbackRtpTmmbItem<FeedbackRtpTmmbn>::messageType = FeedbackRtp::MessageType::TMMBN; // Explicit instantiation to have all FeedbackRtpTmmbItem definitions in this file. template class FeedbackRtpTmmbItem<FeedbackRtpTmmbr>; template class FeedbackRtpTmmbItem<FeedbackRtpTmmbn>; } // namespace RTCP } // namespace RTC