aboutsummaryrefslogtreecommitdiff
path: root/client.py
diff options
context:
space:
mode:
Diffstat (limited to 'client.py')
-rw-r--r--client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/client.py b/client.py
index bfe98d5..0df7610 100644
--- a/client.py
+++ b/client.py
@@ -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):