Fix invalid Vorbis description for Ogg demuxer

This commit is contained in:
Vanilagy
2025-09-17 18:06:41 +02:00
parent 1a1664683b
commit 6907e25c6d
+1 -1
View File
@@ -192,7 +192,7 @@ export class OggDemuxer extends Demuxer {
1 + lacingValues.length
+ firstPacket.data.length + secondPacket.data.length + thirdPacket.data.length,
);
description[0] = lacingValues.length;
description[0] = 2; // Num entries in the segment table
description.set(
lacingValues, 1,
);