Skip to content

Commit

Permalink
fixed xml double decriptor bug
Browse files Browse the repository at this point in the history
  • Loading branch information
futzu authored Nov 27, 2024
1 parent 41cea50 commit 4f76c0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions threefive/upids.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,11 +387,11 @@ def xml(self, ns="scte35"):
# segmentation_upid_type : [name, class, length]
upid_map = {
0x00: ["No UPID", NoUpid, 0],
0x01: ["0x01 'User Defined' is Deprecated use 0x0C MPU ", Upid, False],
0x02: ["0x02 ISCI is Deprecated use 0x03 'AdID' ", Upid, 8],
0x01: ["Heads Up! UPID 0x01 'User Defined' is deprecated. Use 0x0C 'MPU'.", Upid, False],
0x02: ["Heads Up! UPID 0x02 'ISCI' is Deprecated use 0x03 'AdID'.", Upid, 8],
0x03: ["AdID", Upid, 12],
0x04: ["UMID", Umid, 32],
0x05: ["0x05 ISAN is Deprecated use 0x06 ISAN.", Isan, 8],
0x05: ["Heads Up! UPID 0x05 'ISAN' is Deprecated use 0x06 'ISAN'.", Isan, 8],
0x06: ["ISAN", Isan, 12],
0x07: ["TID", Upid, 12],
0x08: ["AiringID", AirId, 8],
Expand Down

0 comments on commit 4f76c0f

Please sign in to comment.