diff options
Diffstat (limited to 'decoders')
-rw-r--r-- | decoders/i2s/pd.py | 2 |
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): |