summaryrefslogtreecommitdiff
path: root/decoders
diff options
context:
space:
mode:
authorJoel Holdsworth <joel@airwebreathe.org.uk>2017-11-07 19:55:50 -0700
committerUwe Hermann <uwe@hermann-uwe.de>2017-11-11 18:25:08 +0100
commit65658c0ac591ae4ab5216a3785d151ca6eb72157 (patch)
tree5774e377717d5d7f54e995d8a523c14e2b119922 /decoders
parent7f214f533f4ce67f5f6e603784fd5b37809791b6 (diff)
downloadlibsigrokdecode-65658c0ac591ae4ab5216a3785d151ca6eb72157.tar.gz
libsigrokdecode-65658c0ac591ae4ab5216a3785d151ca6eb72157.zip
i2s: Set file size to 4Gb
Diffstat (limited to 'decoders')
-rw-r--r--decoders/i2s/pd.py2
1 files changed, 1 insertions, 1 deletions
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):