annotate examples/sound/sampled/lineio.scm @ 0:bf79fb79ee13

Initial Mercurial check in.
author samer
date Tue, 17 Jan 2012 17:50:20 +0000
parents
children b67a33c44de7
rev   line source
samer@0 1 (load "audio.scm")
samer@0 2 (load "lineout.scm")
samer@0 3
samer@0 4 ; audio input with a frame size of 1024 and a hop size of 512
samer@0 5 ; is routed directly to audio output, which must also be informed
samer@0 6 ; that hop size is 512.
samer@0 7 (lineout (linesnk) (linein (linesrc) 1024 512) 512)
samer@0 8 (expose)