Make sure to uncomment one line only. Then run "faust -svg file.dsp" to
generate a flowchart.

   - The first two are routed correctly: fir_delay(number, _)
   - The third command is routed incorrectly: fir_delay(_, _)

I first noticed buggy behavior in my original program on
FaustLive-ubuntu-x86_64-2.43.

I confirmed the incorrect routing using faust from Git, compiled a few
weeks ago.

----

import("music.lib");

// WORKS
// fir_delay(i, val) = i+val;

// WORKS
// fir_delay(i, val) = delay(32, i, val);

// DOESN'T
// fir_delay(i, val) = fdelay(32, i, val);


process = _ <: par(i, 2,
    fir_delay(3-i, _)
);
------------------------------------------------------------------------------
What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic
patterns at an interface-level. Reveals which users, apps, and protocols are 
consuming the most bandwidth. Provides multi-vendor support for NetFlow, 
J-Flow, sFlow and other flows. Make informed decisions using capacity 
planning reports. https://ad.doubleclick.net/ddm/clk/305295220;132659582;e
_______________________________________________
Faudiostream-users mailing list
Faudiostream-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/faudiostream-users

Reply via email to