From 87939011a349dbdd99e134de515c36e42ccb6672 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Luis=20Mill=C3=A1n?= Date: Thu, 19 Oct 2023 15:26:46 +0200 Subject: [PATCH] add missing rtpPacket.fbs file --- worker/fbs/rtpPacket.fbs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 worker/fbs/rtpPacket.fbs diff --git a/worker/fbs/rtpPacket.fbs b/worker/fbs/rtpPacket.fbs new file mode 100644 index 0000000000..a724ea67bb --- /dev/null +++ b/worker/fbs/rtpPacket.fbs @@ -0,0 +1,20 @@ +include "common.fbs"; + +namespace FBS.RtpPacket; + +table Dump { + payload_type: uint8; + sequence_number: uint16; + timestamp: uint32; + marker: bool; + ssrc: uint32; + is_key_frame: bool; + size: uint64; + payload_size: uint64; + spatial_layer: uint8; + temporal_layer: uint8; + mid: string; + rid: string; + rrid: string; + wide_sequence_number: uint16 = null; +}