Skip to content
Snippets Groups Projects
Commit 1938a013 authored by Oscar Gustafsson's avatar Oscar Gustafsson :bicyclist:
Browse files

Fix LWDF generator bug

parent 436d47ac
No related branches found
No related tags found
1 merge request!270Fixes
Pipeline #93674 passed
This commit is part of merge request !270. Comments created here will be created in the context of that merge request.
...@@ -109,8 +109,8 @@ def wdf_allpass( ...@@ -109,8 +109,8 @@ def wdf_allpass(
latency_offsets=latency_offsets, latency_offsets=latency_offsets,
execution_time=execution_time, execution_time=execution_time,
) )
Signal(adaptor2.output(1), adaptor1.input(1)) Signal(adaptor2.output(0), adaptor1.input(1))
Signal(adaptor2.output(0), delay2) Signal(adaptor2.output(1), delay2)
signal_out = Signal(adaptor1.output(0)) signal_out = Signal(adaptor1.output(0))
output << signal_out output << signal_out
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment