Skip to content

Commit 3c4f270

Browse files
committed
fixed incorrect application_priority
1 parent 24b9ec6 commit 3c4f270

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/nl/digitalekabeltelevisie/data/mpeg/descriptors/aitable/ExternalApplicationAuthorizationDescriptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public ExternalApplicationAuthorizationDescriptor(byte[] b, TableSection parent)
7676
while (t < descriptorLength) {
7777
byte[] application_identifier = Arrays.copyOfRange(b, t + 2, t + 2 + 6); // application_identifier = 48 bits
7878

79-
int application_priority = getInt(b, t + 2 + 6 + 1, 1, MASK_8BITS);
79+
int application_priority = getInt(b, t + 2 + 6, 1, MASK_8BITS);
8080

8181
ExternalAuthorization s = new ExternalAuthorization(application_identifier, application_priority);
8282
externalAuthorizations.add(s);

0 commit comments

Comments
 (0)