Skip to content

Commit

Permalink
lfg
Browse files Browse the repository at this point in the history
  • Loading branch information
JonnyBurger committed Nov 13, 2024
1 parent 3d6f7dc commit 04fb5a0
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,13 @@ export const createStsdData = (avc1Data: Avc1Data) => {
combineUint8Arrays([
// type
stringsToUint8Array('stsd'),
// version
new Uint8Array([0]),
// flags
new Uint8Array([0, 0, 0]),
// entry count
new Uint8Array([0, 0, 0, 1]),
// entry
createAvc1(avc1Data),
]),
);
Expand Down

0 comments on commit 04fb5a0

Please sign in to comment.