Skip to content

Commit e72f03d

Browse files
authored
Fixed incorrect read of Partition Pack Body SID
#163
1 parent 23e637f commit e72f03d

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)