diff options
author | Graham Northup <grissess@nexusg.org> | 2018-09-06 04:07:30 -0400 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2018-09-06 04:07:30 -0400 |
commit | cdb4bba35a69be9f5e245d3c6c81e11818a546c2 (patch) | |
tree | 5daa7210ae1cf4dd929ae4c34cbc3c2306c170f7 | |
parent | 171cfd400cd89b468f03ca583e98c53f08b60e6b (diff) |
Ensure interpolation is properly cast
-rw-r--r-- | client.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -352,7 +352,7 @@ if options.numpy: def resample(samps, amt): samps = numpy.frombuffer(samps, numpy.int32) - return numpy.interp(numpy.linspace(0, samps.shape[0], amt, False), numpy.linspace(0, samps.shape[0], samps.shape[0], False), samps).tobytes() + return numpy.interp(numpy.linspace(0, samps.shape[0], amt, False), numpy.linspace(0, samps.shape[0], samps.shape[0], False), samps).astype(numpy.int32).tobytes() else: def lin_seq(frm, to, cnt): |