├── .gitignore ├── CMakeLists.txt ├── COPYING ├── LICENSE ├── README.md ├── cmake ├── CheckAtomic.cmake ├── CompilerOptimizations.cmake └── cmake_uninstall.cmake.in ├── dev ├── CMakeLists.txt ├── aaio │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── README │ ├── aaio.c │ ├── aaio1.c │ └── aaio2.c ├── blur │ ├── CMakeLists.txt │ ├── Makefiled.osx │ ├── ap_blur.c │ ├── blur.c │ └── main.c ├── cdp2k │ ├── CMakeLists.txt │ ├── Makefiled.osx │ ├── dzsetup.c │ ├── formantsg.c │ ├── mainfuncs.c │ ├── parstruct.c │ ├── readdata.c │ ├── readfiles.c │ ├── special.c │ ├── tkinput.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 │ ├── extprepro.c │ ├── iterate.c │ ├── main.c │ └── zigzag.c ├── externals │ ├── CMakeLists.txt │ ├── dx9mgw.zip │ ├── fastconv │ │ ├── CMakeLists.txt │ │ ├── fconv-fftw.cpp │ │ ├── fconv.cpp │ │ ├── genrespframe2.cpp │ │ ├── mxfftd.c │ │ └── readme.txt │ ├── include │ │ └── portsf.h │ ├── mctools │ │ ├── CMakeLists.txt │ │ ├── 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 │ │ ├── listaudevs │ │ │ ├── CMakeLists.txt │ │ │ ├── cmakedummy.cpp │ │ │ └── devs.c │ │ ├── palinuxbuild.txt │ │ ├── pamacbuild.txt │ │ ├── pamingwbuild.txt │ │ ├── paplay │ │ │ ├── CMakeLists.txt │ │ │ ├── cmakedummy.cpp │ │ │ ├── fmdcode.h │ │ │ ├── fmhfuncs.c │ │ │ └── paplay.c │ │ ├── pvplay │ │ │ ├── .gdb_history │ │ │ ├── CMakeLists.txt │ │ │ ├── Toolkit.pdf │ │ │ ├── fmdcode.h │ │ │ ├── fmhfuncs.c │ │ │ ├── mxfft.c │ │ │ ├── pvoc2.cpp │ │ │ ├── pvplay.cpp │ │ │ ├── pvplay.h │ │ │ ├── pvpp.h │ │ │ └── pvthreads.cpp │ │ └── recsf │ │ │ ├── CMakeLists.txt │ │ │ ├── cmakedummy.cpp │ │ │ └── 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-711.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 ├── houskeep │ ├── CMakeLists.txt │ ├── Makefiled.osx │ ├── 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 ├── 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 │ └── morph.c ├── new │ ├── CMakeLists.txt │ ├── Makefiled.osx │ ├── 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 │ ├── rejoin.c │ ├── selfsim.c │ ├── shifter.c │ ├── shrink.c │ ├── silend.c │ ├── specgrids.c │ ├── specsphinx.c │ ├── spectrum.c │ ├── spectwin.c │ ├── specvu.c │ ├── subtract.c │ ├── superaccu.c │ ├── tangent.c │ ├── transit.c │ ├── tremolo.c │ └── tunevary.c ├── newinclude │ ├── cdplib.h │ ├── chanmask.h │ ├── osbind.h │ ├── props.h │ ├── pvdefs.h │ ├── pvfileio.h │ ├── sfsys.h │ └── wavdefs.h ├── newsfsys │ ├── CMakeLists.txt │ ├── Makefiled.osx │ ├── alias.c │ ├── alias.h │ ├── ieee80.c │ ├── ieee80.h │ ├── osbind.c │ ├── props.c │ ├── props.cpp │ ├── pvxtest.c │ ├── scandir.c │ ├── scandir.h │ ├── sfdir.c │ ├── sffuncs.h │ ├── sfsys.c │ ├── shortcuts.c │ └── snd.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 │ ├── dirsf.c │ ├── main.c │ └── specpinfo.c ├── pv │ ├── CMakeLists.txt │ ├── Makefiled.osx │ ├── ap_pvoc.c │ ├── main.c │ ├── mxfft.c │ └── pvoc.c ├── pview │ ├── CMakeLists.txt │ └── pview.c ├── pvxio2 │ ├── CMakeLists.txt │ ├── Makefiled.osx │ ├── pvdefs.h │ └── pvfileio.c ├── repitch │ ├── CMakeLists.txt │ ├── ap_repitch.c │ ├── main.c │ └── repitch.c ├── science │ ├── CMakeLists.txt │ ├── bounce.c │ ├── brownian.c │ ├── cascade.c │ ├── chirikov.c │ ├── crumble.c │ ├── crystal.c │ ├── cubicspline.c │ ├── distortt.c │ ├── dvdwind.c │ ├── flatten.c │ ├── impulse.c │ ├── logistic.c │ ├── motor.c │ ├── multiosc.c │ ├── multisynth.c │ ├── newscales.c │ ├── notchinvert.c │ ├── peakiso.c │ ├── pulser.c │ ├── refocus.c │ ├── repeater.c │ ├── rotor.c │ ├── science.txt │ ├── scramble.c │ ├── smooth.c │ ├── sorter.c │ ├── specanal.c │ ├── specav.c │ ├── specfnu.c │ ├── specfold.c │ ├── spectstr.c │ ├── spectune.c │ ├── spin.c │ ├── splinter.c │ ├── strands.c │ ├── stutter.c │ ├── synfilt.c │ ├── synspline.c │ ├── synthesis.c │ ├── tesselate.c │ ├── timeseries.c │ ├── tremenv.c │ ├── ts_convert.c │ ├── tweet.c │ ├── unknot.c │ ├── verges.c │ ├── waveform.c │ └── wavmedian.c ├── sfsys │ ├── CMakeLists.txt │ ├── Makefiled.osx │ ├── 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 │ ├── Makefiled.osx │ ├── dirsf.c │ ├── wildcard.c │ └── wildcard.h ├── sndinfo │ ├── CMakeLists.txt │ ├── Makefiled.osx │ ├── 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 │ ├── 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 ├── standnew │ ├── CMakeLists.txt │ ├── asciiget.c │ ├── caltrain.c │ ├── clicknew.c │ ├── clip.c │ ├── convert_to_midi.c │ ├── distcut.c │ ├── distmark.c │ ├── distmore.c │ ├── distrep.c │ ├── distshift.c │ ├── distwarp.c │ ├── envcut.c │ ├── envspeak.c │ ├── extspeak.c │ ├── fractal.c │ ├── frfractal.c │ ├── fturanal.c │ ├── headview.c │ ├── hover2.c │ ├── onset.c │ ├── pairex.c │ ├── partition.c │ ├── phasor.c │ ├── quirk.c │ ├── repair.c │ ├── scales.c │ ├── specenv.c │ ├── speculation.c │ ├── spike.c │ ├── suppress.c │ ├── tostereo.c │ └── unitary_matrix.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 ├── docs ├── current-notes.txt └── r8groups.txt ├── include ├── aaio.h ├── cdplib.h ├── chanmask.h ├── osbind.h ├── props.h └── sfsys.h └── libaaio └── libaaio-0.3.2.tar.bz2 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/README.md -------------------------------------------------------------------------------- /cmake/CheckAtomic.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/cmake/CheckAtomic.cmake -------------------------------------------------------------------------------- /cmake/CompilerOptimizations.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/cmake/CompilerOptimizations.cmake -------------------------------------------------------------------------------- /cmake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/cmake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /dev/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/CMakeLists.txt -------------------------------------------------------------------------------- /dev/aaio/AUTHORS: -------------------------------------------------------------------------------- 1 | Daniel Aarno - 2 | -------------------------------------------------------------------------------- /dev/aaio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/aaio/CMakeLists.txt -------------------------------------------------------------------------------- /dev/aaio/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/aaio/COPYING -------------------------------------------------------------------------------- /dev/aaio/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/aaio/README -------------------------------------------------------------------------------- /dev/aaio/aaio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/aaio/aaio.c -------------------------------------------------------------------------------- /dev/aaio/aaio1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/aaio/aaio1.c -------------------------------------------------------------------------------- /dev/aaio/aaio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/aaio/aaio2.c -------------------------------------------------------------------------------- /dev/blur/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/blur/CMakeLists.txt -------------------------------------------------------------------------------- /dev/blur/Makefiled.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/blur/Makefiled.osx -------------------------------------------------------------------------------- /dev/blur/ap_blur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/blur/ap_blur.c -------------------------------------------------------------------------------- /dev/blur/blur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/blur/blur.c -------------------------------------------------------------------------------- /dev/blur/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/blur/main.c -------------------------------------------------------------------------------- /dev/cdp2k/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdp2k/CMakeLists.txt -------------------------------------------------------------------------------- /dev/cdp2k/Makefiled.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdp2k/Makefiled.osx -------------------------------------------------------------------------------- /dev/cdp2k/dzsetup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdp2k/dzsetup.c -------------------------------------------------------------------------------- /dev/cdp2k/formantsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdp2k/formantsg.c -------------------------------------------------------------------------------- /dev/cdp2k/mainfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdp2k/mainfuncs.c -------------------------------------------------------------------------------- /dev/cdp2k/parstruct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdp2k/parstruct.c -------------------------------------------------------------------------------- /dev/cdp2k/readdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdp2k/readdata.c -------------------------------------------------------------------------------- /dev/cdp2k/readfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdp2k/readfiles.c -------------------------------------------------------------------------------- /dev/cdp2k/special.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdp2k/special.c -------------------------------------------------------------------------------- /dev/cdp2k/tkinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdp2k/tkinput.c -------------------------------------------------------------------------------- /dev/cdp2k/tklib1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdp2k/tklib1.c -------------------------------------------------------------------------------- /dev/cdp2k/tklib3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdp2k/tklib3.c -------------------------------------------------------------------------------- /dev/cdp2k/validate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdp2k/validate.c -------------------------------------------------------------------------------- /dev/cdp2k/writedata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdp2k/writedata.c -------------------------------------------------------------------------------- /dev/cdparams/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdparams/CMakeLists.txt -------------------------------------------------------------------------------- /dev/cdparams/cdparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdparams/cdparams.c -------------------------------------------------------------------------------- /dev/cdparams/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdparams/display.c -------------------------------------------------------------------------------- /dev/cdparams/flagnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdparams/flagnames.c -------------------------------------------------------------------------------- /dev/cdparams/parnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdparams/parnames.c -------------------------------------------------------------------------------- /dev/cdparams_other/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdparams_other/CMakeLists.txt -------------------------------------------------------------------------------- /dev/cdparams_other/cdparams_other.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdparams_other/cdparams_other.c -------------------------------------------------------------------------------- /dev/cdparse/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdparse/CMakeLists.txt -------------------------------------------------------------------------------- /dev/cdparse/cdparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdparse/cdparse.c -------------------------------------------------------------------------------- /dev/cdparse/cdparse_other.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/cdparse/cdparse_other.c -------------------------------------------------------------------------------- /dev/combine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/combine/CMakeLists.txt -------------------------------------------------------------------------------- /dev/combine/ap_combine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/combine/ap_combine.c -------------------------------------------------------------------------------- /dev/combine/combine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/combine/combine.c -------------------------------------------------------------------------------- /dev/combine/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/combine/main.c -------------------------------------------------------------------------------- /dev/distort/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/CMakeLists.txt -------------------------------------------------------------------------------- /dev/distort/ap_distort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/ap_distort.c -------------------------------------------------------------------------------- /dev/distort/disprepro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/disprepro.c -------------------------------------------------------------------------------- /dev/distort/distdel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/distdel.c -------------------------------------------------------------------------------- /dev/distort/distflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/distflt.c -------------------------------------------------------------------------------- /dev/distort/distintlv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/distintlv.c -------------------------------------------------------------------------------- /dev/distort/distort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/distort.c -------------------------------------------------------------------------------- /dev/distort/distorta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/distorta.c -------------------------------------------------------------------------------- /dev/distort/distorte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/distorte.c -------------------------------------------------------------------------------- /dev/distort/distortf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/distortf.c -------------------------------------------------------------------------------- /dev/distort/distorth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/distorth.c -------------------------------------------------------------------------------- /dev/distort/distortion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/distortion.c -------------------------------------------------------------------------------- /dev/distort/distortm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/distortm.c -------------------------------------------------------------------------------- /dev/distort/distorto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/distorto.c -------------------------------------------------------------------------------- /dev/distort/distortp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/distortp.c -------------------------------------------------------------------------------- /dev/distort/distortr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/distortr.c -------------------------------------------------------------------------------- /dev/distort/distorts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/distorts.c -------------------------------------------------------------------------------- /dev/distort/distresize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/distresize.c -------------------------------------------------------------------------------- /dev/distort/distrpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/distrpl.c -------------------------------------------------------------------------------- /dev/distort/distrpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/distrpt.c -------------------------------------------------------------------------------- /dev/distort/disttel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/disttel.c -------------------------------------------------------------------------------- /dev/distort/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/main.c -------------------------------------------------------------------------------- /dev/distort/pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/distort/pulse.c -------------------------------------------------------------------------------- /dev/editsf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/editsf/CMakeLists.txt -------------------------------------------------------------------------------- /dev/editsf/ap_edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/editsf/ap_edit.c -------------------------------------------------------------------------------- /dev/editsf/cut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/editsf/cut.c -------------------------------------------------------------------------------- /dev/editsf/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/editsf/main.c -------------------------------------------------------------------------------- /dev/editsf/twixt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/editsf/twixt.c -------------------------------------------------------------------------------- /dev/env/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/env/CMakeLists.txt -------------------------------------------------------------------------------- /dev/env/ap_envel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/env/ap_envel.c -------------------------------------------------------------------------------- /dev/env/envel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/env/envel.c -------------------------------------------------------------------------------- /dev/env/envfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/env/envfuncs.c -------------------------------------------------------------------------------- /dev/env/envimpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/env/envimpos.c -------------------------------------------------------------------------------- /dev/env/envprepro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/env/envprepro.c -------------------------------------------------------------------------------- /dev/env/envprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/env/envprocess.c -------------------------------------------------------------------------------- /dev/env/envxtract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/env/envxtract.c -------------------------------------------------------------------------------- /dev/env/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/env/main.c -------------------------------------------------------------------------------- /dev/env/pluck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/env/pluck.c -------------------------------------------------------------------------------- /dev/extend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/extend/CMakeLists.txt -------------------------------------------------------------------------------- /dev/extend/ap_extend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/extend/ap_extend.c -------------------------------------------------------------------------------- /dev/extend/drunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/extend/drunk.c -------------------------------------------------------------------------------- /dev/extend/extprepro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/extend/extprepro.c -------------------------------------------------------------------------------- /dev/extend/iterate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/extend/iterate.c -------------------------------------------------------------------------------- /dev/extend/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/extend/main.c -------------------------------------------------------------------------------- /dev/extend/zigzag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/extend/zigzag.c -------------------------------------------------------------------------------- /dev/externals/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/CMakeLists.txt -------------------------------------------------------------------------------- /dev/externals/dx9mgw.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/dx9mgw.zip -------------------------------------------------------------------------------- /dev/externals/fastconv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/fastconv/CMakeLists.txt -------------------------------------------------------------------------------- /dev/externals/fastconv/fconv-fftw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/fastconv/fconv-fftw.cpp -------------------------------------------------------------------------------- /dev/externals/fastconv/fconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/fastconv/fconv.cpp -------------------------------------------------------------------------------- /dev/externals/fastconv/genrespframe2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/fastconv/genrespframe2.cpp -------------------------------------------------------------------------------- /dev/externals/fastconv/mxfftd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/fastconv/mxfftd.c -------------------------------------------------------------------------------- /dev/externals/fastconv/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/fastconv/readme.txt -------------------------------------------------------------------------------- /dev/externals/include/portsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/include/portsf.h -------------------------------------------------------------------------------- /dev/externals/mctools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/mctools/CMakeLists.txt -------------------------------------------------------------------------------- /dev/externals/mctools/abfdcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/mctools/abfdcode.cpp -------------------------------------------------------------------------------- /dev/externals/mctools/abfdcode2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/mctools/abfdcode2.cpp -------------------------------------------------------------------------------- /dev/externals/mctools/abfpan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/mctools/abfpan.cpp -------------------------------------------------------------------------------- /dev/externals/mctools/abfpan2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/mctools/abfpan2.cpp -------------------------------------------------------------------------------- /dev/externals/mctools/channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/mctools/channel.c -------------------------------------------------------------------------------- /dev/externals/mctools/chorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/mctools/chorder.c -------------------------------------------------------------------------------- /dev/externals/mctools/chxformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/mctools/chxformat.c -------------------------------------------------------------------------------- /dev/externals/mctools/copysf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/mctools/copysf.c -------------------------------------------------------------------------------- /dev/externals/mctools/fmdcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/mctools/fmdcode.c -------------------------------------------------------------------------------- /dev/externals/mctools/fmdcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/mctools/fmdcode.h -------------------------------------------------------------------------------- /dev/externals/mctools/fmhcube1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/mctools/fmhcube1.txt -------------------------------------------------------------------------------- /dev/externals/mctools/fmhfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/mctools/fmhfuncs.c -------------------------------------------------------------------------------- /dev/externals/mctools/interlx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/mctools/interlx.c -------------------------------------------------------------------------------- /dev/externals/mctools/njoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/mctools/njoin.c -------------------------------------------------------------------------------- /dev/externals/mctools/nmix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/mctools/nmix.c -------------------------------------------------------------------------------- /dev/externals/mctools/rmsinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/mctools/rmsinfo.cpp -------------------------------------------------------------------------------- /dev/externals/mctools/sfprops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/mctools/sfprops.c -------------------------------------------------------------------------------- /dev/externals/paprogs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/CMakeLists.txt -------------------------------------------------------------------------------- /dev/externals/paprogs/listaudevs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/listaudevs/CMakeLists.txt -------------------------------------------------------------------------------- /dev/externals/paprogs/listaudevs/cmakedummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/listaudevs/cmakedummy.cpp -------------------------------------------------------------------------------- /dev/externals/paprogs/listaudevs/devs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/listaudevs/devs.c -------------------------------------------------------------------------------- /dev/externals/paprogs/palinuxbuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/palinuxbuild.txt -------------------------------------------------------------------------------- /dev/externals/paprogs/pamacbuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/pamacbuild.txt -------------------------------------------------------------------------------- /dev/externals/paprogs/pamingwbuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/pamingwbuild.txt -------------------------------------------------------------------------------- /dev/externals/paprogs/paplay/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/paplay/CMakeLists.txt -------------------------------------------------------------------------------- /dev/externals/paprogs/paplay/cmakedummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/paplay/cmakedummy.cpp -------------------------------------------------------------------------------- /dev/externals/paprogs/paplay/fmdcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/paplay/fmdcode.h -------------------------------------------------------------------------------- /dev/externals/paprogs/paplay/fmhfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/paplay/fmhfuncs.c -------------------------------------------------------------------------------- /dev/externals/paprogs/paplay/paplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/paplay/paplay.c -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/pvplay/.gdb_history -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/pvplay/CMakeLists.txt -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/Toolkit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/pvplay/Toolkit.pdf -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/fmdcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/pvplay/fmdcode.h -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/fmhfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/pvplay/fmhfuncs.c -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/mxfft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/pvplay/mxfft.c -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/pvoc2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/pvplay/pvoc2.cpp -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/pvplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/pvplay/pvplay.cpp -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/pvplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/pvplay/pvplay.h -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/pvpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/pvplay/pvpp.h -------------------------------------------------------------------------------- /dev/externals/paprogs/pvplay/pvthreads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/pvplay/pvthreads.cpp -------------------------------------------------------------------------------- /dev/externals/paprogs/recsf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/recsf/CMakeLists.txt -------------------------------------------------------------------------------- /dev/externals/paprogs/recsf/cmakedummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/recsf/cmakedummy.cpp -------------------------------------------------------------------------------- /dev/externals/paprogs/recsf/recsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/paprogs/recsf/recsf.c -------------------------------------------------------------------------------- /dev/externals/portsf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/portsf/CMakeLists.txt -------------------------------------------------------------------------------- /dev/externals/portsf/ieee80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/portsf/ieee80.c -------------------------------------------------------------------------------- /dev/externals/portsf/ieee80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/portsf/ieee80.h -------------------------------------------------------------------------------- /dev/externals/portsf/portsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/portsf/portsf.c -------------------------------------------------------------------------------- /dev/externals/reverb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/reverb/CMakeLists.txt -------------------------------------------------------------------------------- /dev/externals/reverb/LARGERM.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/reverb/LARGERM.TXT -------------------------------------------------------------------------------- /dev/externals/reverb/MEDIUMRM.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/reverb/MEDIUMRM.TXT -------------------------------------------------------------------------------- /dev/externals/reverb/POS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/reverb/POS.TXT -------------------------------------------------------------------------------- /dev/externals/reverb/allpass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/reverb/allpass.c -------------------------------------------------------------------------------- /dev/externals/reverb/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/reverb/delay.c -------------------------------------------------------------------------------- /dev/externals/reverb/diffuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/reverb/diffuse.h -------------------------------------------------------------------------------- /dev/externals/reverb/lpcomb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/reverb/lpcomb.cpp -------------------------------------------------------------------------------- /dev/externals/reverb/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/reverb/readme.txt -------------------------------------------------------------------------------- /dev/externals/reverb/reflect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/reverb/reflect.cpp -------------------------------------------------------------------------------- /dev/externals/reverb/reflect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/reverb/reflect.h -------------------------------------------------------------------------------- /dev/externals/reverb/reverb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/reverb/reverb.cpp -------------------------------------------------------------------------------- /dev/externals/reverb/reverberator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/reverb/reverberator.cpp -------------------------------------------------------------------------------- /dev/externals/reverb/reverberator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/reverb/reverberator.h -------------------------------------------------------------------------------- /dev/externals/reverb/rmverb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/reverb/rmverb.cpp -------------------------------------------------------------------------------- /dev/externals/reverb/roomresp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/reverb/roomresp.cpp -------------------------------------------------------------------------------- /dev/externals/reverb/smalldiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/reverb/smalldiff.cpp -------------------------------------------------------------------------------- /dev/externals/reverb/tdelaymain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/reverb/tdelaymain.cpp -------------------------------------------------------------------------------- /dev/externals/reverb/wavetable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/reverb/wavetable.cpp -------------------------------------------------------------------------------- /dev/externals/reverb/wavetable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/externals/reverb/wavetable.h -------------------------------------------------------------------------------- /dev/filter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/filter/CMakeLists.txt -------------------------------------------------------------------------------- /dev/filter/ap_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/filter/ap_filter.c -------------------------------------------------------------------------------- /dev/filter/filters0-711.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/filter/filters0-711.c -------------------------------------------------------------------------------- /dev/filter/filters0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/filter/filters0.c -------------------------------------------------------------------------------- /dev/filter/filters1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/filter/filters1.c -------------------------------------------------------------------------------- /dev/filter/fltpcon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/filter/fltpcon.c -------------------------------------------------------------------------------- /dev/filter/fltprepro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/filter/fltprepro.c -------------------------------------------------------------------------------- /dev/filter/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/filter/main.c -------------------------------------------------------------------------------- /dev/focus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/focus/CMakeLists.txt -------------------------------------------------------------------------------- /dev/focus/ap_focus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/focus/ap_focus.c -------------------------------------------------------------------------------- /dev/focus/focus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/focus/focus.c -------------------------------------------------------------------------------- /dev/focus/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/focus/main.c -------------------------------------------------------------------------------- /dev/formants/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/formants/CMakeLists.txt -------------------------------------------------------------------------------- /dev/formants/ap_formants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/formants/ap_formants.c -------------------------------------------------------------------------------- /dev/formants/formants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/formants/formants.c -------------------------------------------------------------------------------- /dev/formants/formav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/formants/formav.c -------------------------------------------------------------------------------- /dev/formants/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/formants/main.c -------------------------------------------------------------------------------- /dev/grain/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/grain/CMakeLists.txt -------------------------------------------------------------------------------- /dev/grain/ap_grain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/grain/ap_grain.c -------------------------------------------------------------------------------- /dev/grain/grain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/grain/grain.c -------------------------------------------------------------------------------- /dev/grain/grain1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/grain/grain1.c -------------------------------------------------------------------------------- /dev/grain/graprepro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/grain/graprepro.c -------------------------------------------------------------------------------- /dev/grain/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/grain/main.c -------------------------------------------------------------------------------- /dev/hfperm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/hfperm/CMakeLists.txt -------------------------------------------------------------------------------- /dev/hfperm/ap_hfperm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/hfperm/ap_hfperm.c -------------------------------------------------------------------------------- /dev/hfperm/hfperm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/hfperm/hfperm.c -------------------------------------------------------------------------------- /dev/hfperm/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/hfperm/main.c -------------------------------------------------------------------------------- /dev/hilite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/hilite/CMakeLists.txt -------------------------------------------------------------------------------- /dev/hilite/ap_hilite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/hilite/ap_hilite.c -------------------------------------------------------------------------------- /dev/hilite/hilite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/hilite/hilite.c -------------------------------------------------------------------------------- /dev/hilite/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/hilite/main.c -------------------------------------------------------------------------------- /dev/houskeep/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/houskeep/CMakeLists.txt -------------------------------------------------------------------------------- /dev/houskeep/Makefiled.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/houskeep/Makefiled.osx -------------------------------------------------------------------------------- /dev/houskeep/ap_house.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/houskeep/ap_house.c -------------------------------------------------------------------------------- /dev/houskeep/channels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/houskeep/channels.c -------------------------------------------------------------------------------- /dev/houskeep/clean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/houskeep/clean.c -------------------------------------------------------------------------------- /dev/houskeep/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/houskeep/dump.c -------------------------------------------------------------------------------- /dev/houskeep/dupl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/houskeep/dupl.c -------------------------------------------------------------------------------- /dev/houskeep/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/houskeep/main.c -------------------------------------------------------------------------------- /dev/houskeep/respec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/houskeep/respec.c -------------------------------------------------------------------------------- /dev/houskeep/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/houskeep/sort.c -------------------------------------------------------------------------------- /dev/include/arrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/arrays.h -------------------------------------------------------------------------------- /dev/include/bitflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/bitflags.h -------------------------------------------------------------------------------- /dev/include/blur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/blur.h -------------------------------------------------------------------------------- /dev/include/cdpar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/cdpar.h -------------------------------------------------------------------------------- /dev/include/cdparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/cdparams.h -------------------------------------------------------------------------------- /dev/include/cdpmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/cdpmain.h -------------------------------------------------------------------------------- /dev/include/cdpstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/cdpstate.h -------------------------------------------------------------------------------- /dev/include/columns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/columns.h -------------------------------------------------------------------------------- /dev/include/combine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/combine.h -------------------------------------------------------------------------------- /dev/include/conditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/conditions.h -------------------------------------------------------------------------------- /dev/include/dircdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/dircdp.h -------------------------------------------------------------------------------- /dev/include/distcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/distcon.h -------------------------------------------------------------------------------- /dev/include/distort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/distort.h -------------------------------------------------------------------------------- /dev/include/distort1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/distort1.h -------------------------------------------------------------------------------- /dev/include/edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/edit.h -------------------------------------------------------------------------------- /dev/include/envel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/envel.h -------------------------------------------------------------------------------- /dev/include/envel1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/envel1.h -------------------------------------------------------------------------------- /dev/include/envlcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/envlcon.h -------------------------------------------------------------------------------- /dev/include/extdcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/extdcon.h -------------------------------------------------------------------------------- /dev/include/extend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/extend.h -------------------------------------------------------------------------------- /dev/include/extend1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/extend1.h -------------------------------------------------------------------------------- /dev/include/filetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/filetype.h -------------------------------------------------------------------------------- /dev/include/filtcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/filtcon.h -------------------------------------------------------------------------------- /dev/include/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/filters.h -------------------------------------------------------------------------------- /dev/include/filters1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/filters1.h -------------------------------------------------------------------------------- /dev/include/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/flags.h -------------------------------------------------------------------------------- /dev/include/fmnts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/fmnts.h -------------------------------------------------------------------------------- /dev/include/focus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/focus.h -------------------------------------------------------------------------------- /dev/include/formants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/formants.h -------------------------------------------------------------------------------- /dev/include/globcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/globcon.h -------------------------------------------------------------------------------- /dev/include/graicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/graicon.h -------------------------------------------------------------------------------- /dev/include/grain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/grain.h -------------------------------------------------------------------------------- /dev/include/grain1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/grain1.h -------------------------------------------------------------------------------- /dev/include/headread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/headread.h -------------------------------------------------------------------------------- /dev/include/hfperm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/hfperm.h -------------------------------------------------------------------------------- /dev/include/highlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/highlight.h -------------------------------------------------------------------------------- /dev/include/house.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/house.h -------------------------------------------------------------------------------- /dev/include/localcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/localcon.h -------------------------------------------------------------------------------- /dev/include/logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/logic.h -------------------------------------------------------------------------------- /dev/include/menuno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/menuno.h -------------------------------------------------------------------------------- /dev/include/mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/mix.h -------------------------------------------------------------------------------- /dev/include/mix1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/mix1.h -------------------------------------------------------------------------------- /dev/include/mixxcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/mixxcon.h -------------------------------------------------------------------------------- /dev/include/modeno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/modeno.h -------------------------------------------------------------------------------- /dev/include/modicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/modicon.h -------------------------------------------------------------------------------- /dev/include/modify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/modify.h -------------------------------------------------------------------------------- /dev/include/modify1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/modify1.h -------------------------------------------------------------------------------- /dev/include/morph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/morph.h -------------------------------------------------------------------------------- /dev/include/otherfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/otherfile.h -------------------------------------------------------------------------------- /dev/include/paudition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/paudition.h -------------------------------------------------------------------------------- /dev/include/pitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/pitch.h -------------------------------------------------------------------------------- /dev/include/pnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/pnames.h -------------------------------------------------------------------------------- /dev/include/processno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/processno.h -------------------------------------------------------------------------------- /dev/include/pvoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/pvoc.h -------------------------------------------------------------------------------- /dev/include/repitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/repitch.h -------------------------------------------------------------------------------- /dev/include/science.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/science.h -------------------------------------------------------------------------------- /dev/include/sfdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/sfdump.h -------------------------------------------------------------------------------- /dev/include/simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/simple.h -------------------------------------------------------------------------------- /dev/include/sndinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/sndinfo.h -------------------------------------------------------------------------------- /dev/include/speccon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/speccon.h -------------------------------------------------------------------------------- /dev/include/special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/special.h -------------------------------------------------------------------------------- /dev/include/specinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/specinfo.h -------------------------------------------------------------------------------- /dev/include/specpinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/specpinfo.h -------------------------------------------------------------------------------- /dev/include/srates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/srates.h -------------------------------------------------------------------------------- /dev/include/standalone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/standalone.h -------------------------------------------------------------------------------- /dev/include/strange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/strange.h -------------------------------------------------------------------------------- /dev/include/stretch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/stretch.h -------------------------------------------------------------------------------- /dev/include/structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/structures.h -------------------------------------------------------------------------------- /dev/include/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/synth.h -------------------------------------------------------------------------------- /dev/include/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/texture.h -------------------------------------------------------------------------------- /dev/include/texture1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/texture1.h -------------------------------------------------------------------------------- /dev/include/tkglobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/tkglobals.h -------------------------------------------------------------------------------- /dev/include/txtucon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/txtucon.h -------------------------------------------------------------------------------- /dev/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/utils.h -------------------------------------------------------------------------------- /dev/include/vowels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/vowels.h -------------------------------------------------------------------------------- /dev/include/vowels2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/include/vowels2.h -------------------------------------------------------------------------------- /dev/misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/CMakeLists.txt -------------------------------------------------------------------------------- /dev/misc/brkdur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/brkdur.c -------------------------------------------------------------------------------- /dev/misc/diskspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/diskspace.c -------------------------------------------------------------------------------- /dev/misc/fixgobo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/fixgobo.c -------------------------------------------------------------------------------- /dev/misc/gobo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/gobo.c -------------------------------------------------------------------------------- /dev/misc/gobosee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/gobosee.c -------------------------------------------------------------------------------- /dev/misc/histconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/histconv.c -------------------------------------------------------------------------------- /dev/misc/kbhit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/kbhit.c -------------------------------------------------------------------------------- /dev/misc/listdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/listdate.c -------------------------------------------------------------------------------- /dev/misc/logdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/logdate.c -------------------------------------------------------------------------------- /dev/misc/maxsamp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/maxsamp2.c -------------------------------------------------------------------------------- /dev/misc/mxfft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/mxfft.c -------------------------------------------------------------------------------- /dev/misc/paudition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/paudition.c -------------------------------------------------------------------------------- /dev/misc/pdisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/pdisplay.c -------------------------------------------------------------------------------- /dev/misc/pmodify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/pmodify.c -------------------------------------------------------------------------------- /dev/misc/progmach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/progmach.c -------------------------------------------------------------------------------- /dev/misc/pview_flt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/pview_flt.c -------------------------------------------------------------------------------- /dev/misc/stretcha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/stretcha.c -------------------------------------------------------------------------------- /dev/misc/tkusage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/tkusage.c -------------------------------------------------------------------------------- /dev/misc/tkusage_other.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/tkusage_other.c -------------------------------------------------------------------------------- /dev/misc/vuform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/misc/vuform.c -------------------------------------------------------------------------------- /dev/modify/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/modify/CMakeLists.txt -------------------------------------------------------------------------------- /dev/modify/ap_modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/modify/ap_modify.c -------------------------------------------------------------------------------- /dev/modify/brapcon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/modify/brapcon.c -------------------------------------------------------------------------------- /dev/modify/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/modify/delay.c -------------------------------------------------------------------------------- /dev/modify/gain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/modify/gain.c -------------------------------------------------------------------------------- /dev/modify/granula1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/modify/granula1.c -------------------------------------------------------------------------------- /dev/modify/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/modify/main.c -------------------------------------------------------------------------------- /dev/modify/pan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/modify/pan.c -------------------------------------------------------------------------------- /dev/modify/radical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/modify/radical.c -------------------------------------------------------------------------------- /dev/modify/strans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/modify/strans.c -------------------------------------------------------------------------------- /dev/morph/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/morph/CMakeLists.txt -------------------------------------------------------------------------------- /dev/morph/ap_morph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/morph/ap_morph.c -------------------------------------------------------------------------------- /dev/morph/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/morph/main.c -------------------------------------------------------------------------------- /dev/morph/morph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/morph/morph.c -------------------------------------------------------------------------------- /dev/new/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/CMakeLists.txt -------------------------------------------------------------------------------- /dev/new/Makefiled.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/Makefiled.osx -------------------------------------------------------------------------------- /dev/new/cantor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/cantor.c -------------------------------------------------------------------------------- /dev/new/ceracu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/ceracu.c -------------------------------------------------------------------------------- /dev/new/chanphase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/chanphase.c -------------------------------------------------------------------------------- /dev/new/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/echo.c -------------------------------------------------------------------------------- /dev/new/filtrage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/filtrage.c -------------------------------------------------------------------------------- /dev/new/fracture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/fracture.c -------------------------------------------------------------------------------- /dev/new/glisten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/glisten.c -------------------------------------------------------------------------------- /dev/new/isolate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/isolate.c -------------------------------------------------------------------------------- /dev/new/iterfof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/iterfof.c -------------------------------------------------------------------------------- /dev/new/iterline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/iterline.c -------------------------------------------------------------------------------- /dev/new/iterlinef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/iterlinef.c -------------------------------------------------------------------------------- /dev/new/madrid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/madrid.c -------------------------------------------------------------------------------- /dev/new/newdelay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/newdelay.c -------------------------------------------------------------------------------- /dev/new/newmorph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/newmorph.c -------------------------------------------------------------------------------- /dev/new/newtex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/newtex.c -------------------------------------------------------------------------------- /dev/new/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/packet.c -------------------------------------------------------------------------------- /dev/new/panorama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/panorama.c -------------------------------------------------------------------------------- /dev/new/rejoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/rejoin.c -------------------------------------------------------------------------------- /dev/new/selfsim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/selfsim.c -------------------------------------------------------------------------------- /dev/new/shifter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/shifter.c -------------------------------------------------------------------------------- /dev/new/shrink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/shrink.c -------------------------------------------------------------------------------- /dev/new/silend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/silend.c -------------------------------------------------------------------------------- /dev/new/specgrids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/specgrids.c -------------------------------------------------------------------------------- /dev/new/specsphinx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/specsphinx.c -------------------------------------------------------------------------------- /dev/new/spectrum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/spectrum.c -------------------------------------------------------------------------------- /dev/new/spectwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/spectwin.c -------------------------------------------------------------------------------- /dev/new/specvu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/specvu.c -------------------------------------------------------------------------------- /dev/new/subtract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/subtract.c -------------------------------------------------------------------------------- /dev/new/superaccu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/superaccu.c -------------------------------------------------------------------------------- /dev/new/tangent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/tangent.c -------------------------------------------------------------------------------- /dev/new/transit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/transit.c -------------------------------------------------------------------------------- /dev/new/tremolo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/tremolo.c -------------------------------------------------------------------------------- /dev/new/tunevary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/new/tunevary.c -------------------------------------------------------------------------------- /dev/newinclude/cdplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newinclude/cdplib.h -------------------------------------------------------------------------------- /dev/newinclude/chanmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newinclude/chanmask.h -------------------------------------------------------------------------------- /dev/newinclude/osbind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newinclude/osbind.h -------------------------------------------------------------------------------- /dev/newinclude/props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newinclude/props.h -------------------------------------------------------------------------------- /dev/newinclude/pvdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newinclude/pvdefs.h -------------------------------------------------------------------------------- /dev/newinclude/pvfileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newinclude/pvfileio.h -------------------------------------------------------------------------------- /dev/newinclude/sfsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newinclude/sfsys.h -------------------------------------------------------------------------------- /dev/newinclude/wavdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newinclude/wavdefs.h -------------------------------------------------------------------------------- /dev/newsfsys/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newsfsys/CMakeLists.txt -------------------------------------------------------------------------------- /dev/newsfsys/Makefiled.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newsfsys/Makefiled.osx -------------------------------------------------------------------------------- /dev/newsfsys/alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newsfsys/alias.c -------------------------------------------------------------------------------- /dev/newsfsys/alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newsfsys/alias.h -------------------------------------------------------------------------------- /dev/newsfsys/ieee80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newsfsys/ieee80.c -------------------------------------------------------------------------------- /dev/newsfsys/ieee80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newsfsys/ieee80.h -------------------------------------------------------------------------------- /dev/newsfsys/osbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newsfsys/osbind.c -------------------------------------------------------------------------------- /dev/newsfsys/props.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newsfsys/props.c -------------------------------------------------------------------------------- /dev/newsfsys/props.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newsfsys/props.cpp -------------------------------------------------------------------------------- /dev/newsfsys/pvxtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newsfsys/pvxtest.c -------------------------------------------------------------------------------- /dev/newsfsys/scandir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newsfsys/scandir.c -------------------------------------------------------------------------------- /dev/newsfsys/scandir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newsfsys/scandir.h -------------------------------------------------------------------------------- /dev/newsfsys/sfdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newsfsys/sfdir.c -------------------------------------------------------------------------------- /dev/newsfsys/sffuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newsfsys/sffuncs.h -------------------------------------------------------------------------------- /dev/newsfsys/sfsys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newsfsys/sfsys.c -------------------------------------------------------------------------------- /dev/newsfsys/shortcuts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newsfsys/shortcuts.c -------------------------------------------------------------------------------- /dev/newsfsys/snd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/newsfsys/snd.c -------------------------------------------------------------------------------- /dev/pagrab/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pagrab/CMakeLists.txt -------------------------------------------------------------------------------- /dev/pagrab/pagrab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pagrab/pagrab.c -------------------------------------------------------------------------------- /dev/paview/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/paview/CMakeLists.txt -------------------------------------------------------------------------------- /dev/paview/paview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/paview/paview.c -------------------------------------------------------------------------------- /dev/pitch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pitch/CMakeLists.txt -------------------------------------------------------------------------------- /dev/pitch/ap_pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pitch/ap_pitch.c -------------------------------------------------------------------------------- /dev/pitch/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pitch/main.c -------------------------------------------------------------------------------- /dev/pitch/pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pitch/pitch.c -------------------------------------------------------------------------------- /dev/pitchinfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pitchinfo/CMakeLists.txt -------------------------------------------------------------------------------- /dev/pitchinfo/ap_pinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pitchinfo/ap_pinfo.c -------------------------------------------------------------------------------- /dev/pitchinfo/dirsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pitchinfo/dirsf.c -------------------------------------------------------------------------------- /dev/pitchinfo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pitchinfo/main.c -------------------------------------------------------------------------------- /dev/pitchinfo/specpinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pitchinfo/specpinfo.c -------------------------------------------------------------------------------- /dev/pv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pv/CMakeLists.txt -------------------------------------------------------------------------------- /dev/pv/Makefiled.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pv/Makefiled.osx -------------------------------------------------------------------------------- /dev/pv/ap_pvoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pv/ap_pvoc.c -------------------------------------------------------------------------------- /dev/pv/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pv/main.c -------------------------------------------------------------------------------- /dev/pv/mxfft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pv/mxfft.c -------------------------------------------------------------------------------- /dev/pv/pvoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pv/pvoc.c -------------------------------------------------------------------------------- /dev/pview/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pview/CMakeLists.txt -------------------------------------------------------------------------------- /dev/pview/pview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pview/pview.c -------------------------------------------------------------------------------- /dev/pvxio2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pvxio2/CMakeLists.txt -------------------------------------------------------------------------------- /dev/pvxio2/Makefiled.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pvxio2/Makefiled.osx -------------------------------------------------------------------------------- /dev/pvxio2/pvdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pvxio2/pvdefs.h -------------------------------------------------------------------------------- /dev/pvxio2/pvfileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/pvxio2/pvfileio.c -------------------------------------------------------------------------------- /dev/repitch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/repitch/CMakeLists.txt -------------------------------------------------------------------------------- /dev/repitch/ap_repitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/repitch/ap_repitch.c -------------------------------------------------------------------------------- /dev/repitch/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/repitch/main.c -------------------------------------------------------------------------------- /dev/repitch/repitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/repitch/repitch.c -------------------------------------------------------------------------------- /dev/science/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/CMakeLists.txt -------------------------------------------------------------------------------- /dev/science/bounce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/bounce.c -------------------------------------------------------------------------------- /dev/science/brownian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/brownian.c -------------------------------------------------------------------------------- /dev/science/cascade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/cascade.c -------------------------------------------------------------------------------- /dev/science/chirikov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/chirikov.c -------------------------------------------------------------------------------- /dev/science/crumble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/crumble.c -------------------------------------------------------------------------------- /dev/science/crystal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/crystal.c -------------------------------------------------------------------------------- /dev/science/cubicspline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/cubicspline.c -------------------------------------------------------------------------------- /dev/science/distortt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/distortt.c -------------------------------------------------------------------------------- /dev/science/dvdwind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/dvdwind.c -------------------------------------------------------------------------------- /dev/science/flatten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/flatten.c -------------------------------------------------------------------------------- /dev/science/impulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/impulse.c -------------------------------------------------------------------------------- /dev/science/logistic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/logistic.c -------------------------------------------------------------------------------- /dev/science/motor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/motor.c -------------------------------------------------------------------------------- /dev/science/multiosc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/multiosc.c -------------------------------------------------------------------------------- /dev/science/multisynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/multisynth.c -------------------------------------------------------------------------------- /dev/science/newscales.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/newscales.c -------------------------------------------------------------------------------- /dev/science/notchinvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/notchinvert.c -------------------------------------------------------------------------------- /dev/science/peakiso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/peakiso.c -------------------------------------------------------------------------------- /dev/science/pulser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/pulser.c -------------------------------------------------------------------------------- /dev/science/refocus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/refocus.c -------------------------------------------------------------------------------- /dev/science/repeater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/repeater.c -------------------------------------------------------------------------------- /dev/science/rotor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/rotor.c -------------------------------------------------------------------------------- /dev/science/science.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/science.txt -------------------------------------------------------------------------------- /dev/science/scramble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/scramble.c -------------------------------------------------------------------------------- /dev/science/smooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/smooth.c -------------------------------------------------------------------------------- /dev/science/sorter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/sorter.c -------------------------------------------------------------------------------- /dev/science/specanal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/specanal.c -------------------------------------------------------------------------------- /dev/science/specav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/specav.c -------------------------------------------------------------------------------- /dev/science/specfnu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/specfnu.c -------------------------------------------------------------------------------- /dev/science/specfold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/specfold.c -------------------------------------------------------------------------------- /dev/science/spectstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/spectstr.c -------------------------------------------------------------------------------- /dev/science/spectune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/spectune.c -------------------------------------------------------------------------------- /dev/science/spin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/spin.c -------------------------------------------------------------------------------- /dev/science/splinter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/splinter.c -------------------------------------------------------------------------------- /dev/science/strands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/strands.c -------------------------------------------------------------------------------- /dev/science/stutter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/stutter.c -------------------------------------------------------------------------------- /dev/science/synfilt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/synfilt.c -------------------------------------------------------------------------------- /dev/science/synspline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/synspline.c -------------------------------------------------------------------------------- /dev/science/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/synthesis.c -------------------------------------------------------------------------------- /dev/science/tesselate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/tesselate.c -------------------------------------------------------------------------------- /dev/science/timeseries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/timeseries.c -------------------------------------------------------------------------------- /dev/science/tremenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/tremenv.c -------------------------------------------------------------------------------- /dev/science/ts_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/ts_convert.c -------------------------------------------------------------------------------- /dev/science/tweet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/tweet.c -------------------------------------------------------------------------------- /dev/science/unknot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/unknot.c -------------------------------------------------------------------------------- /dev/science/verges.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/verges.c -------------------------------------------------------------------------------- /dev/science/waveform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/waveform.c -------------------------------------------------------------------------------- /dev/science/wavmedian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/science/wavmedian.c -------------------------------------------------------------------------------- /dev/sfsys/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfsys/CMakeLists.txt -------------------------------------------------------------------------------- /dev/sfsys/Makefiled.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfsys/Makefiled.osx -------------------------------------------------------------------------------- /dev/sfsys/alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfsys/alias.c -------------------------------------------------------------------------------- /dev/sfsys/alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfsys/alias.h -------------------------------------------------------------------------------- /dev/sfsys/ieee80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfsys/ieee80.c -------------------------------------------------------------------------------- /dev/sfsys/ieee80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfsys/ieee80.h -------------------------------------------------------------------------------- /dev/sfsys/osbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfsys/osbind.c -------------------------------------------------------------------------------- /dev/sfsys/props.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfsys/props.c -------------------------------------------------------------------------------- /dev/sfsys/props.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfsys/props.cpp -------------------------------------------------------------------------------- /dev/sfsys/scandir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfsys/scandir.c -------------------------------------------------------------------------------- /dev/sfsys/scandir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfsys/scandir.h -------------------------------------------------------------------------------- /dev/sfsys/sfdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfsys/sfdir.c -------------------------------------------------------------------------------- /dev/sfsys/sffuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfsys/sffuncs.h -------------------------------------------------------------------------------- /dev/sfsys/sfsys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfsys/sfsys.c -------------------------------------------------------------------------------- /dev/sfsys/shortcuts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfsys/shortcuts.c -------------------------------------------------------------------------------- /dev/sfsys/snd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfsys/snd.c -------------------------------------------------------------------------------- /dev/sfutils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfutils/CMakeLists.txt -------------------------------------------------------------------------------- /dev/sfutils/Makefiled.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfutils/Makefiled.osx -------------------------------------------------------------------------------- /dev/sfutils/dirsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfutils/dirsf.c -------------------------------------------------------------------------------- /dev/sfutils/wildcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfutils/wildcard.c -------------------------------------------------------------------------------- /dev/sfutils/wildcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sfutils/wildcard.h -------------------------------------------------------------------------------- /dev/sndinfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sndinfo/CMakeLists.txt -------------------------------------------------------------------------------- /dev/sndinfo/Makefiled.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sndinfo/Makefiled.osx -------------------------------------------------------------------------------- /dev/sndinfo/ap_sndinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sndinfo/ap_sndinfo.c -------------------------------------------------------------------------------- /dev/sndinfo/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sndinfo/compare.c -------------------------------------------------------------------------------- /dev/sndinfo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sndinfo/main.c -------------------------------------------------------------------------------- /dev/sndinfo/musunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/sndinfo/musunit.c -------------------------------------------------------------------------------- /dev/spec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/spec/CMakeLists.txt -------------------------------------------------------------------------------- /dev/spec/ap_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/spec/ap_simple.c -------------------------------------------------------------------------------- /dev/spec/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/spec/main.c -------------------------------------------------------------------------------- /dev/spec/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/spec/simple.c -------------------------------------------------------------------------------- /dev/specinfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/specinfo/CMakeLists.txt -------------------------------------------------------------------------------- /dev/specinfo/ap_specinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/specinfo/ap_specinfo.c -------------------------------------------------------------------------------- /dev/specinfo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/specinfo/main.c -------------------------------------------------------------------------------- /dev/specinfo/specinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/specinfo/specinfo.c -------------------------------------------------------------------------------- /dev/standalone/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/CMakeLists.txt -------------------------------------------------------------------------------- /dev/standalone/analjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/analjoin.c -------------------------------------------------------------------------------- /dev/standalone/brktopi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/brktopi.c -------------------------------------------------------------------------------- /dev/standalone/constrict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/constrict.c -------------------------------------------------------------------------------- /dev/standalone/dshift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/dshift.c -------------------------------------------------------------------------------- /dev/standalone/envnu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/envnu.c -------------------------------------------------------------------------------- /dev/standalone/features.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/features.c -------------------------------------------------------------------------------- /dev/standalone/flutter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/flutter.c -------------------------------------------------------------------------------- /dev/standalone/fofex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/fofex.c -------------------------------------------------------------------------------- /dev/standalone/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/frame.c -------------------------------------------------------------------------------- /dev/standalone/freeze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/freeze.c -------------------------------------------------------------------------------- /dev/standalone/gate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/gate.c -------------------------------------------------------------------------------- /dev/standalone/get_partials.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/get_partials.c -------------------------------------------------------------------------------- /dev/standalone/grainex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/grainex.c -------------------------------------------------------------------------------- /dev/standalone/hover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/hover.c -------------------------------------------------------------------------------- /dev/standalone/manysil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/manysil.c -------------------------------------------------------------------------------- /dev/standalone/mchanpan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/mchanpan.c -------------------------------------------------------------------------------- /dev/standalone/mchanrev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/mchanrev.c -------------------------------------------------------------------------------- /dev/standalone/mchiter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/mchiter.c -------------------------------------------------------------------------------- /dev/standalone/mchshred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/mchshred.c -------------------------------------------------------------------------------- /dev/standalone/mchstereo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/mchstereo.c -------------------------------------------------------------------------------- /dev/standalone/mchzig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/mchzig.c -------------------------------------------------------------------------------- /dev/standalone/mton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/mton.c -------------------------------------------------------------------------------- /dev/standalone/multimix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/multimix.c -------------------------------------------------------------------------------- /dev/standalone/newmix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/newmix.c -------------------------------------------------------------------------------- /dev/standalone/oneform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/oneform.c -------------------------------------------------------------------------------- /dev/standalone/peakfind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/peakfind.c -------------------------------------------------------------------------------- /dev/standalone/phase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/phase.c -------------------------------------------------------------------------------- /dev/standalone/prefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/prefix.c -------------------------------------------------------------------------------- /dev/standalone/psow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/psow.c -------------------------------------------------------------------------------- /dev/standalone/ptobrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/ptobrk.c -------------------------------------------------------------------------------- /dev/standalone/retime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/retime.c -------------------------------------------------------------------------------- /dev/standalone/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/search.c -------------------------------------------------------------------------------- /dev/standalone/sethares.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/sethares.c -------------------------------------------------------------------------------- /dev/standalone/spacedesign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/spacedesign.c -------------------------------------------------------------------------------- /dev/standalone/speclean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/speclean.c -------------------------------------------------------------------------------- /dev/standalone/specnu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/specnu.c -------------------------------------------------------------------------------- /dev/standalone/specross.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/specross.c -------------------------------------------------------------------------------- /dev/standalone/strans_multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/strans_multi.c -------------------------------------------------------------------------------- /dev/standalone/texmchan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/texmchan.c -------------------------------------------------------------------------------- /dev/standalone/texprepromch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/texprepromch.c -------------------------------------------------------------------------------- /dev/standalone/texture5mc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/texture5mc.c -------------------------------------------------------------------------------- /dev/standalone/topantail2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/topantail2.c -------------------------------------------------------------------------------- /dev/standalone/wrappage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standalone/wrappage.c -------------------------------------------------------------------------------- /dev/standnew/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/CMakeLists.txt -------------------------------------------------------------------------------- /dev/standnew/asciiget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/asciiget.c -------------------------------------------------------------------------------- /dev/standnew/caltrain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/caltrain.c -------------------------------------------------------------------------------- /dev/standnew/clicknew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/clicknew.c -------------------------------------------------------------------------------- /dev/standnew/clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/clip.c -------------------------------------------------------------------------------- /dev/standnew/convert_to_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/convert_to_midi.c -------------------------------------------------------------------------------- /dev/standnew/distcut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/distcut.c -------------------------------------------------------------------------------- /dev/standnew/distmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/distmark.c -------------------------------------------------------------------------------- /dev/standnew/distmore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/distmore.c -------------------------------------------------------------------------------- /dev/standnew/distrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/distrep.c -------------------------------------------------------------------------------- /dev/standnew/distshift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/distshift.c -------------------------------------------------------------------------------- /dev/standnew/distwarp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/distwarp.c -------------------------------------------------------------------------------- /dev/standnew/envcut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/envcut.c -------------------------------------------------------------------------------- /dev/standnew/envspeak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/envspeak.c -------------------------------------------------------------------------------- /dev/standnew/extspeak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/extspeak.c -------------------------------------------------------------------------------- /dev/standnew/fractal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/fractal.c -------------------------------------------------------------------------------- /dev/standnew/frfractal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/frfractal.c -------------------------------------------------------------------------------- /dev/standnew/fturanal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/fturanal.c -------------------------------------------------------------------------------- /dev/standnew/headview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/headview.c -------------------------------------------------------------------------------- /dev/standnew/hover2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/hover2.c -------------------------------------------------------------------------------- /dev/standnew/onset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/onset.c -------------------------------------------------------------------------------- /dev/standnew/pairex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/pairex.c -------------------------------------------------------------------------------- /dev/standnew/partition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/partition.c -------------------------------------------------------------------------------- /dev/standnew/phasor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/phasor.c -------------------------------------------------------------------------------- /dev/standnew/quirk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/quirk.c -------------------------------------------------------------------------------- /dev/standnew/repair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/repair.c -------------------------------------------------------------------------------- /dev/standnew/scales.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/scales.c -------------------------------------------------------------------------------- /dev/standnew/specenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/specenv.c -------------------------------------------------------------------------------- /dev/standnew/speculation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/speculation.c -------------------------------------------------------------------------------- /dev/standnew/spike.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/spike.c -------------------------------------------------------------------------------- /dev/standnew/suppress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/suppress.c -------------------------------------------------------------------------------- /dev/standnew/tostereo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/tostereo.c -------------------------------------------------------------------------------- /dev/standnew/unitary_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/standnew/unitary_matrix.c -------------------------------------------------------------------------------- /dev/strange/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/strange/CMakeLists.txt -------------------------------------------------------------------------------- /dev/strange/ap_strange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/strange/ap_strange.c -------------------------------------------------------------------------------- /dev/strange/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/strange/main.c -------------------------------------------------------------------------------- /dev/strange/strange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/strange/strange.c -------------------------------------------------------------------------------- /dev/stretch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/stretch/CMakeLists.txt -------------------------------------------------------------------------------- /dev/stretch/ap_stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/stretch/ap_stretch.c -------------------------------------------------------------------------------- /dev/stretch/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/stretch/main.c -------------------------------------------------------------------------------- /dev/stretch/stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/stretch/stretch.c -------------------------------------------------------------------------------- /dev/submix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/submix/CMakeLists.txt -------------------------------------------------------------------------------- /dev/submix/ap_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/submix/ap_mix.c -------------------------------------------------------------------------------- /dev/submix/inbetwee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/submix/inbetwee.c -------------------------------------------------------------------------------- /dev/submix/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/submix/main.c -------------------------------------------------------------------------------- /dev/submix/mixmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/submix/mixmerge.c -------------------------------------------------------------------------------- /dev/submix/mixprepro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/submix/mixprepro.c -------------------------------------------------------------------------------- /dev/submix/mixshuf0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/submix/mixshuf0.c -------------------------------------------------------------------------------- /dev/submix/mixshuf1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/submix/mixshuf1.c -------------------------------------------------------------------------------- /dev/submix/mixshuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/submix/mixshuf2.c -------------------------------------------------------------------------------- /dev/submix/newmix0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/submix/newmix0.c -------------------------------------------------------------------------------- /dev/submix/newmix1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/submix/newmix1.c -------------------------------------------------------------------------------- /dev/submix/setupmix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/submix/setupmix.c -------------------------------------------------------------------------------- /dev/submix/syncatt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/submix/syncatt.c -------------------------------------------------------------------------------- /dev/synth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/synth/CMakeLists.txt -------------------------------------------------------------------------------- /dev/synth/ap_synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/synth/ap_synthesis.c -------------------------------------------------------------------------------- /dev/synth/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/synth/main.c -------------------------------------------------------------------------------- /dev/synth/mxfft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/synth/mxfft.c -------------------------------------------------------------------------------- /dev/synth/pvoc_addon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/synth/pvoc_addon.c -------------------------------------------------------------------------------- /dev/synth/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/synth/wave.c -------------------------------------------------------------------------------- /dev/tabedit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/tabedit/CMakeLists.txt -------------------------------------------------------------------------------- /dev/tabedit/columns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/tabedit/columns.c -------------------------------------------------------------------------------- /dev/tabedit/columns0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/tabedit/columns0.c -------------------------------------------------------------------------------- /dev/tabedit/columns1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/tabedit/columns1.c -------------------------------------------------------------------------------- /dev/tabedit/columns2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/tabedit/columns2.c -------------------------------------------------------------------------------- /dev/tabedit/columns3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/tabedit/columns3.c -------------------------------------------------------------------------------- /dev/tabedit/columns4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/tabedit/columns4.c -------------------------------------------------------------------------------- /dev/tabedit/columns5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/tabedit/columns5.c -------------------------------------------------------------------------------- /dev/tabedit/columns6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/tabedit/columns6.c -------------------------------------------------------------------------------- /dev/tabedit/getcol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/tabedit/getcol.c -------------------------------------------------------------------------------- /dev/tabedit/putcol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/tabedit/putcol.c -------------------------------------------------------------------------------- /dev/tabedit/vectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/tabedit/vectors.c -------------------------------------------------------------------------------- /dev/texture/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/texture/CMakeLists.txt -------------------------------------------------------------------------------- /dev/texture/ap_texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/texture/ap_texture.c -------------------------------------------------------------------------------- /dev/texture/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/texture/main.c -------------------------------------------------------------------------------- /dev/texture/texperm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/texture/texperm.c -------------------------------------------------------------------------------- /dev/texture/texprepro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/texture/texprepro.c -------------------------------------------------------------------------------- /dev/texture/texture1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/texture/texture1.c -------------------------------------------------------------------------------- /dev/texture/texture2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/texture/texture2.c -------------------------------------------------------------------------------- /dev/texture/texture3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/texture/texture3.c -------------------------------------------------------------------------------- /dev/texture/texture4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/texture/texture4.c -------------------------------------------------------------------------------- /dev/texture/texture5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/dev/texture/texture5.c -------------------------------------------------------------------------------- /docs/current-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/docs/current-notes.txt -------------------------------------------------------------------------------- /docs/r8groups.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/docs/r8groups.txt -------------------------------------------------------------------------------- /include/aaio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/include/aaio.h -------------------------------------------------------------------------------- /include/cdplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/include/cdplib.h -------------------------------------------------------------------------------- /include/chanmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/include/chanmask.h -------------------------------------------------------------------------------- /include/osbind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/include/osbind.h -------------------------------------------------------------------------------- /include/props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/include/props.h -------------------------------------------------------------------------------- /include/sfsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/include/sfsys.h -------------------------------------------------------------------------------- /libaaio/libaaio-0.3.2.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ComposersDesktop/CDP8/HEAD/libaaio/libaaio-0.3.2.tar.bz2 --------------------------------------------------------------------------------