TOOLS/matroska.py: support 8-byte floats in parsing mode

Support parsing and printing the value of 8-byte floats when using the
script to parse and display contents of Matroska files.
This commit is contained in:
Uoti Urpala 2010-03-11 23:42:20 +02:00
parent f4a1d6e36e
commit cbc6eabb9f
1 changed files with 7 additions and 2 deletions

View File

@ -332,8 +332,13 @@ def read_float(s, length):
f = ldexp((i & 0x7fffff) + (1 << 23), (i >> 23 & 0xff) - 150)
if i & (1 << 31):
f = -f
return f
raise SyntaxError
elif length == 8:
f = ldexp((i & ((1 << 52) - 1)) + (1 << 52), (i >> 52 & 0x7ff) - 1075)
if i & (1 << 63):
f = -f
else:
raise SyntaxError
return f
def parse_one(s, depth, parent, maxlen):
elid = read_id(s).encode('hex')