Skip to content

Commit

Permalink
add missing rtpPacket.fbs file
Browse files Browse the repository at this point in the history
  • Loading branch information
jmillan committed Oct 19, 2023
1 parent a6eb89b commit 8793901
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions worker/fbs/rtpPacket.fbs
Original file line number Diff line number Diff line change
@@ -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;
}

0 comments on commit 8793901

Please sign in to comment.