dsp:VDSP   xtlang


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/libs/core/vaudio_dsp.xtm

Implementation

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; silence
(bind-func dsp:VDSP
  (let ((i 0))
    (lambda (in out time dat)
      (dotimes (i FRAMES)
        (pset! out i 0.0))
      void)))


Back to Index