From 8523516b89c170ffc09e1a3a5cfb103f762e62a1 Mon Sep 17 00:00:00 2001 From: Antoine Soulier Date: Wed, 10 Apr 2024 10:26:22 -0700 Subject: [PATCH] test: Fix typo in decoder.py call to ltpf --- test/decoder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/decoder.py b/test/decoder.py index 388fc62..4dd8486 100644 --- a/test/decoder.py +++ b/test/decoder.py @@ -81,7 +81,7 @@ def synthesize(self, x, bw, pitch, nbytes): x = np.append(x, np.zeros(self.ns - self.ne)) x = self.mdct.run(x) - x = self.ltpf.run(x, len(data)) + x = self.ltpf.run(x) return x