Fixed it, silly typo

This commit is contained in:
Jamie Hardt
2023-06-10 00:50:39 -07:00
parent 0c418cecdd
commit 75228830cb

View File

@@ -547,8 +547,8 @@ class DolbyAtmosSupplementalMetadata:
render_modes = [] render_modes = []
h = BytesIO(data) h = BytesIO(data)
magic = unpack("<I", h.read(4)) magic = unpack("<I", h.read(4))[0]
# assert magic == cls.MAGIC, "Magic value was not found" assert magic == cls.MAGIC, "Magic value was not found"
object_count = unpack("<H", h.read(2))[0] object_count = unpack("<H", h.read(2))[0]