test: Fix typo in decoder.py call to ltpf

This commit is contained in:
Antoine Soulier
2024-04-10 10:26:22 -07:00
parent 5f5251ab7d
commit 8523516b89

View File

@@ -81,7 +81,7 @@ class Decoder:
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