├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── Makefile ├── README.md ├── m2.sh ├── m3.sh ├── make_and_run.sh ├── plugin.json ├── porter.sh ├── rawwaves ├── ahh.raw ├── bassdrum.raw ├── britestk.raw ├── cowbell1.raw ├── crashcym.raw ├── dope.raw ├── eee.raw ├── fwavblnk.raw ├── halfwave.raw ├── hihatcym.raw ├── impuls10.raw ├── impuls20.raw ├── impuls40.raw ├── makefunc.c ├── makemidi.c ├── makewavs.c ├── mand1.raw ├── mand10.raw ├── mand11.raw ├── mand12.raw ├── mand2.raw ├── mand3.raw ├── mand4.raw ├── mand5.raw ├── mand6.raw ├── mand7.raw ├── mand8.raw ├── mand9.raw ├── mandpluk.raw ├── marmstk1.raw ├── ooo.raw ├── peksblnk.raw ├── ppksblnk.raw ├── ridecymb.raw ├── silence.raw ├── sine.c ├── sineblnk.raw ├── sinewave.raw ├── snardrum.raw ├── snglpeak.raw ├── tambourn.raw ├── tomhidrm.raw ├── tomlowdr.raw ├── tommiddr.raw └── twopeaks.raw ├── release ├── RJModules-0.5.0-osx.zip └── RJModules-0.5.0-win.zip ├── res ├── Acid.svg ├── AcidRoundLargeBlackKnob.svg ├── AcidRoundLargeHappyKnob.svg ├── BPF.svg ├── BPM.svg ├── BigLEDButton.svg ├── BitCrush.svg ├── Blank.svg ├── BlankWide.svg ├── Blank_20HP.png ├── Braids.svg ├── Brickwall.svg ├── Buffers.svg ├── Button.svg ├── Buttons.svg ├── Chord.svg ├── ChordSeq.svg ├── Chorus.svg ├── ComponentLibrary │ ├── AHBigKnob.svg │ ├── AHButton.svg │ ├── AHKnob.svg │ └── AHTrimpot.svg ├── DSEG14.ttf ├── Displays.svg ├── Drumpler.svg ├── DrumplerRoundLargeBlackKnob.svg ├── DryWet.svg ├── EssEff.svg ├── Euclidian.svg ├── Filter.svg ├── FilterDelay.svg ├── Filters.svg ├── Floats.svg ├── Gaussian.svg ├── Glides.svg ├── GlutenFree.svg ├── GravityGlide.svg ├── GuitarNeck.svg ├── Instro.svg ├── Integers.svg ├── KTF.svg ├── KTFRoundHugeBlackKnob.svg ├── KTFRoundLargeBlackKnob.svg ├── KTFRoundSmallBlackKnob.svg ├── LRMixer.svg ├── LeftHandRightHand.svg ├── LilLEDButton.svg ├── LilLEDButton2.svg ├── MedLEDButton.svg ├── MegaDivider.svg ├── MetaKnob.svg ├── Mono.svg ├── MutateSeq.svg ├── Noise.svg ├── Notch.svg ├── Notes.svg ├── Octaves.svg ├── Octo.svg ├── Panner.svg ├── Panners.svg ├── PingPong.svg ├── PlayableChord.svg ├── Pluck.svg ├── Pokemon.ttf ├── RandomFilter.svg ├── Randoms.svg ├── Range.svg ├── RangeLFO.svg ├── ReplayKnob.svg ├── Reverb.svg ├── Riser.svg ├── RoundGiantBlackKnob.svg ├── Segment7Standard.ttf ├── Sequential.svg ├── Sidechain.svg ├── Slapback.svg ├── Splitter.svg ├── Splitters.svg ├── Stutter.svg ├── SubOsc.svg ├── Supersaw.svg ├── SwitchLEDButton.svg ├── TS_Port.svg ├── TS_RoundBlackEncoder_20.svg ├── TS_RoundBlackKnob_15.svg ├── TS_RoundBlackKnob_20.svg ├── TS_pad_0.svg ├── TS_pad_1.svg ├── TS_pad_btn_0.svg ├── TS_pad_btn_1.svg ├── TS_pad_reset_0.svg ├── TS_pad_reset_1.svg ├── TS_pad_run_0.svg ├── TS_pad_run_1.svg ├── TS_pad_wide_0.svg ├── ThreeXOSC.svg ├── TriggerSwitch.svg ├── TwinLFO.svg ├── Volumes.svg ├── Widener.svg ├── Zen_20HP.png └── uQuant.svg ├── samples ├── 303_alt.wav ├── 303_wavetable.wav ├── 303_wavetable_alt.wav ├── 303_wavetable_c.wav └── 808_hucci_waveform.wav ├── soundfonts ├── 8bit.sf2 └── Grand_Piano.sf2 └── src ├── 3xOSC.cpp ├── ADSR.cpp ├── ADSR.h ├── AH.hpp ├── Acid.cpp ├── Asymp.cpp ├── Asymp.h ├── BPF.cpp ├── BPM.cpp ├── BandedWG.cpp ├── BandedWG.h ├── BeeThree.cpp ├── BeeThree.h ├── BiQuad.cpp ├── BiQuad.h ├── BigButton.cpp ├── BitCrush.cpp ├── Bitmap.cpp ├── Bitmap.hpp ├── Blit.cpp ├── Blit.h ├── BlitSaw.cpp ├── BlitSaw.h ├── BlitSquare.cpp ├── BlitSquare.h ├── BlowBotl.cpp ├── BlowBotl.h ├── BlowHole.cpp ├── BlowHole.h ├── BowTable.h ├── Bowed.cpp ├── Bowed.h ├── Brass.cpp ├── Brass.h ├── Brickwall.cpp ├── Buffers.cpp ├── Buttons.cpp ├── Chord.cpp ├── ChordSeq.cpp ├── Chorus.cpp ├── Chorus.h ├── Clarinet.cpp ├── Clarinet.h ├── Core.cpp ├── Core.hpp ├── Cubic.h ├── DSPEffect.hpp ├── DSPMath.cpp ├── DSPMath.hpp ├── DSPSystem.hpp ├── DSPUtilities.cpp ├── DSPUtilities.h ├── Delay.cpp ├── Delay.h ├── DelayA.cpp ├── DelayA.h ├── DelayL.cpp ├── DelayL.h ├── Displays.cpp ├── Drummer.cpp ├── Drummer.h ├── Drumpler.cpp ├── DryWet.cpp ├── Echo.cpp ├── Echo.h ├── Effect.h ├── Envelope.cpp ├── Envelope.h ├── EssEff.cpp ├── Euclidian.cpp ├── FFTuner.cpp ├── FM.cpp ├── FM.h ├── FMVoices.cpp ├── FMVoices.h ├── FileLoop.cpp ├── FileLoop.h ├── FileRead.cpp ├── FileRead.h ├── FileWrite.cpp ├── FileWrite.h ├── FileWvIn.cpp ├── FileWvIn.h ├── FileWvOut.cpp ├── FileWvOut.h ├── Filter.cpp ├── Filter.h ├── FilterDelay.cpp ├── Filters.cpp ├── Fir.cpp ├── Fir.h ├── Floats.cpp ├── Flute.cpp ├── Flute.h ├── FormSwep.cpp ├── FormSwep.h ├── FreeVerb.cpp ├── FreeVerb.h ├── Function.h ├── Gaussian.cpp ├── Generator.h ├── Glides.cpp ├── GlutenFree.cpp ├── Granulate.cpp ├── Granulate.h ├── GravityGlide.cpp ├── Guitar.cpp ├── Guitar.h ├── GuitarNeck.cpp ├── HevyMetl.cpp ├── HevyMetl.h ├── Iir.cpp ├── Iir.h ├── Instrmnt.h ├── Instro.cpp ├── Integers.cpp ├── JCRev.cpp ├── JCRev.h ├── JetTable.h ├── KTF.cpp ├── LRMixer.cpp ├── LeftHandRightHand ├── LeftHandRightHand.cpp ├── LentPitShift.cpp ├── LentPitShift.h ├── Makefile.in ├── Mandolin.cpp ├── Mandolin.h ├── MegaDivider.cpp ├── Mesh2D.cpp ├── Mesh2D.h ├── Messager.cpp ├── Messager.h ├── MetaKnob.cpp ├── MidiFileIn.cpp ├── MidiFileIn.h ├── Modal.cpp ├── Modal.h ├── ModalBar.cpp ├── ModalBar.h ├── Modulate.cpp ├── Modulate.h ├── Mono.cpp ├── Moog.cpp ├── Moog.h ├── MutateSeq.cpp ├── NRev.cpp ├── NRev.h ├── Noise.cpp ├── Noise.h ├── Notch.cpp ├── Notes.cpp ├── Octaves.cpp ├── Octo.cpp ├── OnePole.cpp ├── OnePole.h ├── OneZero.cpp ├── OneZero.h ├── Oscillator.cpp ├── Oscillator.hpp ├── PLAYER.derp ├── PRCRev.cpp ├── PRCRev.h ├── Panner.cpp ├── Panners.cpp ├── PercFlut.cpp ├── PercFlut.h ├── Phonemes.cpp ├── Phonemes.h ├── PingPong.cpp ├── PitShift.cpp ├── PitShift.h ├── PlayableChord.cpp ├── Pluck.cpp ├── Plucked.cpp ├── Plucked.h ├── PoleZero.cpp ├── PoleZero.h ├── PolySidechain.cpp ├── RJChorus.cpp ├── RJModules.cpp ├── RJModules.hpp ├── RJNoise.cpp ├── RandomFilter.cpp ├── Randoms.cpp ├── Range.cpp ├── RangeLFO.cpp ├── Recorder.cpp ├── Recorder.h ├── ReedTable.h ├── ReplayKnob.cpp ├── Resonate.cpp ├── Resonate.h ├── Rhodey.cpp ├── Rhodey.h ├── Riser.cpp ├── RtAudio.cpp ├── RtAudio.h ├── RtMidi.cpp ├── RtMidi.h ├── SKINImsg.h ├── SKINItbl.h ├── Sampler.cpp ├── Sampler.h ├── Saxofony.cpp ├── Saxofony.h ├── Sequential.cpp ├── Shakers.cpp ├── Shakers.h ├── Sidechain.cpp ├── Simple.cpp ├── Simple.h ├── SineWave.cpp ├── SineWave.h ├── SingWave.cpp ├── SingWave.h ├── Sitar.cpp ├── Sitar.h ├── Skini.cpp ├── Skini.h ├── Slapback.cpp ├── Socket.h ├── Soundpipe.cpp ├── Sphere.cpp ├── Sphere.h ├── Splitter.cpp ├── Splitters.cpp ├── StifKarp.cpp ├── StifKarp.h ├── Stk.cpp ├── Stk.h ├── Stutter.cpp ├── SubOsc.cpp ├── Succulent.cpp ├── Supersaw.cpp ├── TapDelay.cpp ├── TapDelay.h ├── TriggerSwitch.cpp ├── TubeBell.cpp ├── TubeBell.h ├── Twang.cpp ├── Twang.h ├── TwinLFO.cpp ├── TwoPole.cpp ├── TwoPole.h ├── TwoZero.cpp ├── TwoZero.h ├── UI.cpp ├── UI.hpp ├── VAStateVariableFilter.cpp ├── VAStateVariableFilter.h ├── Vector3D.h ├── VoicForm.cpp ├── VoicForm.h ├── Voicer.cpp ├── Voicer.h ├── Volumes.cpp ├── Whistle.cpp ├── Whistle.h ├── Widener.cpp ├── Wurley.cpp ├── Wurley.h ├── WvIn.h ├── WvOut.h ├── common.cpp ├── common.hpp ├── dr_wav.h ├── include ├── FunctionDiscoveryKeys_devpkey.h ├── asio.cpp ├── asio.h ├── asiodrivers.cpp ├── asiodrivers.h ├── asiodrvr.h ├── asiolist.cpp ├── asiolist.h ├── asiosys.h ├── dsound.h ├── ginclude.h ├── iasiodrv.h ├── iasiothiscallresolver.cpp ├── iasiothiscallresolver.h └── soundcard.h ├── libfft.c ├── libfft.h ├── tinydir.h ├── tsf.h ├── tuner.c ├── uQuant.cpp └── vcf.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .DS_Store 3 | plugin.dylib 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/README.md -------------------------------------------------------------------------------- /m2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/m2.sh -------------------------------------------------------------------------------- /m3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/m3.sh -------------------------------------------------------------------------------- /make_and_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/make_and_run.sh -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/plugin.json -------------------------------------------------------------------------------- /porter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/porter.sh -------------------------------------------------------------------------------- /rawwaves/ahh.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/ahh.raw -------------------------------------------------------------------------------- /rawwaves/bassdrum.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/bassdrum.raw -------------------------------------------------------------------------------- /rawwaves/britestk.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/britestk.raw -------------------------------------------------------------------------------- /rawwaves/cowbell1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/cowbell1.raw -------------------------------------------------------------------------------- /rawwaves/crashcym.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/crashcym.raw -------------------------------------------------------------------------------- /rawwaves/dope.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/dope.raw -------------------------------------------------------------------------------- /rawwaves/eee.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/eee.raw -------------------------------------------------------------------------------- /rawwaves/fwavblnk.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/fwavblnk.raw -------------------------------------------------------------------------------- /rawwaves/halfwave.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/halfwave.raw -------------------------------------------------------------------------------- /rawwaves/hihatcym.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/hihatcym.raw -------------------------------------------------------------------------------- /rawwaves/impuls10.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/impuls10.raw -------------------------------------------------------------------------------- /rawwaves/impuls20.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/impuls20.raw -------------------------------------------------------------------------------- /rawwaves/impuls40.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/impuls40.raw -------------------------------------------------------------------------------- /rawwaves/makefunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/makefunc.c -------------------------------------------------------------------------------- /rawwaves/makemidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/makemidi.c -------------------------------------------------------------------------------- /rawwaves/makewavs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/makewavs.c -------------------------------------------------------------------------------- /rawwaves/mand1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/mand1.raw -------------------------------------------------------------------------------- /rawwaves/mand10.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/mand10.raw -------------------------------------------------------------------------------- /rawwaves/mand11.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/mand11.raw -------------------------------------------------------------------------------- /rawwaves/mand12.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/mand12.raw -------------------------------------------------------------------------------- /rawwaves/mand2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/mand2.raw -------------------------------------------------------------------------------- /rawwaves/mand3.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/mand3.raw -------------------------------------------------------------------------------- /rawwaves/mand4.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/mand4.raw -------------------------------------------------------------------------------- /rawwaves/mand5.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/mand5.raw -------------------------------------------------------------------------------- /rawwaves/mand6.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/mand6.raw -------------------------------------------------------------------------------- /rawwaves/mand7.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/mand7.raw -------------------------------------------------------------------------------- /rawwaves/mand8.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/mand8.raw -------------------------------------------------------------------------------- /rawwaves/mand9.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/mand9.raw -------------------------------------------------------------------------------- /rawwaves/mandpluk.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/mandpluk.raw -------------------------------------------------------------------------------- /rawwaves/marmstk1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/marmstk1.raw -------------------------------------------------------------------------------- /rawwaves/ooo.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/ooo.raw -------------------------------------------------------------------------------- /rawwaves/peksblnk.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/peksblnk.raw -------------------------------------------------------------------------------- /rawwaves/ppksblnk.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/ppksblnk.raw -------------------------------------------------------------------------------- /rawwaves/ridecymb.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/ridecymb.raw -------------------------------------------------------------------------------- /rawwaves/silence.raw: -------------------------------------------------------------------------------- 1 | c`C -------------------------------------------------------------------------------- /rawwaves/sine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/sine.c -------------------------------------------------------------------------------- /rawwaves/sineblnk.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/sineblnk.raw -------------------------------------------------------------------------------- /rawwaves/sinewave.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/sinewave.raw -------------------------------------------------------------------------------- /rawwaves/snardrum.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/snardrum.raw -------------------------------------------------------------------------------- /rawwaves/snglpeak.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/snglpeak.raw -------------------------------------------------------------------------------- /rawwaves/tambourn.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/tambourn.raw -------------------------------------------------------------------------------- /rawwaves/tomhidrm.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/tomhidrm.raw -------------------------------------------------------------------------------- /rawwaves/tomlowdr.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/tomlowdr.raw -------------------------------------------------------------------------------- /rawwaves/tommiddr.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/tommiddr.raw -------------------------------------------------------------------------------- /rawwaves/twopeaks.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/rawwaves/twopeaks.raw -------------------------------------------------------------------------------- /release/RJModules-0.5.0-osx.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/release/RJModules-0.5.0-osx.zip -------------------------------------------------------------------------------- /release/RJModules-0.5.0-win.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/release/RJModules-0.5.0-win.zip -------------------------------------------------------------------------------- /res/Acid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Acid.svg -------------------------------------------------------------------------------- /res/AcidRoundLargeBlackKnob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/AcidRoundLargeBlackKnob.svg -------------------------------------------------------------------------------- /res/AcidRoundLargeHappyKnob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/AcidRoundLargeHappyKnob.svg -------------------------------------------------------------------------------- /res/BPF.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/BPF.svg -------------------------------------------------------------------------------- /res/BPM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/BPM.svg -------------------------------------------------------------------------------- /res/BigLEDButton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/BigLEDButton.svg -------------------------------------------------------------------------------- /res/BitCrush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/BitCrush.svg -------------------------------------------------------------------------------- /res/Blank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Blank.svg -------------------------------------------------------------------------------- /res/BlankWide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/BlankWide.svg -------------------------------------------------------------------------------- /res/Blank_20HP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Blank_20HP.png -------------------------------------------------------------------------------- /res/Braids.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Braids.svg -------------------------------------------------------------------------------- /res/Brickwall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Brickwall.svg -------------------------------------------------------------------------------- /res/Buffers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Buffers.svg -------------------------------------------------------------------------------- /res/Button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Button.svg -------------------------------------------------------------------------------- /res/Buttons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Buttons.svg -------------------------------------------------------------------------------- /res/Chord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Chord.svg -------------------------------------------------------------------------------- /res/ChordSeq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/ChordSeq.svg -------------------------------------------------------------------------------- /res/Chorus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Chorus.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/AHBigKnob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/ComponentLibrary/AHBigKnob.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/AHButton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/ComponentLibrary/AHButton.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/AHKnob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/ComponentLibrary/AHKnob.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/AHTrimpot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/ComponentLibrary/AHTrimpot.svg -------------------------------------------------------------------------------- /res/DSEG14.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/DSEG14.ttf -------------------------------------------------------------------------------- /res/Displays.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Displays.svg -------------------------------------------------------------------------------- /res/Drumpler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Drumpler.svg -------------------------------------------------------------------------------- /res/DrumplerRoundLargeBlackKnob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/DrumplerRoundLargeBlackKnob.svg -------------------------------------------------------------------------------- /res/DryWet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/DryWet.svg -------------------------------------------------------------------------------- /res/EssEff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/EssEff.svg -------------------------------------------------------------------------------- /res/Euclidian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Euclidian.svg -------------------------------------------------------------------------------- /res/Filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Filter.svg -------------------------------------------------------------------------------- /res/FilterDelay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/FilterDelay.svg -------------------------------------------------------------------------------- /res/Filters.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Filters.svg -------------------------------------------------------------------------------- /res/Floats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Floats.svg -------------------------------------------------------------------------------- /res/Gaussian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Gaussian.svg -------------------------------------------------------------------------------- /res/Glides.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Glides.svg -------------------------------------------------------------------------------- /res/GlutenFree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/GlutenFree.svg -------------------------------------------------------------------------------- /res/GravityGlide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/GravityGlide.svg -------------------------------------------------------------------------------- /res/GuitarNeck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/GuitarNeck.svg -------------------------------------------------------------------------------- /res/Instro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Instro.svg -------------------------------------------------------------------------------- /res/Integers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Integers.svg -------------------------------------------------------------------------------- /res/KTF.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/KTF.svg -------------------------------------------------------------------------------- /res/KTFRoundHugeBlackKnob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/KTFRoundHugeBlackKnob.svg -------------------------------------------------------------------------------- /res/KTFRoundLargeBlackKnob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/KTFRoundLargeBlackKnob.svg -------------------------------------------------------------------------------- /res/KTFRoundSmallBlackKnob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/KTFRoundSmallBlackKnob.svg -------------------------------------------------------------------------------- /res/LRMixer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/LRMixer.svg -------------------------------------------------------------------------------- /res/LeftHandRightHand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/LeftHandRightHand.svg -------------------------------------------------------------------------------- /res/LilLEDButton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/LilLEDButton.svg -------------------------------------------------------------------------------- /res/LilLEDButton2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/LilLEDButton2.svg -------------------------------------------------------------------------------- /res/MedLEDButton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/MedLEDButton.svg -------------------------------------------------------------------------------- /res/MegaDivider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/MegaDivider.svg -------------------------------------------------------------------------------- /res/MetaKnob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/MetaKnob.svg -------------------------------------------------------------------------------- /res/Mono.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Mono.svg -------------------------------------------------------------------------------- /res/MutateSeq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/MutateSeq.svg -------------------------------------------------------------------------------- /res/Noise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Noise.svg -------------------------------------------------------------------------------- /res/Notch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Notch.svg -------------------------------------------------------------------------------- /res/Notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Notes.svg -------------------------------------------------------------------------------- /res/Octaves.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Octaves.svg -------------------------------------------------------------------------------- /res/Octo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Octo.svg -------------------------------------------------------------------------------- /res/Panner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Panner.svg -------------------------------------------------------------------------------- /res/Panners.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Panners.svg -------------------------------------------------------------------------------- /res/PingPong.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/PingPong.svg -------------------------------------------------------------------------------- /res/PlayableChord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/PlayableChord.svg -------------------------------------------------------------------------------- /res/Pluck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Pluck.svg -------------------------------------------------------------------------------- /res/Pokemon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Pokemon.ttf -------------------------------------------------------------------------------- /res/RandomFilter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/RandomFilter.svg -------------------------------------------------------------------------------- /res/Randoms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Randoms.svg -------------------------------------------------------------------------------- /res/Range.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Range.svg -------------------------------------------------------------------------------- /res/RangeLFO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/RangeLFO.svg -------------------------------------------------------------------------------- /res/ReplayKnob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/ReplayKnob.svg -------------------------------------------------------------------------------- /res/Reverb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Reverb.svg -------------------------------------------------------------------------------- /res/Riser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Riser.svg -------------------------------------------------------------------------------- /res/RoundGiantBlackKnob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/RoundGiantBlackKnob.svg -------------------------------------------------------------------------------- /res/Segment7Standard.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Segment7Standard.ttf -------------------------------------------------------------------------------- /res/Sequential.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Sequential.svg -------------------------------------------------------------------------------- /res/Sidechain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Sidechain.svg -------------------------------------------------------------------------------- /res/Slapback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Slapback.svg -------------------------------------------------------------------------------- /res/Splitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Splitter.svg -------------------------------------------------------------------------------- /res/Splitters.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Splitters.svg -------------------------------------------------------------------------------- /res/Stutter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Stutter.svg -------------------------------------------------------------------------------- /res/SubOsc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/SubOsc.svg -------------------------------------------------------------------------------- /res/Supersaw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Supersaw.svg -------------------------------------------------------------------------------- /res/SwitchLEDButton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/SwitchLEDButton.svg -------------------------------------------------------------------------------- /res/TS_Port.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/TS_Port.svg -------------------------------------------------------------------------------- /res/TS_RoundBlackEncoder_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/TS_RoundBlackEncoder_20.svg -------------------------------------------------------------------------------- /res/TS_RoundBlackKnob_15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/TS_RoundBlackKnob_15.svg -------------------------------------------------------------------------------- /res/TS_RoundBlackKnob_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/TS_RoundBlackKnob_20.svg -------------------------------------------------------------------------------- /res/TS_pad_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/TS_pad_0.svg -------------------------------------------------------------------------------- /res/TS_pad_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/TS_pad_1.svg -------------------------------------------------------------------------------- /res/TS_pad_btn_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/TS_pad_btn_0.svg -------------------------------------------------------------------------------- /res/TS_pad_btn_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/TS_pad_btn_1.svg -------------------------------------------------------------------------------- /res/TS_pad_reset_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/TS_pad_reset_0.svg -------------------------------------------------------------------------------- /res/TS_pad_reset_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/TS_pad_reset_1.svg -------------------------------------------------------------------------------- /res/TS_pad_run_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/TS_pad_run_0.svg -------------------------------------------------------------------------------- /res/TS_pad_run_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/TS_pad_run_1.svg -------------------------------------------------------------------------------- /res/TS_pad_wide_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/TS_pad_wide_0.svg -------------------------------------------------------------------------------- /res/ThreeXOSC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/ThreeXOSC.svg -------------------------------------------------------------------------------- /res/TriggerSwitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/TriggerSwitch.svg -------------------------------------------------------------------------------- /res/TwinLFO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/TwinLFO.svg -------------------------------------------------------------------------------- /res/Volumes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Volumes.svg -------------------------------------------------------------------------------- /res/Widener.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Widener.svg -------------------------------------------------------------------------------- /res/Zen_20HP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/Zen_20HP.png -------------------------------------------------------------------------------- /res/uQuant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/res/uQuant.svg -------------------------------------------------------------------------------- /samples/303_alt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/samples/303_alt.wav -------------------------------------------------------------------------------- /samples/303_wavetable.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/samples/303_wavetable.wav -------------------------------------------------------------------------------- /samples/303_wavetable_alt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/samples/303_wavetable_alt.wav -------------------------------------------------------------------------------- /samples/303_wavetable_c.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/samples/303_wavetable_c.wav -------------------------------------------------------------------------------- /samples/808_hucci_waveform.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/samples/808_hucci_waveform.wav -------------------------------------------------------------------------------- /soundfonts/8bit.sf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/soundfonts/8bit.sf2 -------------------------------------------------------------------------------- /soundfonts/Grand_Piano.sf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/soundfonts/Grand_Piano.sf2 -------------------------------------------------------------------------------- /src/3xOSC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/3xOSC.cpp -------------------------------------------------------------------------------- /src/ADSR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/ADSR.cpp -------------------------------------------------------------------------------- /src/ADSR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/ADSR.h -------------------------------------------------------------------------------- /src/AH.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/AH.hpp -------------------------------------------------------------------------------- /src/Acid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Acid.cpp -------------------------------------------------------------------------------- /src/Asymp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Asymp.cpp -------------------------------------------------------------------------------- /src/Asymp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Asymp.h -------------------------------------------------------------------------------- /src/BPF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/BPF.cpp -------------------------------------------------------------------------------- /src/BPM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/BPM.cpp -------------------------------------------------------------------------------- /src/BandedWG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/BandedWG.cpp -------------------------------------------------------------------------------- /src/BandedWG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/BandedWG.h -------------------------------------------------------------------------------- /src/BeeThree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/BeeThree.cpp -------------------------------------------------------------------------------- /src/BeeThree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/BeeThree.h -------------------------------------------------------------------------------- /src/BiQuad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/BiQuad.cpp -------------------------------------------------------------------------------- /src/BiQuad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/BiQuad.h -------------------------------------------------------------------------------- /src/BigButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/BigButton.cpp -------------------------------------------------------------------------------- /src/BitCrush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/BitCrush.cpp -------------------------------------------------------------------------------- /src/Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Bitmap.cpp -------------------------------------------------------------------------------- /src/Bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Bitmap.hpp -------------------------------------------------------------------------------- /src/Blit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Blit.cpp -------------------------------------------------------------------------------- /src/Blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Blit.h -------------------------------------------------------------------------------- /src/BlitSaw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/BlitSaw.cpp -------------------------------------------------------------------------------- /src/BlitSaw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/BlitSaw.h -------------------------------------------------------------------------------- /src/BlitSquare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/BlitSquare.cpp -------------------------------------------------------------------------------- /src/BlitSquare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/BlitSquare.h -------------------------------------------------------------------------------- /src/BlowBotl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/BlowBotl.cpp -------------------------------------------------------------------------------- /src/BlowBotl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/BlowBotl.h -------------------------------------------------------------------------------- /src/BlowHole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/BlowHole.cpp -------------------------------------------------------------------------------- /src/BlowHole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/BlowHole.h -------------------------------------------------------------------------------- /src/BowTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/BowTable.h -------------------------------------------------------------------------------- /src/Bowed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Bowed.cpp -------------------------------------------------------------------------------- /src/Bowed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Bowed.h -------------------------------------------------------------------------------- /src/Brass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Brass.cpp -------------------------------------------------------------------------------- /src/Brass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Brass.h -------------------------------------------------------------------------------- /src/Brickwall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Brickwall.cpp -------------------------------------------------------------------------------- /src/Buffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Buffers.cpp -------------------------------------------------------------------------------- /src/Buttons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Buttons.cpp -------------------------------------------------------------------------------- /src/Chord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Chord.cpp -------------------------------------------------------------------------------- /src/ChordSeq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/ChordSeq.cpp -------------------------------------------------------------------------------- /src/Chorus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Chorus.cpp -------------------------------------------------------------------------------- /src/Chorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Chorus.h -------------------------------------------------------------------------------- /src/Clarinet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Clarinet.cpp -------------------------------------------------------------------------------- /src/Clarinet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Clarinet.h -------------------------------------------------------------------------------- /src/Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Core.cpp -------------------------------------------------------------------------------- /src/Core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Core.hpp -------------------------------------------------------------------------------- /src/Cubic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Cubic.h -------------------------------------------------------------------------------- /src/DSPEffect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/DSPEffect.hpp -------------------------------------------------------------------------------- /src/DSPMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/DSPMath.cpp -------------------------------------------------------------------------------- /src/DSPMath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/DSPMath.hpp -------------------------------------------------------------------------------- /src/DSPSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/DSPSystem.hpp -------------------------------------------------------------------------------- /src/DSPUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/DSPUtilities.cpp -------------------------------------------------------------------------------- /src/DSPUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/DSPUtilities.h -------------------------------------------------------------------------------- /src/Delay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Delay.cpp -------------------------------------------------------------------------------- /src/Delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Delay.h -------------------------------------------------------------------------------- /src/DelayA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/DelayA.cpp -------------------------------------------------------------------------------- /src/DelayA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/DelayA.h -------------------------------------------------------------------------------- /src/DelayL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/DelayL.cpp -------------------------------------------------------------------------------- /src/DelayL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/DelayL.h -------------------------------------------------------------------------------- /src/Displays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Displays.cpp -------------------------------------------------------------------------------- /src/Drummer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Drummer.cpp -------------------------------------------------------------------------------- /src/Drummer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Drummer.h -------------------------------------------------------------------------------- /src/Drumpler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Drumpler.cpp -------------------------------------------------------------------------------- /src/DryWet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/DryWet.cpp -------------------------------------------------------------------------------- /src/Echo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Echo.cpp -------------------------------------------------------------------------------- /src/Echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Echo.h -------------------------------------------------------------------------------- /src/Effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Effect.h -------------------------------------------------------------------------------- /src/Envelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Envelope.cpp -------------------------------------------------------------------------------- /src/Envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Envelope.h -------------------------------------------------------------------------------- /src/EssEff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/EssEff.cpp -------------------------------------------------------------------------------- /src/Euclidian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Euclidian.cpp -------------------------------------------------------------------------------- /src/FFTuner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/FFTuner.cpp -------------------------------------------------------------------------------- /src/FM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/FM.cpp -------------------------------------------------------------------------------- /src/FM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/FM.h -------------------------------------------------------------------------------- /src/FMVoices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/FMVoices.cpp -------------------------------------------------------------------------------- /src/FMVoices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/FMVoices.h -------------------------------------------------------------------------------- /src/FileLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/FileLoop.cpp -------------------------------------------------------------------------------- /src/FileLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/FileLoop.h -------------------------------------------------------------------------------- /src/FileRead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/FileRead.cpp -------------------------------------------------------------------------------- /src/FileRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/FileRead.h -------------------------------------------------------------------------------- /src/FileWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/FileWrite.cpp -------------------------------------------------------------------------------- /src/FileWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/FileWrite.h -------------------------------------------------------------------------------- /src/FileWvIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/FileWvIn.cpp -------------------------------------------------------------------------------- /src/FileWvIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/FileWvIn.h -------------------------------------------------------------------------------- /src/FileWvOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/FileWvOut.cpp -------------------------------------------------------------------------------- /src/FileWvOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/FileWvOut.h -------------------------------------------------------------------------------- /src/Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Filter.cpp -------------------------------------------------------------------------------- /src/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Filter.h -------------------------------------------------------------------------------- /src/FilterDelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/FilterDelay.cpp -------------------------------------------------------------------------------- /src/Filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Filters.cpp -------------------------------------------------------------------------------- /src/Fir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Fir.cpp -------------------------------------------------------------------------------- /src/Fir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Fir.h -------------------------------------------------------------------------------- /src/Floats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Floats.cpp -------------------------------------------------------------------------------- /src/Flute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Flute.cpp -------------------------------------------------------------------------------- /src/Flute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Flute.h -------------------------------------------------------------------------------- /src/FormSwep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/FormSwep.cpp -------------------------------------------------------------------------------- /src/FormSwep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/FormSwep.h -------------------------------------------------------------------------------- /src/FreeVerb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/FreeVerb.cpp -------------------------------------------------------------------------------- /src/FreeVerb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/FreeVerb.h -------------------------------------------------------------------------------- /src/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Function.h -------------------------------------------------------------------------------- /src/Gaussian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Gaussian.cpp -------------------------------------------------------------------------------- /src/Generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Generator.h -------------------------------------------------------------------------------- /src/Glides.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Glides.cpp -------------------------------------------------------------------------------- /src/GlutenFree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/GlutenFree.cpp -------------------------------------------------------------------------------- /src/Granulate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Granulate.cpp -------------------------------------------------------------------------------- /src/Granulate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Granulate.h -------------------------------------------------------------------------------- /src/GravityGlide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/GravityGlide.cpp -------------------------------------------------------------------------------- /src/Guitar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Guitar.cpp -------------------------------------------------------------------------------- /src/Guitar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Guitar.h -------------------------------------------------------------------------------- /src/GuitarNeck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/GuitarNeck.cpp -------------------------------------------------------------------------------- /src/HevyMetl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/HevyMetl.cpp -------------------------------------------------------------------------------- /src/HevyMetl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/HevyMetl.h -------------------------------------------------------------------------------- /src/Iir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Iir.cpp -------------------------------------------------------------------------------- /src/Iir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Iir.h -------------------------------------------------------------------------------- /src/Instrmnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Instrmnt.h -------------------------------------------------------------------------------- /src/Instro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Instro.cpp -------------------------------------------------------------------------------- /src/Integers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Integers.cpp -------------------------------------------------------------------------------- /src/JCRev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/JCRev.cpp -------------------------------------------------------------------------------- /src/JCRev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/JCRev.h -------------------------------------------------------------------------------- /src/JetTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/JetTable.h -------------------------------------------------------------------------------- /src/KTF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/KTF.cpp -------------------------------------------------------------------------------- /src/LRMixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/LRMixer.cpp -------------------------------------------------------------------------------- /src/LeftHandRightHand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/LeftHandRightHand -------------------------------------------------------------------------------- /src/LeftHandRightHand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/LeftHandRightHand.cpp -------------------------------------------------------------------------------- /src/LentPitShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/LentPitShift.cpp -------------------------------------------------------------------------------- /src/LentPitShift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/LentPitShift.h -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/Mandolin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Mandolin.cpp -------------------------------------------------------------------------------- /src/Mandolin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Mandolin.h -------------------------------------------------------------------------------- /src/MegaDivider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/MegaDivider.cpp -------------------------------------------------------------------------------- /src/Mesh2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Mesh2D.cpp -------------------------------------------------------------------------------- /src/Mesh2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Mesh2D.h -------------------------------------------------------------------------------- /src/Messager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Messager.cpp -------------------------------------------------------------------------------- /src/Messager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Messager.h -------------------------------------------------------------------------------- /src/MetaKnob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/MetaKnob.cpp -------------------------------------------------------------------------------- /src/MidiFileIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/MidiFileIn.cpp -------------------------------------------------------------------------------- /src/MidiFileIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/MidiFileIn.h -------------------------------------------------------------------------------- /src/Modal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Modal.cpp -------------------------------------------------------------------------------- /src/Modal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Modal.h -------------------------------------------------------------------------------- /src/ModalBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/ModalBar.cpp -------------------------------------------------------------------------------- /src/ModalBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/ModalBar.h -------------------------------------------------------------------------------- /src/Modulate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Modulate.cpp -------------------------------------------------------------------------------- /src/Modulate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Modulate.h -------------------------------------------------------------------------------- /src/Mono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Mono.cpp -------------------------------------------------------------------------------- /src/Moog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Moog.cpp -------------------------------------------------------------------------------- /src/Moog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Moog.h -------------------------------------------------------------------------------- /src/MutateSeq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/MutateSeq.cpp -------------------------------------------------------------------------------- /src/NRev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/NRev.cpp -------------------------------------------------------------------------------- /src/NRev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/NRev.h -------------------------------------------------------------------------------- /src/Noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Noise.cpp -------------------------------------------------------------------------------- /src/Noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Noise.h -------------------------------------------------------------------------------- /src/Notch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Notch.cpp -------------------------------------------------------------------------------- /src/Notes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Notes.cpp -------------------------------------------------------------------------------- /src/Octaves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Octaves.cpp -------------------------------------------------------------------------------- /src/Octo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Octo.cpp -------------------------------------------------------------------------------- /src/OnePole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/OnePole.cpp -------------------------------------------------------------------------------- /src/OnePole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/OnePole.h -------------------------------------------------------------------------------- /src/OneZero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/OneZero.cpp -------------------------------------------------------------------------------- /src/OneZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/OneZero.h -------------------------------------------------------------------------------- /src/Oscillator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Oscillator.cpp -------------------------------------------------------------------------------- /src/Oscillator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Oscillator.hpp -------------------------------------------------------------------------------- /src/PLAYER.derp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/PLAYER.derp -------------------------------------------------------------------------------- /src/PRCRev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/PRCRev.cpp -------------------------------------------------------------------------------- /src/PRCRev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/PRCRev.h -------------------------------------------------------------------------------- /src/Panner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Panner.cpp -------------------------------------------------------------------------------- /src/Panners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Panners.cpp -------------------------------------------------------------------------------- /src/PercFlut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/PercFlut.cpp -------------------------------------------------------------------------------- /src/PercFlut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/PercFlut.h -------------------------------------------------------------------------------- /src/Phonemes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Phonemes.cpp -------------------------------------------------------------------------------- /src/Phonemes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Phonemes.h -------------------------------------------------------------------------------- /src/PingPong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/PingPong.cpp -------------------------------------------------------------------------------- /src/PitShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/PitShift.cpp -------------------------------------------------------------------------------- /src/PitShift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/PitShift.h -------------------------------------------------------------------------------- /src/PlayableChord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/PlayableChord.cpp -------------------------------------------------------------------------------- /src/Pluck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Pluck.cpp -------------------------------------------------------------------------------- /src/Plucked.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Plucked.cpp -------------------------------------------------------------------------------- /src/Plucked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Plucked.h -------------------------------------------------------------------------------- /src/PoleZero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/PoleZero.cpp -------------------------------------------------------------------------------- /src/PoleZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/PoleZero.h -------------------------------------------------------------------------------- /src/PolySidechain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/PolySidechain.cpp -------------------------------------------------------------------------------- /src/RJChorus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/RJChorus.cpp -------------------------------------------------------------------------------- /src/RJModules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/RJModules.cpp -------------------------------------------------------------------------------- /src/RJModules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/RJModules.hpp -------------------------------------------------------------------------------- /src/RJNoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/RJNoise.cpp -------------------------------------------------------------------------------- /src/RandomFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/RandomFilter.cpp -------------------------------------------------------------------------------- /src/Randoms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Randoms.cpp -------------------------------------------------------------------------------- /src/Range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Range.cpp -------------------------------------------------------------------------------- /src/RangeLFO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/RangeLFO.cpp -------------------------------------------------------------------------------- /src/Recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Recorder.cpp -------------------------------------------------------------------------------- /src/Recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Recorder.h -------------------------------------------------------------------------------- /src/ReedTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/ReedTable.h -------------------------------------------------------------------------------- /src/ReplayKnob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/ReplayKnob.cpp -------------------------------------------------------------------------------- /src/Resonate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Resonate.cpp -------------------------------------------------------------------------------- /src/Resonate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Resonate.h -------------------------------------------------------------------------------- /src/Rhodey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Rhodey.cpp -------------------------------------------------------------------------------- /src/Rhodey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Rhodey.h -------------------------------------------------------------------------------- /src/Riser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Riser.cpp -------------------------------------------------------------------------------- /src/RtAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/RtAudio.cpp -------------------------------------------------------------------------------- /src/RtAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/RtAudio.h -------------------------------------------------------------------------------- /src/RtMidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/RtMidi.cpp -------------------------------------------------------------------------------- /src/RtMidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/RtMidi.h -------------------------------------------------------------------------------- /src/SKINImsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/SKINImsg.h -------------------------------------------------------------------------------- /src/SKINItbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/SKINItbl.h -------------------------------------------------------------------------------- /src/Sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Sampler.cpp -------------------------------------------------------------------------------- /src/Sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Sampler.h -------------------------------------------------------------------------------- /src/Saxofony.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Saxofony.cpp -------------------------------------------------------------------------------- /src/Saxofony.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Saxofony.h -------------------------------------------------------------------------------- /src/Sequential.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Sequential.cpp -------------------------------------------------------------------------------- /src/Shakers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Shakers.cpp -------------------------------------------------------------------------------- /src/Shakers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Shakers.h -------------------------------------------------------------------------------- /src/Sidechain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Sidechain.cpp -------------------------------------------------------------------------------- /src/Simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Simple.cpp -------------------------------------------------------------------------------- /src/Simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Simple.h -------------------------------------------------------------------------------- /src/SineWave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/SineWave.cpp -------------------------------------------------------------------------------- /src/SineWave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/SineWave.h -------------------------------------------------------------------------------- /src/SingWave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/SingWave.cpp -------------------------------------------------------------------------------- /src/SingWave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/SingWave.h -------------------------------------------------------------------------------- /src/Sitar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Sitar.cpp -------------------------------------------------------------------------------- /src/Sitar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Sitar.h -------------------------------------------------------------------------------- /src/Skini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Skini.cpp -------------------------------------------------------------------------------- /src/Skini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Skini.h -------------------------------------------------------------------------------- /src/Slapback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Slapback.cpp -------------------------------------------------------------------------------- /src/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Socket.h -------------------------------------------------------------------------------- /src/Soundpipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Soundpipe.cpp -------------------------------------------------------------------------------- /src/Sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Sphere.cpp -------------------------------------------------------------------------------- /src/Sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Sphere.h -------------------------------------------------------------------------------- /src/Splitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Splitter.cpp -------------------------------------------------------------------------------- /src/Splitters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Splitters.cpp -------------------------------------------------------------------------------- /src/StifKarp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/StifKarp.cpp -------------------------------------------------------------------------------- /src/StifKarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/StifKarp.h -------------------------------------------------------------------------------- /src/Stk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Stk.cpp -------------------------------------------------------------------------------- /src/Stk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Stk.h -------------------------------------------------------------------------------- /src/Stutter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Stutter.cpp -------------------------------------------------------------------------------- /src/SubOsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/SubOsc.cpp -------------------------------------------------------------------------------- /src/Succulent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Succulent.cpp -------------------------------------------------------------------------------- /src/Supersaw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Supersaw.cpp -------------------------------------------------------------------------------- /src/TapDelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/TapDelay.cpp -------------------------------------------------------------------------------- /src/TapDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/TapDelay.h -------------------------------------------------------------------------------- /src/TriggerSwitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/TriggerSwitch.cpp -------------------------------------------------------------------------------- /src/TubeBell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/TubeBell.cpp -------------------------------------------------------------------------------- /src/TubeBell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/TubeBell.h -------------------------------------------------------------------------------- /src/Twang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Twang.cpp -------------------------------------------------------------------------------- /src/Twang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Twang.h -------------------------------------------------------------------------------- /src/TwinLFO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/TwinLFO.cpp -------------------------------------------------------------------------------- /src/TwoPole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/TwoPole.cpp -------------------------------------------------------------------------------- /src/TwoPole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/TwoPole.h -------------------------------------------------------------------------------- /src/TwoZero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/TwoZero.cpp -------------------------------------------------------------------------------- /src/TwoZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/TwoZero.h -------------------------------------------------------------------------------- /src/UI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/UI.cpp -------------------------------------------------------------------------------- /src/UI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/UI.hpp -------------------------------------------------------------------------------- /src/VAStateVariableFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/VAStateVariableFilter.cpp -------------------------------------------------------------------------------- /src/VAStateVariableFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/VAStateVariableFilter.h -------------------------------------------------------------------------------- /src/Vector3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Vector3D.h -------------------------------------------------------------------------------- /src/VoicForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/VoicForm.cpp -------------------------------------------------------------------------------- /src/VoicForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/VoicForm.h -------------------------------------------------------------------------------- /src/Voicer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Voicer.cpp -------------------------------------------------------------------------------- /src/Voicer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Voicer.h -------------------------------------------------------------------------------- /src/Volumes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Volumes.cpp -------------------------------------------------------------------------------- /src/Whistle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Whistle.cpp -------------------------------------------------------------------------------- /src/Whistle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Whistle.h -------------------------------------------------------------------------------- /src/Widener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Widener.cpp -------------------------------------------------------------------------------- /src/Wurley.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Wurley.cpp -------------------------------------------------------------------------------- /src/Wurley.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/Wurley.h -------------------------------------------------------------------------------- /src/WvIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/WvIn.h -------------------------------------------------------------------------------- /src/WvOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/WvOut.h -------------------------------------------------------------------------------- /src/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/common.cpp -------------------------------------------------------------------------------- /src/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/common.hpp -------------------------------------------------------------------------------- /src/dr_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/dr_wav.h -------------------------------------------------------------------------------- /src/include/FunctionDiscoveryKeys_devpkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/include/FunctionDiscoveryKeys_devpkey.h -------------------------------------------------------------------------------- /src/include/asio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/include/asio.cpp -------------------------------------------------------------------------------- /src/include/asio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/include/asio.h -------------------------------------------------------------------------------- /src/include/asiodrivers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/include/asiodrivers.cpp -------------------------------------------------------------------------------- /src/include/asiodrivers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/include/asiodrivers.h -------------------------------------------------------------------------------- /src/include/asiodrvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/include/asiodrvr.h -------------------------------------------------------------------------------- /src/include/asiolist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/include/asiolist.cpp -------------------------------------------------------------------------------- /src/include/asiolist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/include/asiolist.h -------------------------------------------------------------------------------- /src/include/asiosys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/include/asiosys.h -------------------------------------------------------------------------------- /src/include/dsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/include/dsound.h -------------------------------------------------------------------------------- /src/include/ginclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/include/ginclude.h -------------------------------------------------------------------------------- /src/include/iasiodrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/include/iasiodrv.h -------------------------------------------------------------------------------- /src/include/iasiothiscallresolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/include/iasiothiscallresolver.cpp -------------------------------------------------------------------------------- /src/include/iasiothiscallresolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/include/iasiothiscallresolver.h -------------------------------------------------------------------------------- /src/include/soundcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/include/soundcard.h -------------------------------------------------------------------------------- /src/libfft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/libfft.c -------------------------------------------------------------------------------- /src/libfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/libfft.h -------------------------------------------------------------------------------- /src/tinydir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/tinydir.h -------------------------------------------------------------------------------- /src/tsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/tsf.h -------------------------------------------------------------------------------- /src/tuner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/tuner.c -------------------------------------------------------------------------------- /src/uQuant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miserlou/RJModules/HEAD/src/uQuant.cpp -------------------------------------------------------------------------------- /src/vcf.cpp: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------