#define MS_CLASS "RTC::RTCP::FeedbackRtpNack"
#include "RTC/RTCP/FeedbackRtpNack.hpp"
#include "Logger.hpp"
#include <bitset>
#include <cstring>
#include <string>
namespace RTC
{
namespace RTCP
{
FeedbackRtpNackItem::FeedbackRtpNackItem(uint16_t packetId, uint16_t lostPacketBitmask)
{
this->raw = new uint8_t[HeaderSize];
this->header = reinterpret_cast<Header*>(this->raw);
this->header->packetId = htons(packetId);
this->header->lostPacketBitmask = htons(lostPacketBitmask);
}
size_t FeedbackRtpNackItem::Serialize(uint8_t* buffer)
{
MS_TRACE();
std::memcpy(buffer, this->header, HeaderSize);
return HeaderSize;
}
void FeedbackRtpNackItem::Dump(int indentation) const
{
MS_TRACE();
const std::bitset<16> nackBitset(GetLostPacketBitmask());
MS_DUMP_CLEAN(indentation, "<FeedbackRtpNackItem>");
MS_DUMP_CLEAN(indentation, " pid: %" PRIu16, this->GetPacketId());
MS_DUMP_CLEAN(indentation, " bpl: %s", nackBitset.to_string().c_str());
MS_DUMP_CLEAN(indentation, "</FeedbackRtpNackItem>");
}
} }