From: Joel Holdsworth Date: Wed, 8 Nov 2017 02:55:50 +0000 (-0700) Subject: i2s: Set file size to 4Gb X-Git-Url: https://sigrok.org/gitweb/?a=commitdiff_plain;h=65658c0ac591ae4ab5216a3785d151ca6eb72157;p=libsigrokdecode.git i2s: Set file size to 4Gb --- diff --git a/decoders/i2s/pd.py b/decoders/i2s/pd.py index 474c606..0590797 100644 --- a/decoders/i2s/pd.py +++ b/decoders/i2s/pd.py @@ -118,7 +118,7 @@ class Decoder(srd.Decoder): h += b'\x20\x00' # Bits per sample (32) # Data subchunk h += b'data' - h += b'\xff\xff\x00\x00' # Subchunk size (65535 bytes) TODO + h += b'\xff\xff\xff\xff' # Subchunk size (4G bytes) TODO return h def wav_sample(self, sample):