Skip to content

Commit e11a662

Browse files
committed
Update ignore and AV1 packetize format
1 parent cdbf6d4 commit e11a662

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ tests/conf/rtmps_truststore.p12
3131
!SECURITY_FIXES_SUMMARY.md
3232
!docs/CACHE_USAGE_EXAMPLES.md
3333
.codex
34+
graphify-out/*

io/src/main/java/org/red5/io/rtp/AV1Packetizer.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,7 @@ public int depacketize(byte[] payload) throws Exception {
187187
if (obuType == null) {
188188
// not a continuation (per the Z bit) yet the header is unrecognized; skip its bytes to stay
189189
// aligned rather than mis-append the data or NPE in the valid-OBU check below
190-
logger.warn("Unrecognized OBU header 0x{} at index {}; skipping {} bytes",
191-
Integer.toHexString(payload[currentIndex] & 0xFF), currentIndex, obuFragmentLength);
190+
logger.warn("Unrecognized OBU header 0x{} at index {}; skipping {} bytes", Integer.toHexString(payload[currentIndex] & 0xFF), currentIndex, obuFragmentLength);
192191
} else {
193192
if (isTrace) {
194193
boolean obuExtensionFlag = OBUParser.obuHasExtension(payload[currentIndex]);

0 commit comments

Comments
 (0)