Skip to content

Commit

Permalink
test: Fix typo in decoder.py call to ltpf
Browse files Browse the repository at this point in the history
  • Loading branch information
asoulier committed Apr 10, 2024
1 parent 5f5251a commit 8523516
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/decoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 8523516

Please sign in to comment.