Skip to content

Commit

Permalink
Update wave_dbmd_reader.py
Browse files Browse the repository at this point in the history
  • Loading branch information
iluvcapra authored Nov 9, 2023
1 parent 5e07d01 commit 2e5cd43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wavinfo/wave_dbmd_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ def langcod(b) -> int:

def audio_prod_info(b):
return (b & 0x80) > 0, \
DolbyDigitalPlusMetadata.MixLevel(b & 0x7c >> 2), \
DolbyDigitalPlusMetadata.MixLevel(b & 0x7c >> 2),\
DolbyDigitalPlusMetadata.RoomType(b & 0x3)

# loro_center_downmix_level, loro_surround_downmix_level
Expand Down

0 comments on commit 2e5cd43

Please sign in to comment.