samer@0: (load "audio.scm") samer@0: (load "lineout.scm") samer@0: samer@0: ; audio input with a frame size of 1024 and a hop size of 512 samer@0: ; is routed directly to audio output, which must also be informed samer@0: ; that hop size is 512. samer@0: (lineout (linesnk) (linein (linesrc) 1024 512) 512) samer@0: (expose)