Home
last modified time | relevance | path

Searched refs:spectr (Results 1 – 25 of 35) sorted by relevance

12

/dports/audio/x42-plugins-lv2/x42-plugins-20211016/spectra.lv2/
H A DMakefile128 JACKAPP=$(APPBLD)x42-spectr$(EXE_EXT)
242 $(APPBLD)x42-spectr$(EXE_EXT): $(DSP_DEPS) $(GUI_DEPS) \
267 install -m755 $(APPBLD)x42-spectr$(EXE_EXT) $(DESTDIR)$(BINDIR)
275 rm -f $(DESTDIR)$(BINDIR)/x42-spectr$(EXE_EXT)
282 install -m644 x42-spectr.1 $(DESTDIR)$(MANDIR)
286 rm -f $(DESTDIR)$(MANDIR)/x42-spectr.1
289 man: $(APPBLD)x42-spectr
290 help2man -N -o x42-spectr.1 -n "x42-spectr Analyzer" $(APPBLD)x42-spectr
H A DREADME.md11 Compiling spectr.lv2 requires the LV2 SDK, jack-headers, gnu-make, a c++-compiler,
31 ![screenshot](https://raw.github.com/x42/spectra.lv2/master/img/spectr.png "Spectr LV2 GUI - 100Hz …
/dports/audio/snd/snd-21.2/
H A Dfade.scm166 (spectr (make-vector freq-inc #f))
193 (if (not (spectr next))
194 (set! (spectr next) (- 1.0 ramp-inc))
201 (not (spectr j)))
203 (set! (spectr j) (- 1.0 ramp-inc))
207 (not (spectr k)))
209 (set! (spectr k) (- 1.0 ramp-inc))
229 (set! sp (vector-ref spectr rk))
233 (vector-set! spectr rk sp)
H A Dexamp.rb1377 spectr = make_vct(freq_inc)
1402 vct_subtract!(fdr, spectr)
1407 vct_add!(spectr, fdr)
1421 spectr = make_vct(freq_inc)
1451 vct_subtract!(fdr, spectr)
1456 vct_add!(spectr, fdr)
1478 spectr = make_vct(freq_inc)
1504 vct_subtract!(fdr, spectr)
1508 vct_add!(spectr, fdr)
1910 if spectr[i] > pk
[all …]
H A Dexamp.scm1207 (let ((spectr (make-float-vector freq-inc))
1227 (float-vector-subtract! fdr spectr)
1231 (float-vector-add! spectr fdr)
1245 (spectr (make-float-vector freq-inc))
1270 (float-vector-subtract! fdr spectr)
1277 (float-vector-add! spectr fdr)
1318 (float-vector-subtract! fdr spectr)
1325 (float-vector-add! spectr fdr)
1668 (spectr (+ 1 pkloc))))
1671 (if (> (spectr i) pk)
[all …]
H A Dspectr.fs1 \ spectr.fs -- spectr.cl --> spectr.fs
7 \ @(#)spectr.fs 1.5 12/2/17
11 \ Original comment in spectr.cl:
4178 \ spectr.fs ends here
H A Dexamp.fs1627 freq-inc 0.0 make-vct { spectr }
1645 fdr , fdi , spectr , formants ,
1650 self 2 cells + @ { spectr }
1662 spectr vct-subtract! ( fdr )
1667 spectr fdr 0 vct-add! drop
1679 freq-inc 0.0 make-vct { spectr }
1704 spectr vct-subtract! ( fdr )
1709 spectr fdr 0 vct-add! drop
1729 freq-inc 0.0 make-vct { spectr }
1758 spectr fdr 0 vct-add! drop
[all …]
H A Ddsp.rb925 def spectrum2coeffs(order, spectr) argument
933 xt = 0.5 * spectr[0]
935 xt = xt + spectr[i] * cos(q * i * (am - j - 1))
950 def fltit_1(order, spectr) argument
951 flt = make_fir_filter(order, spectrum2coeffs(order, spectr))
H A Ddsp.scm533 (lambda (order spectr)
538 (if (not (float-vector? spectr))
539 … (error 'wrong-type-arg "spectrum->coeffs spectrum argument should be a float-vector: ~A" spectr))
543 (let ((xt (* 0.5 (spectr 0))))
546 (set! xt (+ xt (* (spectr i) (cos (* q i (- am j 1)))))))
559 (lambda (order spectr)
560 (let ((flt (make-fir-filter order (spectrum->coeffs order spectr))))
H A Deffects.rb2051 spectr = make_vct(freq_inc)
2059 formants = make_formant_bank(fmts, spectr)
2065 fdr.subtract!(spectr)
2070 spectr.add!(fdr)
H A Dclm-ins.rb3015 spectr = make_vct(freq_inc, 1.0)
3039 spectr[j] = 0.9 * spectr[j] + 0.1 * fdr[j]
3040 if spectr[j] >= fdr[j]
3043 diffs[j] = ((fdr[j] - spectr[j]) / fdr[j] - scales[j]) / fftsize
H A Ddsp.fs41 \ spectrum->coeffs ( order spectr -- vct )
42 \ fltit-1 ( order spectr -- proc; y self -- val )
909 : spectrum->coeffs ( order spectr -- vct )
912 { order spectr }
920 spectr 0 vct-ref f2/ ( xt )
922 spectr i vct-ref
933 : fltit-1 ( order spectr -- prc; y self -- val )
937 { order spectr }
939 :xcoeffs order spectr spectrum->coeffs make-fir-filter { gen }
H A Dnew-effects.scm2041 (spectr (make-float-vector freq-inc))
2050 (set! formants (make-formant-bank formants spectr))
2057 (float-vector-subtract! fdr spectr)
2061 (float-vector-add! spectr fdr)
H A Dclm-ins.scm2497 (spectr (make-vector freq-inc 1.0))
2533 (set! (spectr ctr) (+ (* .9 (spectr ctr)) (* .1 fdrc)))
2534 (set! (diffs ctr) (if (>= (spectr ctr) fdrc)
2536 (/ (- (/ (- fdrc (spectr ctr)) fdrc)
H A Dclm-ins.fs3701 freq-inc 1.0 make-vct { spectr }
3736 spectr i
3737 spectr i vct-ref 0.9 f* fd 0.1 f* f+
3741 fd spectr i vct-ref f- fd f/
H A DHISTORY.Snd723 22-Sep: env.rb, spectr.rb, and spectr.scm thanks to Michael Scholz.
H A Dsnd-test.fs4552 data blackman2-window size #t 0.0 #f #t snd-spectrum { spectr }
4556 spectr i vct-ref peak0 f> if
4557 spectr i vct-ref to peak0
4562 spectr pk0loc 1- vct-ref spectr pk0loc vct-ref spectr pk0loc 1+ vct-ref
/dports/lang/fth/fth-1.4.1/examples/site-lib/
H A Dspectr.fs1 \ spectr.fs -- spectr.cl --> spectr.fs
7 \ @(#)spectr.fs 1.5 12/2/17
11 \ Original comment in spectr.cl:
4178 \ spectr.fs ends here
H A Dexamp.fs1627 freq-inc 0.0 make-vct { spectr }
1645 fdr , fdi , spectr , formants ,
1650 self 2 cells + @ { spectr }
1662 spectr vct-subtract! ( fdr )
1667 spectr fdr 0 vct-add! drop
1679 freq-inc 0.0 make-vct { spectr }
1704 spectr vct-subtract! ( fdr )
1709 spectr fdr 0 vct-add! drop
1729 freq-inc 0.0 make-vct { spectr }
1758 spectr fdr 0 vct-add! drop
[all …]
H A Ddsp.fs41 \ spectrum->coeffs ( order spectr -- vct )
42 \ fltit-1 ( order spectr -- proc; y self -- val )
909 : spectrum->coeffs ( order spectr -- vct )
912 { order spectr }
920 spectr 0 vct-ref f2/ ( xt )
922 spectr i vct-ref
933 : fltit-1 ( order spectr -- prc; y self -- val )
937 { order spectr }
939 :xcoeffs order spectr spectrum->coeffs make-fir-filter { gen }
H A Dclm-ins.fs3701 freq-inc 1.0 make-vct { spectr }
3736 spectr i
3737 spectr i vct-ref 0.9 f* fd 0.1 f* f+
3741 fd spectr i vct-ref f- fd f/
/dports/audio/x42-plugins-lv2/x42-plugins-20211016/onsettrigger.lv2/
H A DMakefile86 $(BUILDDIR)$(LV2NAME)$(LIB_EXT): src/ost.c src/spectr.c
/dports/audio/x42-plugins-lv2/x42-plugins-20211016/tuna.lv2/
H A DMakefile268 DSP_DEPS = $(DSP_SRC) src/spectr.c src/fft.c src/tuna.h src/ringbuf.h
/dports/lang/fth/fth-1.4.1/
H A DMakefile.in112 spectr.fs \
/dports/audio/x42-plugins-lv2/x42-plugins-20211016/meters.lv2/
H A DMakefile294 …cc src/uris.h src/goniometerlv2.c src/goniometer.h src/spectrumlv2.c src/spectr.c src/xfer.c src/d…

12