#include "common.hpp"
#include "RTC/Codecs/VP8.hpp"
#include <catch2/catch.hpp>
#include <cstring>
using namespace RTC;
constexpr uint16_t MaxPictureId = (1 << 15) - 1;
SCENARIO("parse VP8 payload descriptor", "[codecs][vp8]")
{
SECTION("parse payload descriptor")
{
uint8_t originalBuffer[] =
{
0xd0, 0x80, 0x11, 0x00
};
uint8_t buffer[4] = { 0 };
std::memcpy(buffer, originalBuffer, sizeof(buffer));
const auto* payloadDescriptor = Codecs::VP8::Parse(buffer, sizeof(buffer));
REQUIRE(payloadDescriptor);
REQUIRE(payloadDescriptor->extended == 1);
REQUIRE(payloadDescriptor->nonReference == 0);
REQUIRE(payloadDescriptor->start == 1);
REQUIRE(payloadDescriptor->partitionIndex == 0);
REQUIRE(payloadDescriptor->i == 1);
REQUIRE(payloadDescriptor->l == 0);
REQUIRE(payloadDescriptor->t == 0);
REQUIRE(payloadDescriptor->k == 0);
REQUIRE(payloadDescriptor->pictureId == 17);
REQUIRE(payloadDescriptor->tl0PictureIndex == 0);
REQUIRE(payloadDescriptor->tlIndex == 0);
REQUIRE(payloadDescriptor->y == 0);
REQUIRE(payloadDescriptor->keyIndex == 0);
REQUIRE(payloadDescriptor->isKeyFrame == true);
REQUIRE(payloadDescriptor->hasPictureId == true);
REQUIRE(payloadDescriptor->hasOneBytePictureId == true);
REQUIRE(payloadDescriptor->hasTwoBytesPictureId == false);
REQUIRE(payloadDescriptor->hasTl0PictureIndex == false);
REQUIRE(payloadDescriptor->hasTlIndex == false);
SECTION("encode payload descriptor")
{
payloadDescriptor->Encode(
buffer, payloadDescriptor->pictureId, payloadDescriptor->tl0PictureIndex);
SECTION("compare encoded payloadDescriptor with original buffer")
{
REQUIRE(std::memcmp(buffer, originalBuffer, sizeof(buffer)) == 0);
}
}
delete payloadDescriptor;
}
SECTION("parse payload descriptor 2")
{
uint8_t originalBuffer[] =
{
0x88, 0x3e, 0xe4, 0x00
};
uint8_t buffer[4] = { 0 };
std::memcpy(buffer, originalBuffer, sizeof(buffer));
const auto* payloadDescriptor = Codecs::VP8::Parse(buffer, sizeof(buffer));
REQUIRE(payloadDescriptor);
REQUIRE(payloadDescriptor->extended == 1);
REQUIRE(payloadDescriptor->nonReference == 0);
REQUIRE(payloadDescriptor->start == 0);
REQUIRE(payloadDescriptor->partitionIndex == 0);
REQUIRE(payloadDescriptor->i == 0);
REQUIRE(payloadDescriptor->l == 0);
REQUIRE(payloadDescriptor->t == 1);
REQUIRE(payloadDescriptor->k == 1);
REQUIRE(payloadDescriptor->pictureId == 0);
REQUIRE(payloadDescriptor->tl0PictureIndex == 0);
REQUIRE(payloadDescriptor->tlIndex == 3);
REQUIRE(payloadDescriptor->y == 1);
REQUIRE(payloadDescriptor->keyIndex == 4);
REQUIRE(payloadDescriptor->isKeyFrame == false);
REQUIRE(payloadDescriptor->hasPictureId == false);
REQUIRE(payloadDescriptor->hasOneBytePictureId == false);
REQUIRE(payloadDescriptor->hasTwoBytesPictureId == false);
REQUIRE(payloadDescriptor->hasTl0PictureIndex == false);
REQUIRE(payloadDescriptor->hasTlIndex == true);
SECTION("encode payload descriptor")
{
payloadDescriptor->Encode(
buffer, payloadDescriptor->pictureId, payloadDescriptor->tl0PictureIndex);
SECTION("compare encoded payloadDescriptor with original buffer")
{
REQUIRE(std::memcmp(buffer, originalBuffer, sizeof(buffer)) == 0);
}
}
delete payloadDescriptor;
};
SECTION("parse payload descriptor. I flag set but no space for pictureId")
{
uint8_t buffer[] =
{
0xd0, 0x80
};
auto payloadDescriptor = Codecs::VP8::Parse(buffer, sizeof(buffer));
REQUIRE_FALSE(payloadDescriptor);
}
SECTION("parse payload descriptor. X flag is not set")
{
uint8_t buffer[] =
{
0x50, 0x80, 0x11
};
auto payloadDescriptor = Codecs::VP8::Parse(buffer, sizeof(buffer));
REQUIRE_FALSE(payloadDescriptor);
}
}
Codecs::VP8::PayloadDescriptor* CreatePacket(
uint8_t* buffer,
size_t bufferLen,
uint16_t pictureId,
uint8_t tl0PictureIndex,
uint8_t tlIndex,
bool layerSync = true)
{
uint16_t netPictureId = htons(pictureId);
std::memcpy(buffer + 2, &netPictureId, 2);
buffer[2] |= 0x80;
buffer[4] = tl0PictureIndex;
buffer[5] = tlIndex << 6;
if (layerSync)
{
buffer[5] |= 0x20; }
auto* payloadDescriptor = Codecs::VP8::Parse(buffer, bufferLen);
REQUIRE(payloadDescriptor);
return payloadDescriptor;
}
std::unique_ptr<Codecs::VP8::PayloadDescriptor> ProcessPacket(
Codecs::VP8::EncodingContext& context,
uint16_t pictureId,
uint8_t tl0PictureIndex,
uint8_t tlIndex,
bool layerSync = true)
{
uint8_t buffer[] =
{
0x90, 0xe0, 0x80, 0x00, 0x00, 0x00
};
bool marker;
auto* payloadDescriptor =
CreatePacket(buffer, sizeof(buffer), pictureId, tl0PictureIndex, tlIndex, layerSync);
std::unique_ptr<Codecs::VP8::PayloadDescriptorHandler> payloadDescriptorHandler(
new Codecs::VP8::PayloadDescriptorHandler(payloadDescriptor));
if (payloadDescriptorHandler->Process(&context, buffer, marker))
{
return std::unique_ptr<Codecs::VP8::PayloadDescriptor>(Codecs::VP8::Parse(buffer, sizeof(buffer)));
}
return nullptr;
}
SCENARIO("process VP8 payload descriptor", "[codecs][vp8]")
{
SECTION("do not drop TL0PICIDX from temporal layers higher than 0")
{
RTC::Codecs::EncodingContext::Params params;
params.spatialLayers = 0;
params.temporalLayers = 2;
Codecs::VP8::EncodingContext context(params);
context.SetCurrentTemporalLayer(0);
context.SetTargetTemporalLayer(0);
auto forwarded = ProcessPacket(context, 0, 0, 0);
REQUIRE(forwarded);
REQUIRE(forwarded->pictureId == 0);
REQUIRE(forwarded->tl0PictureIndex == 0);
forwarded = ProcessPacket(context, 2, 1, 1);
REQUIRE_FALSE(forwarded);
forwarded = ProcessPacket(context, 1, 1, 0);
REQUIRE(forwarded);
REQUIRE(forwarded->pictureId == 1);
REQUIRE(forwarded->tl0PictureIndex == 1);
}
SECTION("drop packets that belong to other temporal layers after rolling over pictureID")
{
RTC::Codecs::EncodingContext::Params params;
params.spatialLayers = 0;
params.temporalLayers = 2;
Codecs::VP8::EncodingContext context(params);
context.SyncRequired();
context.SetCurrentTemporalLayer(0);
context.SetTargetTemporalLayer(0);
auto forwarded = ProcessPacket(context, MaxPictureId, 0, 0);
REQUIRE(forwarded);
REQUIRE(forwarded->pictureId == 1);
REQUIRE(forwarded->tl0PictureIndex == 1);
forwarded = ProcessPacket(context, 0, 0, 0);
REQUIRE(forwarded);
REQUIRE(forwarded->pictureId == 2);
REQUIRE(forwarded->tl0PictureIndex == 1);
forwarded = ProcessPacket(context, 1, 0, 1);
REQUIRE_FALSE(forwarded);
}
}