From 7351623e3a7059911b0f42cadd7b52bd85081c6b Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Fri, 7 Aug 2020 22:56:31 -0700 Subject: [PATCH] Update riff_parser.py Pass file signature to parse_rf64() --- wavinfo/riff_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wavinfo/riff_parser.py b/wavinfo/riff_parser.py index 5a0d523..5a941dd 100644 --- a/wavinfo/riff_parser.py +++ b/wavinfo/riff_parser.py @@ -57,7 +57,7 @@ def parse_chunk(stream, rf64_context=None): if data_size == 0xFFFFFFFF: if rf64_context is None and ident in [b'RF64', b'BW64']: - rf64_context = parse_rf64(stream=stream) + rf64_context = parse_rf64(stream=stream, signature=ident) data_size = rf64_context.bigchunk_table[ident]