Skip to content

Commit 632870f

Browse files
committed
Fix reading of Body SID from the Partition Pack
1 parent b47b0cd commit 632870f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/sandflow/smpte/mxf/PartitionPack.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public static PartitionPack fromTriplet(Triplet triplet) throws KLVException {
122122

123123
pp.setBodyOffset(kis.readLong());
124124

125-
pp.setBodySID(kis.readLong());
125+
pp.setBodySID(kis.readUnsignedInt());
126126

127127
pp.setOperationalPattern(kis.readUL());
128128

0 commit comments

Comments
 (0)