├── .gitignore ├── CMakeLists.txt ├── COPYING ├── README.md ├── cmake ├── CheckAtomic.cmake ├── CompilerOptimizations.cmake └── cmake_uninstall.cmake.in ├── dev ├── CMakeLists.txt ├── Release │ ├── abfdcode │ ├── abfpan │ ├── abfpan2 │ ├── analjoin │ ├── blur │ ├── brkdur │ ├── brktopi │ ├── cantor │ ├── cdparams │ ├── cdparams_other │ ├── cdparse │ ├── ceracu │ ├── channelx │ ├── chanphase │ ├── chorder │ ├── chxformat │ ├── columns │ ├── combine │ ├── constrict │ ├── copysfx │ ├── dirsf │ ├── diskspace │ ├── distort │ ├── envel │ ├── envnu │ ├── extend │ ├── fastconv │ ├── features │ ├── filter │ ├── filtrage │ ├── fixgobo │ ├── flutter │ ├── fmdcode │ ├── focus │ ├── fofex │ ├── formants │ ├── fracture │ ├── frame │ ├── freeze │ ├── gate │ ├── get_partials │ ├── getcol │ ├── glisten │ ├── gobo │ ├── gobosee │ ├── grain │ ├── grainex │ ├── hfperm │ ├── hilite │ ├── histconv │ ├── housekeep │ ├── hover │ ├── interlx │ ├── isolate │ ├── iterfof │ ├── iterline │ ├── iterlinef │ ├── listaudevs │ ├── listdate │ ├── logdate │ ├── madrid │ ├── manysil │ ├── maxsamp2 │ ├── mchanpan │ ├── mchanrev │ ├── mchiter │ ├── mchshred │ ├── mchstereo │ ├── mchzig │ ├── modify │ ├── morph │ ├── mton │ ├── multimix │ ├── newdelay │ ├── newmix │ ├── newmorph │ ├── newsynth │ ├── newtex │ ├── njoin │ ├── nmix │ ├── oneform │ ├── packet │ ├── pagrab │ ├── panorama │ ├── paplay │ ├── paudition │ ├── paview │ ├── pdisplay │ ├── peak │ ├── peakfind │ ├── phase │ ├── pitch │ ├── pitchinfo │ ├── pmodify │ ├── prefix │ ├── progmach │ ├── psow │ ├── ptobrk │ ├── putcol │ ├── pview │ ├── pvoc │ ├── pvplay │ ├── recsf │ ├── rejoin │ ├── repitch │ ├── retime │ ├── reverb │ ├── rmresp │ ├── rmsinfo │ ├── rmverb │ ├── search │ ├── selfsim │ ├── sfecho │ ├── sfedit │ ├── sfprops │ ├── shifter │ ├── shrink │ ├── silend │ ├── sndinfo │ ├── spacedesign │ ├── spec │ ├── specgrids │ ├── specinfo │ ├── speclean │ ├── specnu │ ├── specross │ ├── specsphinx │ ├── spectrum │ ├── spectwin │ ├── specvu │ ├── strange │ ├── strans │ ├── stretch │ ├── stretcha │ ├── submix │ ├── subtract │ ├── superaccu │ ├── synth │ ├── tangent │ ├── tapdelay │ ├── texmchan │ ├── texture │ ├── tkusage │ ├── tkusage_other │ ├── topantail2 │ ├── transit │ ├── tremolo │ ├── tunevary │ ├── vectors │ ├── vuform │ └── wrappage ├── blur │ ├── CMakeLists.txt │ ├── ap_blur.c │ ├── blur.c │ └── main.c ├── cdp2k │ ├── CMakeLists.txt │ ├── cdp2k │ │ └── cdp2k.xcodeproj │ │ │ ├── nuzrat1.mode1v3 │ │ │ ├── nuzrat1.pbxuser │ │ │ └── project.pbxproj │ ├── dzsetup.c │ ├── formantsg.c │ ├── mainfuncs.c │ ├── parstruct.c │ ├── readdata.c │ ├── readfiles.c │ ├── special.c │ ├── tkinput.c │ ├── tklib1-32.c │ ├── tklib1.c │ ├── tklib3.c │ ├── validate.c │ └── writedata.c ├── cdparams │ ├── CMakeLists.txt │ ├── cdparams.c │ ├── display.c │ ├── flagnames.c │ └── parnames.c ├── cdparams_other │ ├── CMakeLists.txt │ └── cdparams_other.c ├── cdparse │ ├── CMakeLists.txt │ ├── cdparse.c │ └── cdparse_other.c ├── combine │ ├── CMakeLists.txt │ ├── ap_combine.c │ ├── combine.c │ └── main.c ├── distort │ ├── CMakeLists.txt │ ├── ap_distort.c │ ├── disprepro.c │ ├── distdel.c │ ├── distflt.c │ ├── distintlv.c │ ├── distort.c │ ├── distorta.c │ ├── distorte.c │ ├── distortf.c │ ├── distorth.c │ ├── distortion.c │ ├── distortm.c │ ├── distorto.c │ ├── distortp.c │ ├── distortr.c │ ├── distorts.c │ ├── distresize.c │ ├── distrpl.c │ ├── distrpt.c │ ├── disttel.c │ ├── main.c │ └── pulse.c ├── editsf │ ├── CMakeLists.txt │ ├── ap_edit.c │ ├── cut.c │ ├── main.c │ └── twixt.c ├── env │ ├── CMakeLists.txt │ ├── ap_envel.c │ ├── envel.c │ ├── envfuncs.c │ ├── envimpos.c │ ├── envprepro.c │ ├── envprocess.c │ ├── envxtract.c │ ├── main.c │ └── pluck.c ├── extend │ ├── CMakeLists.txt │ ├── ap_extend.c │ ├── drunk.c │ ├── drunkfix.c │ ├── extend.xcodeproj │ │ ├── azim.mode1 │ │ ├── azim.pbxuser │ │ ├── nuzrat1.mode1v3 │ │ ├── nuzrat1.pbxuser │ │ └── project.pbxproj │ ├── extprepro.c │ ├── iterate.c │ ├── main.c │ └── zigzag.c ├── externals │ ├── CMakeLists.txt │ ├── fastconv │ │ ├── CMakeLists.txt │ │ ├── fconv-fftw.cpp │ │ ├── fconv.cpp │ │ ├── genrespframe2.cpp │ │ ├── mxfftd.c │ │ └── readme.txt │ ├── include │ │ └── portsf.h │ ├── mctools │ │ ├── CMakeLists.txt │ │ ├── Release │ │ │ ├── Toolkit.pdf │ │ │ ├── readme.txt │ │ │ └── usingTerminal.rtf │ │ ├── abfdcode.cpp │ │ ├── abfdcode2.cpp │ │ ├── abfpan.cpp │ │ ├── abfpan2.cpp │ │ ├── channel.c │ │ ├── chorder.c │ │ ├── chxformat.c │ │ ├── copysf.c │ │ ├── fmdcode.c │ │ ├── fmdcode.h │ │ ├── fmhcube1.txt │ │ ├── fmhfuncs.c │ │ ├── interlx.c │ │ ├── njoin.c │ │ ├── nmix.c │ │ ├── rmsinfo.cpp │ │ └── sfprops.c │ ├── paprogs │ │ ├── CMakeLists.txt │ │ ├── dx9mgw.zip │ │ ├── listaudevs │ │ │ ├── CMakeLists.txt │ │ │ ├── devs.c │ │ │ └── orig_Makefile │ │ ├── pa_stable_v19_20140130.tgz │ │ ├── palinuxbuild.txt │ │ ├── pamacbuild.txt │ │ ├── pamingwbuild.txt │ │ ├── paplay │ │ │ ├── CMakeLists.txt │ │ │ ├── fmdcode.h │ │ │ ├── fmhfuncs.c │ │ │ └── paplay.c │ │ ├── pvplay │ │ │ ├── CMakeLists.txt │ │ │ ├── Toolkit.pdf │ │ │ ├── fmdcode.h │ │ │ ├── fmhfuncs.c │ │ │ ├── mxfft.c │ │ │ ├── pvdefs.h │ │ │ ├── pvfileio.c │ │ │ ├── pvfileio.h │ │ │ ├── pvoc.h │ │ │ ├── pvoc2.cpp │ │ │ ├── pvplay.cpp │ │ │ ├── pvplay.h │ │ │ ├── pvpp.h │ │ │ └── pvthreads.cpp │ │ └── recsf │ │ │ ├── CMakeLists.txt │ │ │ └── recsf.c │ ├── portsf │ │ ├── CMakeLists.txt │ │ ├── ieee80.c │ │ ├── ieee80.h │ │ └── portsf.c │ └── reverb │ │ ├── CMakeLists.txt │ │ ├── LARGERM.TXT │ │ ├── MEDIUMRM.TXT │ │ ├── POS.TXT │ │ ├── allpass.c │ │ ├── delay.c │ │ ├── diffuse.h │ │ ├── lpcomb.cpp │ │ ├── readme.txt │ │ ├── reflect.cpp │ │ ├── reflect.h │ │ ├── reverb.cpp │ │ ├── reverberator.cpp │ │ ├── reverberator.h │ │ ├── rmverb.cpp │ │ ├── roomresp.cpp │ │ ├── smalldiff.cpp │ │ ├── tdelaymain.cpp │ │ ├── wavetable.cpp │ │ └── wavetable.h ├── filter │ ├── CMakeLists.txt │ ├── ap_filter.c │ ├── filters0.c │ ├── filters1.c │ ├── fltpcon.c │ ├── fltprepro.c │ └── main.c ├── focus │ ├── CMakeLists.txt │ ├── ap_focus.c │ ├── focus.c │ └── main.c ├── formants │ ├── CMakeLists.txt │ ├── ap_formants.c │ ├── formants.c │ ├── formav.c │ └── main.c ├── grain │ ├── CMakeLists.txt │ ├── ap_grain.c │ ├── grain.c │ ├── grain1.c │ ├── graprepro.c │ └── main.c ├── hfperm │ ├── CMakeLists.txt │ ├── ap_hfperm.c │ ├── hfperm.c │ └── main.c ├── hilite │ ├── CMakeLists.txt │ ├── ap_hilite.c │ ├── hilite.c │ └── main.c ├── housekeep │ ├── CMakeLists.txt │ ├── ap_house.c │ ├── channels.c │ ├── clean.c │ ├── dump.c │ ├── dupl.c │ ├── main.c │ ├── respec.c │ └── sort.c ├── include │ ├── arrays.h │ ├── bitflags.h │ ├── blur.h │ ├── cdpar.h │ ├── cdparams.h │ ├── cdpmain.h │ ├── cdpstate.h │ ├── columns.h │ ├── combine.h │ ├── conditions.h │ ├── dircdp.h │ ├── distcon.h │ ├── distort.h │ ├── distort1.h │ ├── edit.h │ ├── envel.h │ ├── envel1.h │ ├── envlcon.h │ ├── extdcon.h │ ├── extend.h │ ├── extend1.h │ ├── filetype.h │ ├── filtcon.h │ ├── filters.h │ ├── filters1.h │ ├── flags.h │ ├── fmnts.h │ ├── focus.h │ ├── formants.h │ ├── globcon.h │ ├── graicon.h │ ├── grain.h │ ├── grain1.h │ ├── headread.h │ ├── hfperm.h │ ├── highlight.h │ ├── house.h │ ├── localcon.h │ ├── logic.h │ ├── menuno.h │ ├── mix.h │ ├── mix1.h │ ├── mixxcon.h │ ├── modeno.h │ ├── modicon.h │ ├── modify.h │ ├── modify1.h │ ├── morph.h │ ├── otherfile.h │ ├── paudition.h │ ├── pitch.h │ ├── pnames.h │ ├── processno.h │ ├── pvoc.h │ ├── repitch.h │ ├── science.h │ ├── sfdump.h │ ├── simple.h │ ├── sndinfo.h │ ├── speccon.h │ ├── special.h │ ├── specinfo.h │ ├── specpinfo.h │ ├── srates.h │ ├── standalone.h │ ├── strange.h │ ├── stretch.h │ ├── structures.h │ ├── synth.h │ ├── texture.h │ ├── texture1.h │ ├── tkglobals.h │ ├── txtucon.h │ ├── utils.h │ ├── vowels.h │ └── vowels2.h ├── makeprograms.sh ├── misc │ ├── CMakeLists.txt │ ├── brkdur.c │ ├── diskspace.c │ ├── fixgobo.c │ ├── gobo.c │ ├── gobosee.c │ ├── histconv.c │ ├── kbhit.c │ ├── listdate.c │ ├── logdate.c │ ├── maxsamp2.c │ ├── mxfft.c │ ├── paudition.c │ ├── pdisplay.c │ ├── pmodify.c │ ├── progmach.c │ ├── pview_flt.c │ ├── stretcha.c │ ├── tkusage.c │ ├── tkusage_other.c │ └── vuform.c ├── modify │ ├── CMakeLists.txt │ ├── ap_modify.c │ ├── brapcon.c │ ├── delay.c │ ├── gain.c │ ├── granula1.c │ ├── main.c │ ├── pan.c │ ├── radical.c │ └── strans.c ├── morph │ ├── CMakeLists.txt │ ├── ap_morph.c │ ├── main.c │ ├── makefile.linux │ └── morph.c ├── new │ ├── CMakeLists.txt │ ├── cantor.c │ ├── ceracu.c │ ├── chanphase.c │ ├── echo.c │ ├── filtrage.c │ ├── fracture.c │ ├── glisten.c │ ├── isolate.c │ ├── iterfof.c │ ├── iterline.c │ ├── iterlinef.c │ ├── madrid.c │ ├── newdelay.c │ ├── newmorph.c │ ├── newtex.c │ ├── packet.c │ ├── panorama.c │ ├── readme │ │ └── comments.txt │ ├── rejoin.c │ ├── selfsim.c │ ├── shifter.c │ ├── shrink.c │ ├── silend.c │ ├── specgrids.c │ ├── specsphinx.c │ ├── spectrum.c │ ├── spectwin.c │ ├── specvu.c │ ├── subtract.c │ ├── superaccu.c │ ├── synthesis.c │ ├── tangent.c │ ├── transit.c │ ├── tremolo.c │ └── tunevary.c ├── pagrab │ ├── CMakeLists.txt │ └── pagrab.c ├── paview │ ├── CMakeLists.txt │ └── paview.c ├── pitch │ ├── CMakeLists.txt │ ├── ap_pitch.c │ ├── main.c │ └── pitch.c ├── pitchinfo │ ├── CMakeLists.txt │ ├── ap_pinfo.c │ ├── main.c │ └── specpinfo.c ├── pv │ ├── CMakeLists.txt │ ├── ap_pvoc.c │ ├── main.c │ ├── mxfft.c │ └── pvoc.c ├── pview │ ├── CMakeLists.txt │ └── pview.c ├── repitch │ ├── CMakeLists.txt │ ├── ap_repitch.c │ ├── main.c │ └── repitch.c ├── sfsys │ ├── CMakeLists.txt │ ├── alias.c │ ├── alias.h │ ├── ieee80.c │ ├── ieee80.h │ ├── osbind.c │ ├── props.c │ ├── props.cpp │ ├── scandir.c │ ├── scandir.h │ ├── sfdir.c │ ├── sffuncs.h │ ├── sfsys.c │ ├── shortcuts.c │ └── snd.c ├── sfutils │ ├── CMakeLists.txt │ ├── dirsf.c │ ├── wildcard.c │ └── wildcard.h ├── sndinfo │ ├── CMakeLists.txt │ ├── ap_sndinfo.c │ ├── compare.c │ ├── main.c │ └── musunit.c ├── spec │ ├── CMakeLists.txt │ ├── ap_simple.c │ ├── main.c │ └── simple.c ├── specinfo │ ├── CMakeLists.txt │ ├── ap_specinfo.c │ ├── main.c │ └── specinfo.c ├── standalone │ ├── CMakeLists.txt │ ├── analjoin.c │ ├── brktopi.c │ ├── constrict.c │ ├── dshift.c │ ├── envnu.c │ ├── features.c │ ├── features.tcl │ ├── flutter.c │ ├── fofex.c │ ├── frame.c │ ├── freeze.c │ ├── gate.c │ ├── get_partials.c │ ├── grainex.c │ ├── hover.c │ ├── manysil.c │ ├── mchanpan.c │ ├── mchanrev.c │ ├── mchiter.c │ ├── mchshred.c │ ├── mchstereo.c │ ├── mchzig.c │ ├── mton.c │ ├── multimix.c │ ├── newmix.c │ ├── oneform.c │ ├── peakfind.c │ ├── phase.c │ ├── prefix.c │ ├── psow.c │ ├── ptobrk.c │ ├── retime.c │ ├── search.c │ ├── sethares.c │ ├── spacedesign.c │ ├── speclean.c │ ├── specnu.c │ ├── specross.c │ ├── strans_multi.c │ ├── texmchan.c │ ├── texprepromch.c │ ├── texture5mc.c │ ├── topantail2.c │ └── wrappage.c ├── strange │ ├── CMakeLists.txt │ ├── ap_strange.c │ ├── main.c │ └── strange.c ├── stretch │ ├── CMakeLists.txt │ ├── ap_stretch.c │ ├── main.c │ └── stretch.c ├── submix │ ├── CMakeLists.txt │ ├── ap_mix.c │ ├── inbetwee.c │ ├── main.c │ ├── mixmerge.c │ ├── mixprepro.c │ ├── mixshuf0.c │ ├── mixshuf1.c │ ├── mixshuf2.c │ ├── newmix0.c │ ├── newmix1.c │ ├── setupmix.c │ └── syncatt.c ├── synth │ ├── CMakeLists.txt │ ├── ap_synthesis.c │ ├── main.c │ ├── mxfft.c │ ├── pvoc_addon.c │ └── wave.c ├── tabedit │ ├── CMakeLists.txt │ ├── columns.c │ ├── columns0.c │ ├── columns1.c │ ├── columns2.c │ ├── columns3.c │ ├── columns4.c │ ├── columns5.c │ ├── columns6.c │ ├── getcol.c │ ├── putcol.c │ └── vectors.c ├── texture │ ├── CMakeLists.txt │ ├── ap_texture.c │ ├── main.c │ ├── texperm.c │ ├── texprepro.c │ ├── texture1.c │ ├── texture2.c │ ├── texture3.c │ ├── texture4.c │ └── texture5.c └── veryclean.sh ├── include ├── cdplib.h ├── chanmask.h ├── osbind.h ├── props.h └── sfsys.h └── libaaio └── libaaio-0.3.1.tar.bz2 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/README.md -------------------------------------------------------------------------------- /cmake/CheckAtomic.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/cmake/CheckAtomic.cmake -------------------------------------------------------------------------------- /cmake/CompilerOptimizations.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/cmake/CompilerOptimizations.cmake -------------------------------------------------------------------------------- /cmake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/cmake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /dev/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/CMakeLists.txt -------------------------------------------------------------------------------- /dev/Release/abfdcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/abfdcode -------------------------------------------------------------------------------- /dev/Release/abfpan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/abfpan -------------------------------------------------------------------------------- /dev/Release/abfpan2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/abfpan2 -------------------------------------------------------------------------------- /dev/Release/analjoin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/analjoin -------------------------------------------------------------------------------- /dev/Release/blur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/blur -------------------------------------------------------------------------------- /dev/Release/brkdur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/brkdur -------------------------------------------------------------------------------- /dev/Release/brktopi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/brktopi -------------------------------------------------------------------------------- /dev/Release/cantor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/cantor -------------------------------------------------------------------------------- /dev/Release/cdparams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/cdparams -------------------------------------------------------------------------------- /dev/Release/cdparams_other: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/cdparams_other -------------------------------------------------------------------------------- /dev/Release/cdparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/cdparse -------------------------------------------------------------------------------- /dev/Release/ceracu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/ceracu -------------------------------------------------------------------------------- /dev/Release/channelx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/channelx -------------------------------------------------------------------------------- /dev/Release/chanphase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/chanphase -------------------------------------------------------------------------------- /dev/Release/chorder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/chorder -------------------------------------------------------------------------------- /dev/Release/chxformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/chxformat -------------------------------------------------------------------------------- /dev/Release/columns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/columns -------------------------------------------------------------------------------- /dev/Release/combine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/combine -------------------------------------------------------------------------------- /dev/Release/constrict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/constrict -------------------------------------------------------------------------------- /dev/Release/copysfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/copysfx -------------------------------------------------------------------------------- /dev/Release/dirsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/dirsf -------------------------------------------------------------------------------- /dev/Release/diskspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/diskspace -------------------------------------------------------------------------------- /dev/Release/distort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/distort -------------------------------------------------------------------------------- /dev/Release/envel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/envel -------------------------------------------------------------------------------- /dev/Release/envnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/envnu -------------------------------------------------------------------------------- /dev/Release/extend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/extend -------------------------------------------------------------------------------- /dev/Release/fastconv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/fastconv -------------------------------------------------------------------------------- /dev/Release/features: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/features -------------------------------------------------------------------------------- /dev/Release/filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/filter -------------------------------------------------------------------------------- /dev/Release/filtrage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/filtrage -------------------------------------------------------------------------------- /dev/Release/fixgobo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/fixgobo -------------------------------------------------------------------------------- /dev/Release/flutter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/flutter -------------------------------------------------------------------------------- /dev/Release/fmdcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/fmdcode -------------------------------------------------------------------------------- /dev/Release/focus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/focus -------------------------------------------------------------------------------- /dev/Release/fofex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/fofex -------------------------------------------------------------------------------- /dev/Release/formants: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/formants -------------------------------------------------------------------------------- /dev/Release/fracture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/fracture -------------------------------------------------------------------------------- /dev/Release/frame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/frame -------------------------------------------------------------------------------- /dev/Release/freeze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/freeze -------------------------------------------------------------------------------- /dev/Release/gate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/gate -------------------------------------------------------------------------------- /dev/Release/get_partials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/get_partials -------------------------------------------------------------------------------- /dev/Release/getcol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/getcol -------------------------------------------------------------------------------- /dev/Release/glisten: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/glisten -------------------------------------------------------------------------------- /dev/Release/gobo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/gobo -------------------------------------------------------------------------------- /dev/Release/gobosee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/gobosee -------------------------------------------------------------------------------- /dev/Release/grain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/grain -------------------------------------------------------------------------------- /dev/Release/grainex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/grainex -------------------------------------------------------------------------------- /dev/Release/hfperm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/hfperm -------------------------------------------------------------------------------- /dev/Release/hilite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/hilite -------------------------------------------------------------------------------- /dev/Release/histconv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/histconv -------------------------------------------------------------------------------- /dev/Release/housekeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/housekeep -------------------------------------------------------------------------------- /dev/Release/hover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/hover -------------------------------------------------------------------------------- /dev/Release/interlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/interlx -------------------------------------------------------------------------------- /dev/Release/isolate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/isolate -------------------------------------------------------------------------------- /dev/Release/iterfof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/iterfof -------------------------------------------------------------------------------- /dev/Release/iterline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/iterline -------------------------------------------------------------------------------- /dev/Release/iterlinef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/iterlinef -------------------------------------------------------------------------------- /dev/Release/listaudevs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/listaudevs -------------------------------------------------------------------------------- /dev/Release/listdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/listdate -------------------------------------------------------------------------------- /dev/Release/logdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/logdate -------------------------------------------------------------------------------- /dev/Release/madrid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/madrid -------------------------------------------------------------------------------- /dev/Release/manysil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/manysil -------------------------------------------------------------------------------- /dev/Release/maxsamp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/maxsamp2 -------------------------------------------------------------------------------- /dev/Release/mchanpan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/mchanpan -------------------------------------------------------------------------------- /dev/Release/mchanrev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/mchanrev -------------------------------------------------------------------------------- /dev/Release/mchiter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/mchiter -------------------------------------------------------------------------------- /dev/Release/mchshred: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/mchshred -------------------------------------------------------------------------------- /dev/Release/mchstereo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/mchstereo -------------------------------------------------------------------------------- /dev/Release/mchzig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/mchzig -------------------------------------------------------------------------------- /dev/Release/modify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/modify -------------------------------------------------------------------------------- /dev/Release/morph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/morph -------------------------------------------------------------------------------- /dev/Release/mton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/mton -------------------------------------------------------------------------------- /dev/Release/multimix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/multimix -------------------------------------------------------------------------------- /dev/Release/newdelay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/newdelay -------------------------------------------------------------------------------- /dev/Release/newmix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/newmix -------------------------------------------------------------------------------- /dev/Release/newmorph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/newmorph -------------------------------------------------------------------------------- /dev/Release/newsynth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/newsynth -------------------------------------------------------------------------------- /dev/Release/newtex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/newtex -------------------------------------------------------------------------------- /dev/Release/njoin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/njoin -------------------------------------------------------------------------------- /dev/Release/nmix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/nmix -------------------------------------------------------------------------------- /dev/Release/oneform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/oneform -------------------------------------------------------------------------------- /dev/Release/packet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/packet -------------------------------------------------------------------------------- /dev/Release/pagrab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/pagrab -------------------------------------------------------------------------------- /dev/Release/panorama: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/panorama -------------------------------------------------------------------------------- /dev/Release/paplay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/paplay -------------------------------------------------------------------------------- /dev/Release/paudition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/paudition -------------------------------------------------------------------------------- /dev/Release/paview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/paview -------------------------------------------------------------------------------- /dev/Release/pdisplay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/pdisplay -------------------------------------------------------------------------------- /dev/Release/peak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/peak -------------------------------------------------------------------------------- /dev/Release/peakfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/peakfind -------------------------------------------------------------------------------- /dev/Release/phase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/phase -------------------------------------------------------------------------------- /dev/Release/pitch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/pitch -------------------------------------------------------------------------------- /dev/Release/pitchinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/pitchinfo -------------------------------------------------------------------------------- /dev/Release/pmodify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/pmodify -------------------------------------------------------------------------------- /dev/Release/prefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/prefix -------------------------------------------------------------------------------- /dev/Release/progmach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/progmach -------------------------------------------------------------------------------- /dev/Release/psow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/psow -------------------------------------------------------------------------------- /dev/Release/ptobrk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/ptobrk -------------------------------------------------------------------------------- /dev/Release/putcol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/putcol -------------------------------------------------------------------------------- /dev/Release/pview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/pview -------------------------------------------------------------------------------- /dev/Release/pvoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/pvoc -------------------------------------------------------------------------------- /dev/Release/pvplay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/pvplay -------------------------------------------------------------------------------- /dev/Release/recsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/recsf -------------------------------------------------------------------------------- /dev/Release/rejoin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/rejoin -------------------------------------------------------------------------------- /dev/Release/repitch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/repitch -------------------------------------------------------------------------------- /dev/Release/retime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/retime -------------------------------------------------------------------------------- /dev/Release/reverb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/reverb -------------------------------------------------------------------------------- /dev/Release/rmresp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/rmresp -------------------------------------------------------------------------------- /dev/Release/rmsinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/rmsinfo -------------------------------------------------------------------------------- /dev/Release/rmverb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/rmverb -------------------------------------------------------------------------------- /dev/Release/search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/search -------------------------------------------------------------------------------- /dev/Release/selfsim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/selfsim -------------------------------------------------------------------------------- /dev/Release/sfecho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/sfecho -------------------------------------------------------------------------------- /dev/Release/sfedit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/sfedit -------------------------------------------------------------------------------- /dev/Release/sfprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/sfprops -------------------------------------------------------------------------------- /dev/Release/shifter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/shifter -------------------------------------------------------------------------------- /dev/Release/shrink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/shrink -------------------------------------------------------------------------------- /dev/Release/silend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/silend -------------------------------------------------------------------------------- /dev/Release/sndinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/sndinfo -------------------------------------------------------------------------------- /dev/Release/spacedesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/spacedesign -------------------------------------------------------------------------------- /dev/Release/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/spec -------------------------------------------------------------------------------- /dev/Release/specgrids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/specgrids -------------------------------------------------------------------------------- /dev/Release/specinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/specinfo -------------------------------------------------------------------------------- /dev/Release/speclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/speclean -------------------------------------------------------------------------------- /dev/Release/specnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/specnu -------------------------------------------------------------------------------- /dev/Release/specross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/specross -------------------------------------------------------------------------------- /dev/Release/specsphinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/specsphinx -------------------------------------------------------------------------------- /dev/Release/spectrum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/spectrum -------------------------------------------------------------------------------- /dev/Release/spectwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/spectwin -------------------------------------------------------------------------------- /dev/Release/specvu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/specvu -------------------------------------------------------------------------------- /dev/Release/strange: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/strange -------------------------------------------------------------------------------- /dev/Release/strans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/strans -------------------------------------------------------------------------------- /dev/Release/stretch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/stretch -------------------------------------------------------------------------------- /dev/Release/stretcha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/stretcha -------------------------------------------------------------------------------- /dev/Release/submix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/submix -------------------------------------------------------------------------------- /dev/Release/subtract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/subtract -------------------------------------------------------------------------------- /dev/Release/superaccu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/superaccu -------------------------------------------------------------------------------- /dev/Release/synth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/synth -------------------------------------------------------------------------------- /dev/Release/tangent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/tangent -------------------------------------------------------------------------------- /dev/Release/tapdelay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/tapdelay -------------------------------------------------------------------------------- /dev/Release/texmchan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/texmchan -------------------------------------------------------------------------------- /dev/Release/texture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/texture -------------------------------------------------------------------------------- /dev/Release/tkusage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/tkusage -------------------------------------------------------------------------------- /dev/Release/tkusage_other: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/tkusage_other -------------------------------------------------------------------------------- /dev/Release/topantail2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/topantail2 -------------------------------------------------------------------------------- /dev/Release/transit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/transit -------------------------------------------------------------------------------- /dev/Release/tremolo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/tremolo -------------------------------------------------------------------------------- /dev/Release/tunevary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/tunevary -------------------------------------------------------------------------------- /dev/Release/vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/vectors -------------------------------------------------------------------------------- /dev/Release/vuform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/vuform -------------------------------------------------------------------------------- /dev/Release/wrappage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/Release/wrappage -------------------------------------------------------------------------------- /dev/blur/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/blur/CMakeLists.txt -------------------------------------------------------------------------------- /dev/blur/ap_blur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/blur/ap_blur.c -------------------------------------------------------------------------------- /dev/blur/blur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/blur/blur.c -------------------------------------------------------------------------------- /dev/blur/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/blur/main.c -------------------------------------------------------------------------------- /dev/cdp2k/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdp2k/CMakeLists.txt -------------------------------------------------------------------------------- /dev/cdp2k/cdp2k/cdp2k.xcodeproj/nuzrat1.mode1v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdp2k/cdp2k/cdp2k.xcodeproj/nuzrat1.mode1v3 -------------------------------------------------------------------------------- /dev/cdp2k/cdp2k/cdp2k.xcodeproj/nuzrat1.pbxuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdp2k/cdp2k/cdp2k.xcodeproj/nuzrat1.pbxuser -------------------------------------------------------------------------------- /dev/cdp2k/cdp2k/cdp2k.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdp2k/cdp2k/cdp2k.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dev/cdp2k/dzsetup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdp2k/dzsetup.c -------------------------------------------------------------------------------- /dev/cdp2k/formantsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdp2k/formantsg.c -------------------------------------------------------------------------------- /dev/cdp2k/mainfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdp2k/mainfuncs.c -------------------------------------------------------------------------------- /dev/cdp2k/parstruct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdp2k/parstruct.c -------------------------------------------------------------------------------- /dev/cdp2k/readdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdp2k/readdata.c -------------------------------------------------------------------------------- /dev/cdp2k/readfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdp2k/readfiles.c -------------------------------------------------------------------------------- /dev/cdp2k/special.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdp2k/special.c -------------------------------------------------------------------------------- /dev/cdp2k/tkinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdp2k/tkinput.c -------------------------------------------------------------------------------- /dev/cdp2k/tklib1-32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdp2k/tklib1-32.c -------------------------------------------------------------------------------- /dev/cdp2k/tklib1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdp2k/tklib1.c -------------------------------------------------------------------------------- /dev/cdp2k/tklib3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdp2k/tklib3.c -------------------------------------------------------------------------------- /dev/cdp2k/validate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdp2k/validate.c -------------------------------------------------------------------------------- /dev/cdp2k/writedata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdp2k/writedata.c -------------------------------------------------------------------------------- /dev/cdparams/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdparams/CMakeLists.txt -------------------------------------------------------------------------------- /dev/cdparams/cdparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdparams/cdparams.c -------------------------------------------------------------------------------- /dev/cdparams/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdparams/display.c -------------------------------------------------------------------------------- /dev/cdparams/flagnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdparams/flagnames.c -------------------------------------------------------------------------------- /dev/cdparams/parnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdparams/parnames.c -------------------------------------------------------------------------------- /dev/cdparams_other/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdparams_other/CMakeLists.txt -------------------------------------------------------------------------------- /dev/cdparams_other/cdparams_other.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdparams_other/cdparams_other.c -------------------------------------------------------------------------------- /dev/cdparse/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdparse/CMakeLists.txt -------------------------------------------------------------------------------- /dev/cdparse/cdparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdparse/cdparse.c -------------------------------------------------------------------------------- /dev/cdparse/cdparse_other.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/cdparse/cdparse_other.c -------------------------------------------------------------------------------- /dev/combine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/combine/CMakeLists.txt -------------------------------------------------------------------------------- /dev/combine/ap_combine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/combine/ap_combine.c -------------------------------------------------------------------------------- /dev/combine/combine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/combine/combine.c -------------------------------------------------------------------------------- /dev/combine/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/combine/main.c -------------------------------------------------------------------------------- /dev/distort/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/CMakeLists.txt -------------------------------------------------------------------------------- /dev/distort/ap_distort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/ap_distort.c -------------------------------------------------------------------------------- /dev/distort/disprepro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/disprepro.c -------------------------------------------------------------------------------- /dev/distort/distdel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/distdel.c -------------------------------------------------------------------------------- /dev/distort/distflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/distflt.c -------------------------------------------------------------------------------- /dev/distort/distintlv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/distintlv.c -------------------------------------------------------------------------------- /dev/distort/distort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/distort.c -------------------------------------------------------------------------------- /dev/distort/distorta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/distorta.c -------------------------------------------------------------------------------- /dev/distort/distorte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/distorte.c -------------------------------------------------------------------------------- /dev/distort/distortf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/distortf.c -------------------------------------------------------------------------------- /dev/distort/distorth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/distorth.c -------------------------------------------------------------------------------- /dev/distort/distortion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/distortion.c -------------------------------------------------------------------------------- /dev/distort/distortm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/distortm.c -------------------------------------------------------------------------------- /dev/distort/distorto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/distorto.c -------------------------------------------------------------------------------- /dev/distort/distortp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/distortp.c -------------------------------------------------------------------------------- /dev/distort/distortr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/distortr.c -------------------------------------------------------------------------------- /dev/distort/distorts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/distorts.c -------------------------------------------------------------------------------- /dev/distort/distresize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/distresize.c -------------------------------------------------------------------------------- /dev/distort/distrpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/distrpl.c -------------------------------------------------------------------------------- /dev/distort/distrpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/distrpt.c -------------------------------------------------------------------------------- /dev/distort/disttel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/disttel.c -------------------------------------------------------------------------------- /dev/distort/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/main.c -------------------------------------------------------------------------------- /dev/distort/pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/distort/pulse.c -------------------------------------------------------------------------------- /dev/editsf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/editsf/CMakeLists.txt -------------------------------------------------------------------------------- /dev/editsf/ap_edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/editsf/ap_edit.c -------------------------------------------------------------------------------- /dev/editsf/cut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/editsf/cut.c -------------------------------------------------------------------------------- /dev/editsf/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/editsf/main.c -------------------------------------------------------------------------------- /dev/editsf/twixt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/editsf/twixt.c -------------------------------------------------------------------------------- /dev/env/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/env/CMakeLists.txt -------------------------------------------------------------------------------- /dev/env/ap_envel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/env/ap_envel.c -------------------------------------------------------------------------------- /dev/env/envel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/env/envel.c -------------------------------------------------------------------------------- /dev/env/envfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/env/envfuncs.c -------------------------------------------------------------------------------- /dev/env/envimpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/env/envimpos.c -------------------------------------------------------------------------------- /dev/env/envprepro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/env/envprepro.c -------------------------------------------------------------------------------- /dev/env/envprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/env/envprocess.c -------------------------------------------------------------------------------- /dev/env/envxtract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/env/envxtract.c -------------------------------------------------------------------------------- /dev/env/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/env/main.c -------------------------------------------------------------------------------- /dev/env/pluck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/env/pluck.c -------------------------------------------------------------------------------- /dev/extend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/extend/CMakeLists.txt -------------------------------------------------------------------------------- /dev/extend/ap_extend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/extend/ap_extend.c -------------------------------------------------------------------------------- /dev/extend/drunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/extend/drunk.c -------------------------------------------------------------------------------- /dev/extend/drunkfix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/extend/drunkfix.c -------------------------------------------------------------------------------- /dev/extend/extend.xcodeproj/azim.mode1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/extend/extend.xcodeproj/azim.mode1 -------------------------------------------------------------------------------- /dev/extend/extend.xcodeproj/azim.pbxuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/extend/extend.xcodeproj/azim.pbxuser -------------------------------------------------------------------------------- /dev/extend/extend.xcodeproj/nuzrat1.mode1v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/extend/extend.xcodeproj/nuzrat1.mode1v3 -------------------------------------------------------------------------------- /dev/extend/extend.xcodeproj/nuzrat1.pbxuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/extend/extend.xcodeproj/nuzrat1.pbxuser -------------------------------------------------------------------------------- /dev/extend/extend.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/extend/extend.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dev/extend/extprepro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/extend/extprepro.c -------------------------------------------------------------------------------- /dev/extend/iterate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/extend/iterate.c -------------------------------------------------------------------------------- /dev/extend/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/extend/main.c -------------------------------------------------------------------------------- /dev/extend/zigzag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/extend/zigzag.c -------------------------------------------------------------------------------- /dev/externals/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/CMakeLists.txt -------------------------------------------------------------------------------- /dev/externals/fastconv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/fastconv/CMakeLists.txt -------------------------------------------------------------------------------- /dev/externals/fastconv/fconv-fftw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/fastconv/fconv-fftw.cpp -------------------------------------------------------------------------------- /dev/externals/fastconv/fconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/fastconv/fconv.cpp -------------------------------------------------------------------------------- /dev/externals/fastconv/genrespframe2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/fastconv/genrespframe2.cpp -------------------------------------------------------------------------------- /dev/externals/fastconv/mxfftd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/fastconv/mxfftd.c -------------------------------------------------------------------------------- /dev/externals/fastconv/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/fastconv/readme.txt -------------------------------------------------------------------------------- /dev/externals/include/portsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/include/portsf.h -------------------------------------------------------------------------------- /dev/externals/mctools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/CMakeLists.txt -------------------------------------------------------------------------------- /dev/externals/mctools/Release/Toolkit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/Release/Toolkit.pdf -------------------------------------------------------------------------------- /dev/externals/mctools/Release/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/Release/readme.txt -------------------------------------------------------------------------------- /dev/externals/mctools/Release/usingTerminal.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/Release/usingTerminal.rtf -------------------------------------------------------------------------------- /dev/externals/mctools/abfdcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/abfdcode.cpp -------------------------------------------------------------------------------- /dev/externals/mctools/abfdcode2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/abfdcode2.cpp -------------------------------------------------------------------------------- /dev/externals/mctools/abfpan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/abfpan.cpp -------------------------------------------------------------------------------- /dev/externals/mctools/abfpan2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/abfpan2.cpp -------------------------------------------------------------------------------- /dev/externals/mctools/channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/channel.c -------------------------------------------------------------------------------- /dev/externals/mctools/chorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/chorder.c -------------------------------------------------------------------------------- /dev/externals/mctools/chxformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/chxformat.c -------------------------------------------------------------------------------- /dev/externals/mctools/copysf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/copysf.c -------------------------------------------------------------------------------- /dev/externals/mctools/fmdcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/fmdcode.c -------------------------------------------------------------------------------- /dev/externals/mctools/fmdcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/fmdcode.h -------------------------------------------------------------------------------- /dev/externals/mctools/fmhcube1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/fmhcube1.txt -------------------------------------------------------------------------------- /dev/externals/mctools/fmhfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/fmhfuncs.c -------------------------------------------------------------------------------- /dev/externals/mctools/interlx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/interlx.c -------------------------------------------------------------------------------- /dev/externals/mctools/njoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/njoin.c -------------------------------------------------------------------------------- /dev/externals/mctools/nmix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/nmix.c -------------------------------------------------------------------------------- /dev/externals/mctools/rmsinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/rmsinfo.cpp -------------------------------------------------------------------------------- /dev/externals/mctools/sfprops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/mctools/sfprops.c -------------------------------------------------------------------------------- /dev/externals/paprogs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/CMakeLists.txt -------------------------------------------------------------------------------- /dev/externals/paprogs/dx9mgw.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/dx9mgw.zip -------------------------------------------------------------------------------- /dev/externals/paprogs/listaudevs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/listaudevs/CMakeLists.txt -------------------------------------------------------------------------------- /dev/externals/paprogs/listaudevs/devs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/listaudevs/devs.c -------------------------------------------------------------------------------- /dev/externals/paprogs/listaudevs/orig_Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/listaudevs/orig_Makefile -------------------------------------------------------------------------------- /dev/externals/paprogs/pa_stable_v19_20140130.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/pa_stable_v19_20140130.tgz -------------------------------------------------------------------------------- /dev/externals/paprogs/palinuxbuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/palinuxbuild.txt -------------------------------------------------------------------------------- /dev/externals/paprogs/pamacbuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/pamacbuild.txt -------------------------------------------------------------------------------- /dev/externals/paprogs/pamingwbuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/pamingwbuild.txt -------------------------------------------------------------------------------- /dev/externals/paprogs/paplay/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/paplay/CMakeLists.txt -------------------------------------------------------------------------------- /dev/externals/paprogs/paplay/fmdcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/paplay/fmdcode.h -------------------------------------------------------------------------------- /dev/externals/paprogs/paplay/fmhfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/paplay/fmhfuncs.c -------------------------------------------------------------------------------- /dev/externals/paprogs/paplay/paplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/paplay/paplay.c -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/pvplay/CMakeLists.txt -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/Toolkit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/pvplay/Toolkit.pdf -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/fmdcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/pvplay/fmdcode.h -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/fmhfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/pvplay/fmhfuncs.c -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/mxfft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/pvplay/mxfft.c -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/pvdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/pvplay/pvdefs.h -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/pvfileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/pvplay/pvfileio.c -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/pvfileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/pvplay/pvfileio.h -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/pvoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/pvplay/pvoc.h -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/pvoc2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/pvplay/pvoc2.cpp -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/pvplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/pvplay/pvplay.cpp -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/pvplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/pvplay/pvplay.h -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/pvpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/pvplay/pvpp.h -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/pvthreads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/pvplay/pvthreads.cpp -------------------------------------------------------------------------------- /dev/externals/paprogs/recsf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/recsf/CMakeLists.txt -------------------------------------------------------------------------------- /dev/externals/paprogs/recsf/recsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/paprogs/recsf/recsf.c -------------------------------------------------------------------------------- /dev/externals/portsf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/portsf/CMakeLists.txt -------------------------------------------------------------------------------- /dev/externals/portsf/ieee80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/portsf/ieee80.c -------------------------------------------------------------------------------- /dev/externals/portsf/ieee80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/portsf/ieee80.h -------------------------------------------------------------------------------- /dev/externals/portsf/portsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/portsf/portsf.c -------------------------------------------------------------------------------- /dev/externals/reverb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/reverb/CMakeLists.txt -------------------------------------------------------------------------------- /dev/externals/reverb/LARGERM.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/reverb/LARGERM.TXT -------------------------------------------------------------------------------- /dev/externals/reverb/MEDIUMRM.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/reverb/MEDIUMRM.TXT -------------------------------------------------------------------------------- /dev/externals/reverb/POS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/reverb/POS.TXT -------------------------------------------------------------------------------- /dev/externals/reverb/allpass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/reverb/allpass.c -------------------------------------------------------------------------------- /dev/externals/reverb/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/reverb/delay.c -------------------------------------------------------------------------------- /dev/externals/reverb/diffuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/reverb/diffuse.h -------------------------------------------------------------------------------- /dev/externals/reverb/lpcomb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/reverb/lpcomb.cpp -------------------------------------------------------------------------------- /dev/externals/reverb/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/reverb/readme.txt -------------------------------------------------------------------------------- /dev/externals/reverb/reflect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/reverb/reflect.cpp -------------------------------------------------------------------------------- /dev/externals/reverb/reflect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/reverb/reflect.h -------------------------------------------------------------------------------- /dev/externals/reverb/reverb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/reverb/reverb.cpp -------------------------------------------------------------------------------- /dev/externals/reverb/reverberator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/reverb/reverberator.cpp -------------------------------------------------------------------------------- /dev/externals/reverb/reverberator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/reverb/reverberator.h -------------------------------------------------------------------------------- /dev/externals/reverb/rmverb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/reverb/rmverb.cpp -------------------------------------------------------------------------------- /dev/externals/reverb/roomresp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/reverb/roomresp.cpp -------------------------------------------------------------------------------- /dev/externals/reverb/smalldiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/reverb/smalldiff.cpp -------------------------------------------------------------------------------- /dev/externals/reverb/tdelaymain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/reverb/tdelaymain.cpp -------------------------------------------------------------------------------- /dev/externals/reverb/wavetable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/reverb/wavetable.cpp -------------------------------------------------------------------------------- /dev/externals/reverb/wavetable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/externals/reverb/wavetable.h -------------------------------------------------------------------------------- /dev/filter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/filter/CMakeLists.txt -------------------------------------------------------------------------------- /dev/filter/ap_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/filter/ap_filter.c -------------------------------------------------------------------------------- /dev/filter/filters0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/filter/filters0.c -------------------------------------------------------------------------------- /dev/filter/filters1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/filter/filters1.c -------------------------------------------------------------------------------- /dev/filter/fltpcon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/filter/fltpcon.c -------------------------------------------------------------------------------- /dev/filter/fltprepro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/filter/fltprepro.c -------------------------------------------------------------------------------- /dev/filter/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/filter/main.c -------------------------------------------------------------------------------- /dev/focus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/focus/CMakeLists.txt -------------------------------------------------------------------------------- /dev/focus/ap_focus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/focus/ap_focus.c -------------------------------------------------------------------------------- /dev/focus/focus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/focus/focus.c -------------------------------------------------------------------------------- /dev/focus/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/focus/main.c -------------------------------------------------------------------------------- /dev/formants/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/formants/CMakeLists.txt -------------------------------------------------------------------------------- /dev/formants/ap_formants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/formants/ap_formants.c -------------------------------------------------------------------------------- /dev/formants/formants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/formants/formants.c -------------------------------------------------------------------------------- /dev/formants/formav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/formants/formav.c -------------------------------------------------------------------------------- /dev/formants/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/formants/main.c -------------------------------------------------------------------------------- /dev/grain/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/grain/CMakeLists.txt -------------------------------------------------------------------------------- /dev/grain/ap_grain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/grain/ap_grain.c -------------------------------------------------------------------------------- /dev/grain/grain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/grain/grain.c -------------------------------------------------------------------------------- /dev/grain/grain1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/grain/grain1.c -------------------------------------------------------------------------------- /dev/grain/graprepro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/grain/graprepro.c -------------------------------------------------------------------------------- /dev/grain/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/grain/main.c -------------------------------------------------------------------------------- /dev/hfperm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/hfperm/CMakeLists.txt -------------------------------------------------------------------------------- /dev/hfperm/ap_hfperm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/hfperm/ap_hfperm.c -------------------------------------------------------------------------------- /dev/hfperm/hfperm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/hfperm/hfperm.c -------------------------------------------------------------------------------- /dev/hfperm/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/hfperm/main.c -------------------------------------------------------------------------------- /dev/hilite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/hilite/CMakeLists.txt -------------------------------------------------------------------------------- /dev/hilite/ap_hilite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/hilite/ap_hilite.c -------------------------------------------------------------------------------- /dev/hilite/hilite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/hilite/hilite.c -------------------------------------------------------------------------------- /dev/hilite/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/hilite/main.c -------------------------------------------------------------------------------- /dev/housekeep/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/housekeep/CMakeLists.txt -------------------------------------------------------------------------------- /dev/housekeep/ap_house.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/housekeep/ap_house.c -------------------------------------------------------------------------------- /dev/housekeep/channels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/housekeep/channels.c -------------------------------------------------------------------------------- /dev/housekeep/clean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/housekeep/clean.c -------------------------------------------------------------------------------- /dev/housekeep/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/housekeep/dump.c -------------------------------------------------------------------------------- /dev/housekeep/dupl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/housekeep/dupl.c -------------------------------------------------------------------------------- /dev/housekeep/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/housekeep/main.c -------------------------------------------------------------------------------- /dev/housekeep/respec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/housekeep/respec.c -------------------------------------------------------------------------------- /dev/housekeep/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/housekeep/sort.c -------------------------------------------------------------------------------- /dev/include/arrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/arrays.h -------------------------------------------------------------------------------- /dev/include/bitflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/bitflags.h -------------------------------------------------------------------------------- /dev/include/blur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/blur.h -------------------------------------------------------------------------------- /dev/include/cdpar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/cdpar.h -------------------------------------------------------------------------------- /dev/include/cdparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/cdparams.h -------------------------------------------------------------------------------- /dev/include/cdpmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/cdpmain.h -------------------------------------------------------------------------------- /dev/include/cdpstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/cdpstate.h -------------------------------------------------------------------------------- /dev/include/columns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/columns.h -------------------------------------------------------------------------------- /dev/include/combine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/combine.h -------------------------------------------------------------------------------- /dev/include/conditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/conditions.h -------------------------------------------------------------------------------- /dev/include/dircdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/dircdp.h -------------------------------------------------------------------------------- /dev/include/distcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/distcon.h -------------------------------------------------------------------------------- /dev/include/distort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/distort.h -------------------------------------------------------------------------------- /dev/include/distort1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/distort1.h -------------------------------------------------------------------------------- /dev/include/edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/edit.h -------------------------------------------------------------------------------- /dev/include/envel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/envel.h -------------------------------------------------------------------------------- /dev/include/envel1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/envel1.h -------------------------------------------------------------------------------- /dev/include/envlcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/envlcon.h -------------------------------------------------------------------------------- /dev/include/extdcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/extdcon.h -------------------------------------------------------------------------------- /dev/include/extend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/extend.h -------------------------------------------------------------------------------- /dev/include/extend1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/extend1.h -------------------------------------------------------------------------------- /dev/include/filetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/filetype.h -------------------------------------------------------------------------------- /dev/include/filtcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/filtcon.h -------------------------------------------------------------------------------- /dev/include/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/filters.h -------------------------------------------------------------------------------- /dev/include/filters1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/filters1.h -------------------------------------------------------------------------------- /dev/include/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/flags.h -------------------------------------------------------------------------------- /dev/include/fmnts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/fmnts.h -------------------------------------------------------------------------------- /dev/include/focus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/focus.h -------------------------------------------------------------------------------- /dev/include/formants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/formants.h -------------------------------------------------------------------------------- /dev/include/globcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/globcon.h -------------------------------------------------------------------------------- /dev/include/graicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/graicon.h -------------------------------------------------------------------------------- /dev/include/grain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/grain.h -------------------------------------------------------------------------------- /dev/include/grain1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/grain1.h -------------------------------------------------------------------------------- /dev/include/headread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/headread.h -------------------------------------------------------------------------------- /dev/include/hfperm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/hfperm.h -------------------------------------------------------------------------------- /dev/include/highlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/highlight.h -------------------------------------------------------------------------------- /dev/include/house.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/house.h -------------------------------------------------------------------------------- /dev/include/localcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/localcon.h -------------------------------------------------------------------------------- /dev/include/logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/logic.h -------------------------------------------------------------------------------- /dev/include/menuno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/menuno.h -------------------------------------------------------------------------------- /dev/include/mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/mix.h -------------------------------------------------------------------------------- /dev/include/mix1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/mix1.h -------------------------------------------------------------------------------- /dev/include/mixxcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/mixxcon.h -------------------------------------------------------------------------------- /dev/include/modeno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/modeno.h -------------------------------------------------------------------------------- /dev/include/modicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/modicon.h -------------------------------------------------------------------------------- /dev/include/modify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/modify.h -------------------------------------------------------------------------------- /dev/include/modify1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/modify1.h -------------------------------------------------------------------------------- /dev/include/morph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/morph.h -------------------------------------------------------------------------------- /dev/include/otherfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/otherfile.h -------------------------------------------------------------------------------- /dev/include/paudition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/paudition.h -------------------------------------------------------------------------------- /dev/include/pitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/pitch.h -------------------------------------------------------------------------------- /dev/include/pnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/pnames.h -------------------------------------------------------------------------------- /dev/include/processno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/processno.h -------------------------------------------------------------------------------- /dev/include/pvoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/pvoc.h -------------------------------------------------------------------------------- /dev/include/repitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/repitch.h -------------------------------------------------------------------------------- /dev/include/science.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/science.h -------------------------------------------------------------------------------- /dev/include/sfdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/sfdump.h -------------------------------------------------------------------------------- /dev/include/simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/simple.h -------------------------------------------------------------------------------- /dev/include/sndinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/sndinfo.h -------------------------------------------------------------------------------- /dev/include/speccon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/speccon.h -------------------------------------------------------------------------------- /dev/include/special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/special.h -------------------------------------------------------------------------------- /dev/include/specinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/specinfo.h -------------------------------------------------------------------------------- /dev/include/specpinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/specpinfo.h -------------------------------------------------------------------------------- /dev/include/srates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/srates.h -------------------------------------------------------------------------------- /dev/include/standalone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/standalone.h -------------------------------------------------------------------------------- /dev/include/strange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/strange.h -------------------------------------------------------------------------------- /dev/include/stretch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/stretch.h -------------------------------------------------------------------------------- /dev/include/structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/structures.h -------------------------------------------------------------------------------- /dev/include/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/synth.h -------------------------------------------------------------------------------- /dev/include/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/texture.h -------------------------------------------------------------------------------- /dev/include/texture1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/texture1.h -------------------------------------------------------------------------------- /dev/include/tkglobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/tkglobals.h -------------------------------------------------------------------------------- /dev/include/txtucon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/txtucon.h -------------------------------------------------------------------------------- /dev/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/utils.h -------------------------------------------------------------------------------- /dev/include/vowels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/vowels.h -------------------------------------------------------------------------------- /dev/include/vowels2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/include/vowels2.h -------------------------------------------------------------------------------- /dev/makeprograms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/makeprograms.sh -------------------------------------------------------------------------------- /dev/misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/CMakeLists.txt -------------------------------------------------------------------------------- /dev/misc/brkdur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/brkdur.c -------------------------------------------------------------------------------- /dev/misc/diskspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/diskspace.c -------------------------------------------------------------------------------- /dev/misc/fixgobo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/fixgobo.c -------------------------------------------------------------------------------- /dev/misc/gobo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/gobo.c -------------------------------------------------------------------------------- /dev/misc/gobosee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/gobosee.c -------------------------------------------------------------------------------- /dev/misc/histconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/histconv.c -------------------------------------------------------------------------------- /dev/misc/kbhit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/kbhit.c -------------------------------------------------------------------------------- /dev/misc/listdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/listdate.c -------------------------------------------------------------------------------- /dev/misc/logdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/logdate.c -------------------------------------------------------------------------------- /dev/misc/maxsamp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/maxsamp2.c -------------------------------------------------------------------------------- /dev/misc/mxfft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/mxfft.c -------------------------------------------------------------------------------- /dev/misc/paudition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/paudition.c -------------------------------------------------------------------------------- /dev/misc/pdisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/pdisplay.c -------------------------------------------------------------------------------- /dev/misc/pmodify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/pmodify.c -------------------------------------------------------------------------------- /dev/misc/progmach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/progmach.c -------------------------------------------------------------------------------- /dev/misc/pview_flt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/pview_flt.c -------------------------------------------------------------------------------- /dev/misc/stretcha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/stretcha.c -------------------------------------------------------------------------------- /dev/misc/tkusage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/tkusage.c -------------------------------------------------------------------------------- /dev/misc/tkusage_other.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/tkusage_other.c -------------------------------------------------------------------------------- /dev/misc/vuform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/misc/vuform.c -------------------------------------------------------------------------------- /dev/modify/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/modify/CMakeLists.txt -------------------------------------------------------------------------------- /dev/modify/ap_modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/modify/ap_modify.c -------------------------------------------------------------------------------- /dev/modify/brapcon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/modify/brapcon.c -------------------------------------------------------------------------------- /dev/modify/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/modify/delay.c -------------------------------------------------------------------------------- /dev/modify/gain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/modify/gain.c -------------------------------------------------------------------------------- /dev/modify/granula1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/modify/granula1.c -------------------------------------------------------------------------------- /dev/modify/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/modify/main.c -------------------------------------------------------------------------------- /dev/modify/pan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/modify/pan.c -------------------------------------------------------------------------------- /dev/modify/radical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/modify/radical.c -------------------------------------------------------------------------------- /dev/modify/strans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/modify/strans.c -------------------------------------------------------------------------------- /dev/morph/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/morph/CMakeLists.txt -------------------------------------------------------------------------------- /dev/morph/ap_morph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/morph/ap_morph.c -------------------------------------------------------------------------------- /dev/morph/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/morph/main.c -------------------------------------------------------------------------------- /dev/morph/makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/morph/makefile.linux -------------------------------------------------------------------------------- /dev/morph/morph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/morph/morph.c -------------------------------------------------------------------------------- /dev/new/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/CMakeLists.txt -------------------------------------------------------------------------------- /dev/new/cantor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/cantor.c -------------------------------------------------------------------------------- /dev/new/ceracu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/ceracu.c -------------------------------------------------------------------------------- /dev/new/chanphase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/chanphase.c -------------------------------------------------------------------------------- /dev/new/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/echo.c -------------------------------------------------------------------------------- /dev/new/filtrage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/filtrage.c -------------------------------------------------------------------------------- /dev/new/fracture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/fracture.c -------------------------------------------------------------------------------- /dev/new/glisten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/glisten.c -------------------------------------------------------------------------------- /dev/new/isolate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/isolate.c -------------------------------------------------------------------------------- /dev/new/iterfof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/iterfof.c -------------------------------------------------------------------------------- /dev/new/iterline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/iterline.c -------------------------------------------------------------------------------- /dev/new/iterlinef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/iterlinef.c -------------------------------------------------------------------------------- /dev/new/madrid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/madrid.c -------------------------------------------------------------------------------- /dev/new/newdelay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/newdelay.c -------------------------------------------------------------------------------- /dev/new/newmorph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/newmorph.c -------------------------------------------------------------------------------- /dev/new/newtex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/newtex.c -------------------------------------------------------------------------------- /dev/new/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/packet.c -------------------------------------------------------------------------------- /dev/new/panorama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/panorama.c -------------------------------------------------------------------------------- /dev/new/readme/comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/readme/comments.txt -------------------------------------------------------------------------------- /dev/new/rejoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/rejoin.c -------------------------------------------------------------------------------- /dev/new/selfsim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/selfsim.c -------------------------------------------------------------------------------- /dev/new/shifter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/shifter.c -------------------------------------------------------------------------------- /dev/new/shrink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/shrink.c -------------------------------------------------------------------------------- /dev/new/silend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/silend.c -------------------------------------------------------------------------------- /dev/new/specgrids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/specgrids.c -------------------------------------------------------------------------------- /dev/new/specsphinx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/specsphinx.c -------------------------------------------------------------------------------- /dev/new/spectrum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/spectrum.c -------------------------------------------------------------------------------- /dev/new/spectwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/spectwin.c -------------------------------------------------------------------------------- /dev/new/specvu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/specvu.c -------------------------------------------------------------------------------- /dev/new/subtract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/subtract.c -------------------------------------------------------------------------------- /dev/new/superaccu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/superaccu.c -------------------------------------------------------------------------------- /dev/new/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/synthesis.c -------------------------------------------------------------------------------- /dev/new/tangent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/tangent.c -------------------------------------------------------------------------------- /dev/new/transit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/transit.c -------------------------------------------------------------------------------- /dev/new/tremolo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/tremolo.c -------------------------------------------------------------------------------- /dev/new/tunevary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/new/tunevary.c -------------------------------------------------------------------------------- /dev/pagrab/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/pagrab/CMakeLists.txt -------------------------------------------------------------------------------- /dev/pagrab/pagrab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/pagrab/pagrab.c -------------------------------------------------------------------------------- /dev/paview/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/paview/CMakeLists.txt -------------------------------------------------------------------------------- /dev/paview/paview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/paview/paview.c -------------------------------------------------------------------------------- /dev/pitch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/pitch/CMakeLists.txt -------------------------------------------------------------------------------- /dev/pitch/ap_pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/pitch/ap_pitch.c -------------------------------------------------------------------------------- /dev/pitch/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/pitch/main.c -------------------------------------------------------------------------------- /dev/pitch/pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/pitch/pitch.c -------------------------------------------------------------------------------- /dev/pitchinfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/pitchinfo/CMakeLists.txt -------------------------------------------------------------------------------- /dev/pitchinfo/ap_pinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/pitchinfo/ap_pinfo.c -------------------------------------------------------------------------------- /dev/pitchinfo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/pitchinfo/main.c -------------------------------------------------------------------------------- /dev/pitchinfo/specpinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/pitchinfo/specpinfo.c -------------------------------------------------------------------------------- /dev/pv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/pv/CMakeLists.txt -------------------------------------------------------------------------------- /dev/pv/ap_pvoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/pv/ap_pvoc.c -------------------------------------------------------------------------------- /dev/pv/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/pv/main.c -------------------------------------------------------------------------------- /dev/pv/mxfft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/pv/mxfft.c -------------------------------------------------------------------------------- /dev/pv/pvoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/pv/pvoc.c -------------------------------------------------------------------------------- /dev/pview/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/pview/CMakeLists.txt -------------------------------------------------------------------------------- /dev/pview/pview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/pview/pview.c -------------------------------------------------------------------------------- /dev/repitch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/repitch/CMakeLists.txt -------------------------------------------------------------------------------- /dev/repitch/ap_repitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/repitch/ap_repitch.c -------------------------------------------------------------------------------- /dev/repitch/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/repitch/main.c -------------------------------------------------------------------------------- /dev/repitch/repitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/repitch/repitch.c -------------------------------------------------------------------------------- /dev/sfsys/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sfsys/CMakeLists.txt -------------------------------------------------------------------------------- /dev/sfsys/alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sfsys/alias.c -------------------------------------------------------------------------------- /dev/sfsys/alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sfsys/alias.h -------------------------------------------------------------------------------- /dev/sfsys/ieee80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sfsys/ieee80.c -------------------------------------------------------------------------------- /dev/sfsys/ieee80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sfsys/ieee80.h -------------------------------------------------------------------------------- /dev/sfsys/osbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sfsys/osbind.c -------------------------------------------------------------------------------- /dev/sfsys/props.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sfsys/props.c -------------------------------------------------------------------------------- /dev/sfsys/props.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sfsys/props.cpp -------------------------------------------------------------------------------- /dev/sfsys/scandir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sfsys/scandir.c -------------------------------------------------------------------------------- /dev/sfsys/scandir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sfsys/scandir.h -------------------------------------------------------------------------------- /dev/sfsys/sfdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sfsys/sfdir.c -------------------------------------------------------------------------------- /dev/sfsys/sffuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sfsys/sffuncs.h -------------------------------------------------------------------------------- /dev/sfsys/sfsys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sfsys/sfsys.c -------------------------------------------------------------------------------- /dev/sfsys/shortcuts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sfsys/shortcuts.c -------------------------------------------------------------------------------- /dev/sfsys/snd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sfsys/snd.c -------------------------------------------------------------------------------- /dev/sfutils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sfutils/CMakeLists.txt -------------------------------------------------------------------------------- /dev/sfutils/dirsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sfutils/dirsf.c -------------------------------------------------------------------------------- /dev/sfutils/wildcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sfutils/wildcard.c -------------------------------------------------------------------------------- /dev/sfutils/wildcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sfutils/wildcard.h -------------------------------------------------------------------------------- /dev/sndinfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sndinfo/CMakeLists.txt -------------------------------------------------------------------------------- /dev/sndinfo/ap_sndinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sndinfo/ap_sndinfo.c -------------------------------------------------------------------------------- /dev/sndinfo/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sndinfo/compare.c -------------------------------------------------------------------------------- /dev/sndinfo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sndinfo/main.c -------------------------------------------------------------------------------- /dev/sndinfo/musunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/sndinfo/musunit.c -------------------------------------------------------------------------------- /dev/spec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/spec/CMakeLists.txt -------------------------------------------------------------------------------- /dev/spec/ap_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/spec/ap_simple.c -------------------------------------------------------------------------------- /dev/spec/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/spec/main.c -------------------------------------------------------------------------------- /dev/spec/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/spec/simple.c -------------------------------------------------------------------------------- /dev/specinfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/specinfo/CMakeLists.txt -------------------------------------------------------------------------------- /dev/specinfo/ap_specinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/specinfo/ap_specinfo.c -------------------------------------------------------------------------------- /dev/specinfo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/specinfo/main.c -------------------------------------------------------------------------------- /dev/specinfo/specinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/specinfo/specinfo.c -------------------------------------------------------------------------------- /dev/standalone/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/CMakeLists.txt -------------------------------------------------------------------------------- /dev/standalone/analjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/analjoin.c -------------------------------------------------------------------------------- /dev/standalone/brktopi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/brktopi.c -------------------------------------------------------------------------------- /dev/standalone/constrict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/constrict.c -------------------------------------------------------------------------------- /dev/standalone/dshift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/dshift.c -------------------------------------------------------------------------------- /dev/standalone/envnu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/envnu.c -------------------------------------------------------------------------------- /dev/standalone/features.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/features.c -------------------------------------------------------------------------------- /dev/standalone/features.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/features.tcl -------------------------------------------------------------------------------- /dev/standalone/flutter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/flutter.c -------------------------------------------------------------------------------- /dev/standalone/fofex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/fofex.c -------------------------------------------------------------------------------- /dev/standalone/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/frame.c -------------------------------------------------------------------------------- /dev/standalone/freeze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/freeze.c -------------------------------------------------------------------------------- /dev/standalone/gate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/gate.c -------------------------------------------------------------------------------- /dev/standalone/get_partials.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/get_partials.c -------------------------------------------------------------------------------- /dev/standalone/grainex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/grainex.c -------------------------------------------------------------------------------- /dev/standalone/hover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/hover.c -------------------------------------------------------------------------------- /dev/standalone/manysil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/manysil.c -------------------------------------------------------------------------------- /dev/standalone/mchanpan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/mchanpan.c -------------------------------------------------------------------------------- /dev/standalone/mchanrev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/mchanrev.c -------------------------------------------------------------------------------- /dev/standalone/mchiter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/mchiter.c -------------------------------------------------------------------------------- /dev/standalone/mchshred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/mchshred.c -------------------------------------------------------------------------------- /dev/standalone/mchstereo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/mchstereo.c -------------------------------------------------------------------------------- /dev/standalone/mchzig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/mchzig.c -------------------------------------------------------------------------------- /dev/standalone/mton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/mton.c -------------------------------------------------------------------------------- /dev/standalone/multimix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/multimix.c -------------------------------------------------------------------------------- /dev/standalone/newmix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/newmix.c -------------------------------------------------------------------------------- /dev/standalone/oneform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/oneform.c -------------------------------------------------------------------------------- /dev/standalone/peakfind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/peakfind.c -------------------------------------------------------------------------------- /dev/standalone/phase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/phase.c -------------------------------------------------------------------------------- /dev/standalone/prefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/prefix.c -------------------------------------------------------------------------------- /dev/standalone/psow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/psow.c -------------------------------------------------------------------------------- /dev/standalone/ptobrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/ptobrk.c -------------------------------------------------------------------------------- /dev/standalone/retime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/retime.c -------------------------------------------------------------------------------- /dev/standalone/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/search.c -------------------------------------------------------------------------------- /dev/standalone/sethares.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/sethares.c -------------------------------------------------------------------------------- /dev/standalone/spacedesign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/spacedesign.c -------------------------------------------------------------------------------- /dev/standalone/speclean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/speclean.c -------------------------------------------------------------------------------- /dev/standalone/specnu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/specnu.c -------------------------------------------------------------------------------- /dev/standalone/specross.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/specross.c -------------------------------------------------------------------------------- /dev/standalone/strans_multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/strans_multi.c -------------------------------------------------------------------------------- /dev/standalone/texmchan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/texmchan.c -------------------------------------------------------------------------------- /dev/standalone/texprepromch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/texprepromch.c -------------------------------------------------------------------------------- /dev/standalone/texture5mc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/texture5mc.c -------------------------------------------------------------------------------- /dev/standalone/topantail2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/topantail2.c -------------------------------------------------------------------------------- /dev/standalone/wrappage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/standalone/wrappage.c -------------------------------------------------------------------------------- /dev/strange/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/strange/CMakeLists.txt -------------------------------------------------------------------------------- /dev/strange/ap_strange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/strange/ap_strange.c -------------------------------------------------------------------------------- /dev/strange/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/strange/main.c -------------------------------------------------------------------------------- /dev/strange/strange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/strange/strange.c -------------------------------------------------------------------------------- /dev/stretch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/stretch/CMakeLists.txt -------------------------------------------------------------------------------- /dev/stretch/ap_stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/stretch/ap_stretch.c -------------------------------------------------------------------------------- /dev/stretch/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/stretch/main.c -------------------------------------------------------------------------------- /dev/stretch/stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/stretch/stretch.c -------------------------------------------------------------------------------- /dev/submix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/submix/CMakeLists.txt -------------------------------------------------------------------------------- /dev/submix/ap_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/submix/ap_mix.c -------------------------------------------------------------------------------- /dev/submix/inbetwee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/submix/inbetwee.c -------------------------------------------------------------------------------- /dev/submix/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/submix/main.c -------------------------------------------------------------------------------- /dev/submix/mixmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/submix/mixmerge.c -------------------------------------------------------------------------------- /dev/submix/mixprepro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/submix/mixprepro.c -------------------------------------------------------------------------------- /dev/submix/mixshuf0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/submix/mixshuf0.c -------------------------------------------------------------------------------- /dev/submix/mixshuf1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/submix/mixshuf1.c -------------------------------------------------------------------------------- /dev/submix/mixshuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/submix/mixshuf2.c -------------------------------------------------------------------------------- /dev/submix/newmix0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/submix/newmix0.c -------------------------------------------------------------------------------- /dev/submix/newmix1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/submix/newmix1.c -------------------------------------------------------------------------------- /dev/submix/setupmix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/submix/setupmix.c -------------------------------------------------------------------------------- /dev/submix/syncatt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/submix/syncatt.c -------------------------------------------------------------------------------- /dev/synth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/synth/CMakeLists.txt -------------------------------------------------------------------------------- /dev/synth/ap_synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/synth/ap_synthesis.c -------------------------------------------------------------------------------- /dev/synth/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/synth/main.c -------------------------------------------------------------------------------- /dev/synth/mxfft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/synth/mxfft.c -------------------------------------------------------------------------------- /dev/synth/pvoc_addon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/synth/pvoc_addon.c -------------------------------------------------------------------------------- /dev/synth/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/synth/wave.c -------------------------------------------------------------------------------- /dev/tabedit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/tabedit/CMakeLists.txt -------------------------------------------------------------------------------- /dev/tabedit/columns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/tabedit/columns.c -------------------------------------------------------------------------------- /dev/tabedit/columns0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/tabedit/columns0.c -------------------------------------------------------------------------------- /dev/tabedit/columns1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/tabedit/columns1.c -------------------------------------------------------------------------------- /dev/tabedit/columns2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/tabedit/columns2.c -------------------------------------------------------------------------------- /dev/tabedit/columns3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/tabedit/columns3.c -------------------------------------------------------------------------------- /dev/tabedit/columns4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/tabedit/columns4.c -------------------------------------------------------------------------------- /dev/tabedit/columns5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/tabedit/columns5.c -------------------------------------------------------------------------------- /dev/tabedit/columns6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/tabedit/columns6.c -------------------------------------------------------------------------------- /dev/tabedit/getcol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/tabedit/getcol.c -------------------------------------------------------------------------------- /dev/tabedit/putcol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/tabedit/putcol.c -------------------------------------------------------------------------------- /dev/tabedit/vectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/tabedit/vectors.c -------------------------------------------------------------------------------- /dev/texture/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/texture/CMakeLists.txt -------------------------------------------------------------------------------- /dev/texture/ap_texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/texture/ap_texture.c -------------------------------------------------------------------------------- /dev/texture/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/texture/main.c -------------------------------------------------------------------------------- /dev/texture/texperm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/texture/texperm.c -------------------------------------------------------------------------------- /dev/texture/texprepro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/texture/texprepro.c -------------------------------------------------------------------------------- /dev/texture/texture1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/texture/texture1.c -------------------------------------------------------------------------------- /dev/texture/texture2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/texture/texture2.c -------------------------------------------------------------------------------- /dev/texture/texture3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/texture/texture3.c -------------------------------------------------------------------------------- /dev/texture/texture4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/texture/texture4.c -------------------------------------------------------------------------------- /dev/texture/texture5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/texture/texture5.c -------------------------------------------------------------------------------- /dev/veryclean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/dev/veryclean.sh -------------------------------------------------------------------------------- /include/cdplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/include/cdplib.h -------------------------------------------------------------------------------- /include/chanmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/include/chanmask.h -------------------------------------------------------------------------------- /include/osbind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/include/osbind.h -------------------------------------------------------------------------------- /include/props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/include/props.h -------------------------------------------------------------------------------- /include/sfsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/include/sfsys.h -------------------------------------------------------------------------------- /libaaio/libaaio-0.3.1.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP7/HEAD/libaaio/libaaio-0.3.1.tar.bz2 --------------------------------------------------------------------------------