├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── apps ├── analyzer │ ├── build │ │ ├── VST_Linux │ │ │ ├── Makefile │ │ │ ├── analyzervst.make │ │ │ └── premake.lua │ │ └── linux │ │ │ ├── Makefile │ │ │ ├── analyzer.make │ │ │ └── premake.lua │ ├── readme.txt │ └── src │ │ ├── Dsp │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── Makefile │ │ ├── analyser.cc │ │ ├── analyser.h │ │ ├── audio.cc │ │ ├── audio.h │ │ ├── gobjects.cc │ │ ├── gobjects.h │ │ ├── itypes.h │ │ ├── japa.cc │ │ ├── mainwin.cc │ │ ├── mainwin.h │ │ ├── messages.h │ │ ├── prbsgen.h │ │ ├── rngen.cc │ │ ├── rngen.h │ │ ├── styles.cc │ │ └── styles.h │ │ ├── JucePluginCharacteristics.h │ │ ├── Main.cpp │ │ ├── StandardConfig.h │ │ ├── StandardHeader.h │ │ ├── StandardLibrary.cpp │ │ ├── XAnalyzerComponent.cpp │ │ ├── XAnalyzerComponent.h │ │ ├── XAnalyzerPlugin.cpp │ │ └── XAnalyzerPlugin.h ├── bitmangler │ ├── build │ │ ├── VST_Linux │ │ │ ├── Makefile │ │ │ ├── bitmanglervst.make │ │ │ └── premake.lua │ │ └── linux │ │ │ ├── Makefile │ │ │ ├── bitmangler.make │ │ │ └── premake.lua │ └── src │ │ ├── JucePluginCharacteristics.h │ │ ├── Main.cpp │ │ ├── Resources │ │ ├── bitMangler0.PNG │ │ ├── lcd.bin │ │ ├── metal2.png │ │ ├── power_off.png │ │ └── power_on.png │ │ ├── StandardConfig.h │ │ ├── StandardHeader.h │ │ ├── StandardLibrary.cpp │ │ ├── bitFloat.cpp │ │ ├── bitFloat.h │ │ ├── bitMangler.cpp │ │ ├── bitMangler.h │ │ ├── bitManglerEditor.cpp │ │ └── bitManglerEditor.h ├── capsaicin │ ├── build │ │ ├── VST_Linux │ │ │ ├── Makefile │ │ │ ├── capsaicinvst.make │ │ │ └── premake.lua │ │ ├── linux │ │ │ ├── Makefile │ │ │ ├── capsaicin.make │ │ │ └── premake.lua │ │ └── macosx │ │ │ ├── capsaicin.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── capsaicinAU.exp │ ├── parameters.txt │ ├── readme.txt │ └── src │ │ ├── Components │ │ ├── Resources │ │ │ ├── capsaicin.png │ │ │ ├── capsaicin_title.png │ │ │ └── capsaicin_title.svg │ │ ├── Utils │ │ │ ├── AudioScope.h │ │ │ ├── DynamicParameterSlider.h │ │ │ ├── EQGraph.h │ │ │ ├── EnvelopeEditor.h │ │ │ ├── OscillatorPartials.h │ │ │ ├── OscillatorScope.h │ │ │ └── OscillatorSpectrum.h │ │ ├── XSynthAbout.cpp │ │ ├── XSynthAbout.h │ │ ├── XSynthBankSelect.cpp │ │ ├── XSynthBankSelect.h │ │ ├── XSynthMixer.cpp │ │ ├── XSynthMixer.h │ │ ├── XSynthMixerStrip.cpp │ │ ├── XSynthMixerStrip.h │ │ ├── XSynthOptions.cpp │ │ ├── XSynthOptions.h │ │ ├── XSynthPatch.cpp │ │ ├── XSynthPatch.h │ │ ├── XSynthTabPanel.cpp │ │ ├── XSynthTabPanel.h │ │ ├── XSynthTitleBar.cpp │ │ └── XSynthTitleBar.h │ │ ├── DSP │ │ ├── AnalogFilter.cpp │ │ ├── AnalogFilter.h │ │ ├── BaseFilter.h │ │ ├── Filter.cpp │ │ ├── Filter.h │ │ ├── FormantFilter.cpp │ │ ├── FormantFilter.h │ │ ├── SVFilter.cpp │ │ └── SVFilter.h │ │ ├── Effects │ │ ├── Alienwah.cpp │ │ ├── Alienwah.h │ │ ├── Chorus.cpp │ │ ├── Chorus.h │ │ ├── Distorsion.cpp │ │ ├── Distorsion.h │ │ ├── DynamicFilter.cpp │ │ ├── DynamicFilter.h │ │ ├── EQ.cpp │ │ ├── EQ.h │ │ ├── Echo.cpp │ │ ├── Echo.h │ │ ├── Effect.cpp │ │ ├── Effect.h │ │ ├── EffectLFO.cpp │ │ ├── EffectLFO.h │ │ ├── EffectMgr.cpp │ │ ├── EffectMgr.h │ │ ├── EffectUtility.h │ │ ├── GReverb.cpp │ │ ├── GReverb.h │ │ ├── Phaser.cpp │ │ ├── Phaser.h │ │ ├── Reverb.cpp │ │ ├── Reverb.h │ │ ├── SC4Compressor.cpp │ │ └── SC4Compressor.h │ │ ├── JucePluginCharacteristics.h │ │ ├── Main.cpp │ │ ├── Misc │ │ ├── Bank.cpp │ │ ├── Bank.h │ │ ├── Config.cpp │ │ ├── Config.h │ │ ├── Master.cpp │ │ ├── Master.h │ │ ├── Part.cpp │ │ ├── Part.h │ │ ├── Util.cpp │ │ └── Util.h │ │ ├── Params │ │ ├── ADnoteParameters.cpp │ │ ├── ADnoteParameters.h │ │ ├── Controller.cpp │ │ ├── Controller.h │ │ ├── EnvelopeParams.cpp │ │ ├── EnvelopeParams.h │ │ ├── FilterParams.cpp │ │ ├── FilterParams.h │ │ ├── LFOParams.cpp │ │ ├── LFOParams.h │ │ ├── Presets.cpp │ │ ├── Presets.h │ │ ├── PresetsStore.cpp │ │ └── PresetsStore.h │ │ ├── StandardConfig.h │ │ ├── StandardHeader.h │ │ ├── StandardLibrary.cpp │ │ ├── Synth │ │ ├── ADnote.cpp │ │ ├── ADnote.h │ │ ├── Envelope.cpp │ │ ├── Envelope.h │ │ ├── LFO.cpp │ │ ├── LFO.h │ │ ├── OscilGen.cpp │ │ ├── OscilGen.h │ │ ├── Resonance.cpp │ │ └── Resonance.h │ │ ├── XSynthEditor.cpp │ │ ├── XSynthEditor.h │ │ ├── XSynthParameters.cpp │ │ ├── XSynthParameters.h │ │ ├── XSynthPlugin.cpp │ │ ├── XSynthPlugin.h │ │ └── globals.h ├── drumsynth │ ├── build │ │ ├── VST_Linux │ │ │ ├── Makefile │ │ │ ├── drumsynthvst.make │ │ │ └── premake.lua │ │ ├── linux │ │ │ ├── Makefile │ │ │ ├── drumsynth.make │ │ │ └── premake.lua │ │ ├── macosx │ │ │ ├── drumsynth.exp │ │ │ └── drumsynth.xcodeproj │ │ │ │ └── project.pbxproj │ │ └── win32 │ │ │ ├── JuceDemoPlugin.sln │ │ │ └── JuceDemoPlugin.vcproj │ ├── library │ │ ├── Acoustic │ │ │ ├── Brush1.ds │ │ │ ├── Brush2.ds │ │ │ ├── JazzKick.ds │ │ │ ├── JazzSnr H.ds │ │ │ ├── JazzSnr.ds │ │ │ ├── K_Muffle.ds │ │ │ ├── Kick.ds │ │ │ ├── Plain Kick.ds │ │ │ ├── Ride.ds │ │ │ ├── Ride2.ds │ │ │ ├── Ride3.ds │ │ │ └── Snare.ds │ │ ├── Effects │ │ │ ├── Bubble.ds │ │ │ ├── Cicada.ds │ │ │ ├── Glass.ds │ │ │ ├── Glass_rn.ds │ │ │ ├── Gunshot.ds │ │ │ ├── Hammer.ds │ │ │ ├── Laser.ds │ │ │ ├── Reverse.ds │ │ │ ├── Ringing.ds │ │ │ ├── Scissors.ds │ │ │ ├── Sonar.ds │ │ │ ├── dialing.ds │ │ │ ├── hammer2.ds │ │ │ ├── impulses.ds │ │ │ ├── loop.ds │ │ │ └── thunder.ds │ │ ├── Electro │ │ │ ├── Boom.ds │ │ │ ├── H_closed.ds │ │ │ ├── H_open.ds │ │ │ ├── Hi-q.ds │ │ │ ├── Hi-q_2.ds │ │ │ ├── K_8bit.ds │ │ │ ├── K_Linn.ds │ │ │ ├── K_reverb.ds │ │ │ ├── S_8bit.ds │ │ │ ├── S_Linn.ds │ │ │ ├── S_reverb.ds │ │ │ ├── Syntom_1.ds │ │ │ ├── Syntom_2.ds │ │ │ └── s_eq.ds │ │ ├── Farfisa │ │ │ ├── Fisa Bongo.ds │ │ │ ├── Fisa Cym.ds │ │ │ ├── Fisa Hat.ds │ │ │ ├── Fisa K_H.ds │ │ │ ├── Fisa K_K.ds │ │ │ ├── Fisa Kick.ds │ │ │ ├── Fisa S_B.ds │ │ │ ├── Fisa Snare.ds │ │ │ └── Fisa Tom.ds │ │ ├── Ferraro │ │ │ ├── curb meat bass.ds │ │ │ ├── eel bass.ds │ │ │ ├── feed this.ds │ │ │ ├── gerbil snare.ds │ │ │ ├── grumpy buzzard.ds │ │ │ ├── jaguar hats.ds │ │ │ ├── radio hats.ds │ │ │ └── worm bass.ds │ │ ├── Latin │ │ │ ├── Bongo_h.ds │ │ │ ├── Bongo_m2.ds │ │ │ ├── Bongo_mu.ds │ │ │ ├── Clave_we.ds │ │ │ ├── Gamelan.ds │ │ │ ├── Maracas.ds │ │ │ ├── Shaker_1.ds │ │ │ ├── Shaker_2.ds │ │ │ ├── Tamb_hit.ds │ │ │ ├── Tamb_shk.ds │ │ │ ├── ThumbPno.ds │ │ │ ├── Triangle.ds │ │ │ ├── bongo_l.ds │ │ │ ├── guiro.ds │ │ │ ├── one_clap.ds │ │ │ └── taiko.ds │ │ ├── Linn │ │ │ ├── linn_cab.ds │ │ │ ├── linn_cga1.ds │ │ │ ├── linn_cga2.ds │ │ │ ├── linn_cga3.ds │ │ │ ├── linn_cgam.ds │ │ │ ├── linn_clp.ds │ │ │ ├── linn_cow.ds │ │ │ ├── linn_kik.ds │ │ │ ├── linn_snr.ds │ │ │ ├── linn_stk.ds │ │ │ ├── linn_tamb.ds │ │ │ ├── linn_tom1.ds │ │ │ ├── linn_tom2.ds │ │ │ ├── linn_tom3.ds │ │ │ ├── linn_tom4.ds │ │ │ └── linn_tom5.ds │ │ ├── bank-tr909.bds │ │ ├── cr78 │ │ │ ├── Bongo_h.ds │ │ │ ├── Bongo_l.ds │ │ │ ├── Clave.ds │ │ │ ├── Conga.ds │ │ │ ├── Cymbal.ds │ │ │ ├── Hihat.ds │ │ │ ├── Kick.ds │ │ │ ├── Maracas.ds │ │ │ ├── Rim.ds │ │ │ ├── Snare.ds │ │ │ └── Tamb.ds │ │ ├── cr8000 │ │ │ ├── Clap.ds │ │ │ ├── Clave.ds │ │ │ ├── Conga_l.ds │ │ │ ├── Conga_m.ds │ │ │ ├── Cowbell.ds │ │ │ ├── Cymbal.ds │ │ │ ├── Hat_c.ds │ │ │ ├── Hat_o.ds │ │ │ ├── Kick.ds │ │ │ ├── Rim.ds │ │ │ └── Snare.ds │ │ ├── instrmnt │ │ │ ├── E Piano.ds │ │ │ ├── FM Bass.ds │ │ │ ├── Moog bass.ds │ │ │ ├── Oboe.ds │ │ │ ├── Temple Bell.ds │ │ │ ├── flute.ds │ │ │ ├── mute bass.ds │ │ │ ├── pizzi.ds │ │ │ ├── soft piano.ds │ │ │ ├── square lead.ds │ │ │ ├── sweep.ds │ │ │ ├── techno stab.ds │ │ │ ├── tinkle.ds │ │ │ ├── trumpet.ds │ │ │ ├── upright bass.ds │ │ │ ├── violin.ds │ │ │ └── whistler.ds │ │ ├── magnetboy │ │ │ ├── Eye Eye.ds │ │ │ ├── Fp1.ds │ │ │ ├── Mist1.ds │ │ │ ├── Mist2.ds │ │ │ ├── Randion1.ds │ │ │ ├── Squelb.ds │ │ │ ├── Throaties1.ds │ │ │ ├── Tone float1.ds │ │ │ ├── Tone1.ds │ │ │ ├── Tone10.ds │ │ │ ├── Tone11.ds │ │ │ ├── Tone12.ds │ │ │ ├── Tone14.ds │ │ │ ├── Tone15.ds │ │ │ ├── Tone16.ds │ │ │ ├── Tone17.ds │ │ │ ├── Tone18.ds │ │ │ ├── Tone19.ds │ │ │ ├── Tone2.ds │ │ │ ├── Tone20.ds │ │ │ ├── Tone3.ds │ │ │ ├── Tone4.ds │ │ │ ├── Tone5.ds │ │ │ ├── Tone6.ds │ │ │ ├── Tone7.ds │ │ │ ├── Tone8.ds │ │ │ └── Tone9.ds │ │ ├── misc bass │ │ │ ├── a day in the noise.ds │ │ │ ├── bumble bass.ds │ │ │ ├── depth bass drum.ds │ │ │ ├── dirty a.ds │ │ │ ├── filter idea bd.ds │ │ │ ├── jarre bass drum.ds │ │ │ ├── jungle laser.ds │ │ │ ├── low end hum.ds │ │ │ ├── melodictone.ds │ │ │ ├── metal bass.ds │ │ │ ├── more bass 2.ds │ │ │ ├── more bass.ds │ │ │ ├── rubber.ds │ │ │ ├── smooth bass.ds │ │ │ ├── solid.ds │ │ │ ├── synthbass.ds │ │ │ ├── the funk.ds │ │ │ └── warm bass.ds │ │ ├── misc claps │ │ │ ├── big beat clap.ds │ │ │ ├── bright clap.ds │ │ │ ├── clap layer.ds │ │ │ ├── clap.ds │ │ │ ├── clap2.ds │ │ │ ├── classic clap.ds │ │ │ ├── electro clap.ds │ │ │ ├── filter clappy.ds │ │ │ ├── pitch clap 2.ds │ │ │ ├── pitch clap.ds │ │ │ ├── shutter clap.ds │ │ │ └── u don't kno.ds │ │ ├── misc electro │ │ │ ├── 'lectro spliff.ds │ │ │ ├── a round thing.ds │ │ │ ├── applied engineering.ds │ │ │ ├── atmosphere of space.ds │ │ │ ├── bottle bill fx.ds │ │ │ ├── casio poppin.ds │ │ │ ├── category.ds │ │ │ ├── cheap fx.ds │ │ │ ├── chrip q.ds │ │ │ ├── clean rock bd.ds │ │ │ ├── cold shot.ds │ │ │ ├── confusion.ds │ │ │ ├── cymbal madness.ds │ │ │ ├── depth fx.ds │ │ │ ├── dialed.ds │ │ │ ├── doom bump.ds │ │ │ ├── electric triangle.ds │ │ │ ├── electro perc long.ds │ │ │ ├── electro perc short.ds │ │ │ ├── electro rim 2.ds │ │ │ ├── electro rim 3.ds │ │ │ ├── electro rim.ds │ │ │ ├── electro squeek.ds │ │ │ ├── fuzzy q bd.ds │ │ │ ├── g question.ds │ │ │ ├── general obscurity.ds │ │ │ ├── hard bork.ds │ │ │ ├── hello q.ds │ │ │ ├── just the tweet.ds │ │ │ ├── lo-fi house c.ds │ │ │ ├── lo-fi metal.ds │ │ │ ├── lo-finess.ds │ │ │ ├── long q 1.ds │ │ │ ├── long q 2.ds │ │ │ ├── long q 3.ds │ │ │ ├── long quack.ds │ │ │ ├── low bit tom.ds │ │ │ ├── metal noise shot.ds │ │ │ ├── open reso.ds │ │ │ ├── paging the jetsons.ds │ │ │ ├── pan.ds │ │ │ ├── pleasant combo.ds │ │ │ ├── q-ziq for the masses.ds │ │ │ ├── rich bd.ds │ │ │ ├── ring.ds │ │ │ ├── ringing sn.ds │ │ │ ├── rockin electro bass drum.ds │ │ │ ├── shocking kiss.ds │ │ │ ├── siren sing.ds │ │ │ ├── slide tom.ds │ │ │ ├── space dynamic.ds │ │ │ ├── spaceness.ds │ │ │ ├── startling one.ds │ │ │ ├── tone percussion.ds │ │ │ ├── tweet.ds │ │ │ ├── wee dog.ds │ │ │ ├── what to do at 220.ds │ │ │ ├── who hears all sound.ds │ │ │ ├── why hit.ds │ │ │ ├── yr tv will be next.ds │ │ │ └── zappy bells.ds │ │ ├── misc fx │ │ │ ├── 2 bit click.ds │ │ │ ├── 2-bit zone drone.ds │ │ │ ├── a blast.ds │ │ │ ├── across the universe.ds │ │ │ ├── alarm 3.ds │ │ │ ├── alarming buzz 2.ds │ │ │ ├── alarming buzz.ds │ │ │ ├── alien curiousity.ds │ │ │ ├── ambient backgroud.ds │ │ │ ├── click.ds │ │ │ ├── coo.ds │ │ │ ├── detonate.ds │ │ │ ├── dirty transform 2.ds │ │ │ ├── dirty transform.ds │ │ │ ├── distorion oscilator.ds │ │ │ ├── electric intro to a.ds │ │ │ ├── electric waves out my window.ds │ │ │ ├── elekperc1.ds │ │ │ ├── elekperc2.ds │ │ │ ├── end of broadcast day.ds │ │ │ ├── entre.ds │ │ │ ├── experiment 1.ds │ │ │ ├── experiment 2 - turn off the tv.ds │ │ │ ├── experiment 3 - the transform.ds │ │ │ ├── experiment 4 - clean.ds │ │ │ ├── f#m7 space signal.ds │ │ │ ├── feedback.ds │ │ │ ├── flashy wind.ds │ │ │ ├── flipper.ds │ │ │ ├── formant techno.ds │ │ │ ├── frequency revolution.ds │ │ │ ├── fried food for dinner.ds │ │ │ ├── funky stab.ds │ │ │ ├── future.ds │ │ │ ├── gmaj lo-fi chord 2.ds │ │ │ ├── gmaj lo-fi chord.ds │ │ │ ├── halt variety.ds │ │ │ ├── hip-hop stop 2.ds │ │ │ ├── hip-hop stop.ds │ │ │ ├── hollow.ds │ │ │ ├── howdy oil barrel.ds │ │ │ ├── jaggies.ds │ │ │ ├── laser gun & ricochet.ds │ │ │ ├── machine drone.ds │ │ │ ├── metal twist.ds │ │ │ ├── modular fm counterpoint.ds │ │ │ ├── modular.ds │ │ │ ├── multi-ping.ds │ │ │ ├── my atari memory.ds │ │ │ ├── new sweep.ds │ │ │ ├── noise filtering.ds │ │ │ ├── not trying too hard.ds │ │ │ ├── numb.ds │ │ │ ├── obligatory ufo liftoff 2.ds │ │ │ ├── obligatory ufo liftoff.ds │ │ │ ├── oom paa.ds │ │ │ ├── oom pulse.ds │ │ │ ├── owwww.ds │ │ │ ├── playing in water.ds │ │ │ ├── plot thickens 2.ds │ │ │ ├── punch flange 2.ds │ │ │ ├── punch flange.ds │ │ │ ├── q zone drone.ds │ │ │ ├── recption.ds │ │ │ ├── sci-fi door open.ds │ │ │ ├── sci-fi.ds │ │ │ ├── sickly wineglass.ds │ │ │ ├── sign off.ds │ │ │ ├── slow moving traffic.ds │ │ │ ├── synthetic dive crust.ds │ │ │ ├── synthetic dive.ds │ │ │ ├── teeth.ds │ │ │ ├── the plot thickens.ds │ │ │ ├── the tweek.ds │ │ │ ├── transportive.ds │ │ │ ├── ufo buzz 2.ds │ │ │ ├── ufo buzz.ds │ │ │ ├── what time is it.ds │ │ │ ├── wipeout.ds │ │ │ ├── wooo.ds │ │ │ ├── yeah hit dry.ds │ │ │ ├── yeah hit.ds │ │ │ └── zipper.ds │ │ ├── misc hats │ │ │ ├── amen ride.ds │ │ │ ├── band pass cymbal.ds │ │ │ ├── basic hh.ds │ │ │ ├── bright 808 hat 2.ds │ │ │ ├── bright 808 hat 3.ds │ │ │ ├── bright 808 hat.ds │ │ │ ├── bring me out.ds │ │ │ ├── clicky hat.ds │ │ │ ├── close ride.ds │ │ │ ├── default hi-hat.ds │ │ │ ├── drama hat 2.ds │ │ │ ├── drama hat.ds │ │ │ ├── dusty simple hh.ds │ │ │ ├── dusty simple oh.ds │ │ │ ├── electro hh.ds │ │ │ ├── electrometallic hat.ds │ │ │ ├── errie ride.ds │ │ │ ├── fedora hat.ds │ │ │ ├── feelin' high hat 1.ds │ │ │ ├── feelin' high hat 2.ds │ │ │ ├── feelin' high hat 3.ds │ │ │ ├── feelin' open high hat.ds │ │ │ ├── flat cymbal.ds │ │ │ ├── get out.ds │ │ │ ├── hardhat 2.ds │ │ │ ├── hardhat.ds │ │ │ ├── hardly hh.ds │ │ │ ├── heavy electrihat.ds │ │ │ ├── hh.ds │ │ │ ├── hip overtone hat.ds │ │ │ ├── large open hh.ds │ │ │ ├── lighthat.ds │ │ │ ├── little hat.ds │ │ │ ├── live hat.ds │ │ │ ├── live sound hh.ds │ │ │ ├── live sound oh.ds │ │ │ ├── loaded hat.ds │ │ │ ├── loaded open hat.ds │ │ │ ├── oh so high hat.ds │ │ │ ├── oil hat.ds │ │ │ ├── pedal hh.ds │ │ │ ├── q ride 2.ds │ │ │ ├── q ride.ds │ │ │ ├── sandy ride.ds │ │ │ ├── scratchy hh.ds │ │ │ ├── shaker ride long.ds │ │ │ ├── shaker ride.ds │ │ │ ├── simple ride.ds │ │ │ ├── sleepy 1.ds │ │ │ ├── sleepy 2.ds │ │ │ ├── sleepy ride 2.ds │ │ │ ├── sleepy ride.ds │ │ │ ├── slick hat compressd open.ds │ │ │ ├── slick hat half open.ds │ │ │ ├── slick hat open.ds │ │ │ ├── slick hat.ds │ │ │ ├── slide hat.ds │ │ │ ├── softie lo-fi hat.ds │ │ │ ├── softie lo-fi open hat 2.ds │ │ │ ├── softie lo-fi open hat.ds │ │ │ ├── squeeze me open hat.ds │ │ │ ├── squeeze me hat.ds │ │ │ ├── stack hhh.ds │ │ │ ├── starry hh.ds │ │ │ ├── starry short oh.ds │ │ │ ├── static tone hat.ds │ │ │ ├── tarp hh.ds │ │ │ ├── the sting hat 2.ds │ │ │ ├── the sting hat.ds │ │ │ ├── the sting open hat.ds │ │ │ ├── threshold noise open.ds │ │ │ ├── threshold noise.ds │ │ │ └── touch me hat.ds │ │ ├── misc perc │ │ │ ├── ambient tom.ds │ │ │ ├── bell rim.ds │ │ │ ├── bell.ds │ │ │ ├── clav 2.ds │ │ │ ├── clav.ds │ │ │ ├── deep cowbell.ds │ │ │ ├── dist tom 2.ds │ │ │ ├── dist tom.ds │ │ │ ├── door knock.ds │ │ │ ├── electric clav.ds │ │ │ ├── feel me clinky.ds │ │ │ ├── fidelity faction tom.ds │ │ │ ├── funk box perc 1.ds │ │ │ ├── funk box perc 2.ds │ │ │ ├── funkay timbale.ds │ │ │ ├── give it to me.ds │ │ │ ├── hammond cowbell.ds │ │ │ ├── hollow wood 2.ds │ │ │ ├── hollow wood.ds │ │ │ ├── it's the simple things.ds │ │ │ ├── layered sleigh bell.ds │ │ │ ├── light tamb 1.ds │ │ │ ├── light tamb 2.ds │ │ │ ├── light tamb 3.ds │ │ │ ├── like a tabla 1.ds │ │ │ ├── like a tabla 2.ds │ │ │ ├── like a tabla 3.ds │ │ │ ├── limited shaker.ds │ │ │ ├── lo-fi tamb.ds │ │ │ ├── low key tom.ds │ │ │ ├── low ping.ds │ │ │ ├── mellow shake.ds │ │ │ ├── metallic node.ds │ │ │ ├── mild tamb.ds │ │ │ ├── ol' skool shake.ds │ │ │ ├── poppy.ds │ │ │ ├── q tom.ds │ │ │ ├── resonant knock.ds │ │ │ ├── ringmod rim 2.ds │ │ │ ├── ringmod rim.ds │ │ │ ├── shaaka 2.ds │ │ │ ├── shaaka.ds │ │ │ ├── short tom 1.ds │ │ │ ├── short tom 2.ds │ │ │ ├── short tom.ds │ │ │ ├── sickly cowbell.ds │ │ │ ├── slinky tamb.ds │ │ │ ├── super tom.ds │ │ │ ├── sweetness shaker.ds │ │ │ ├── timbale sound.ds │ │ │ ├── tom tone.ds │ │ │ ├── tom.ds │ │ │ ├── tommy.ds │ │ │ ├── tone tom.ds │ │ │ ├── torn tweeter.ds │ │ │ ├── tweety cowbell 2.ds │ │ │ ├── tweety cowbell.ds │ │ │ ├── type noise.ds │ │ │ ├── very high clav.ds │ │ │ ├── video game clip.ds │ │ │ ├── weird 1.ds │ │ │ └── wood and metal.ds │ │ ├── misc synth │ │ │ ├── average rock.ds │ │ │ ├── c maj chord.ds │ │ │ ├── casio piano c.ds │ │ │ ├── chorded perc.ds │ │ │ ├── consumer fm.ds │ │ │ ├── dark and sweet fm.ds │ │ │ ├── dist high c.ds │ │ │ ├── eno's lift.ds │ │ │ ├── eno's pad.ds │ │ │ ├── eno's ride.ds │ │ │ ├── flat square c.ds │ │ │ ├── fm c bass burst.ds │ │ │ ├── fur strings 2.ds │ │ │ ├── fur strings.ds │ │ │ ├── it's the music tom c.ds │ │ │ ├── layered bass synth c.ds │ │ │ ├── my red hot guitar.ds │ │ │ ├── raver organ.ds │ │ │ ├── strong c dub bass.ds │ │ │ ├── sync drift.ds │ │ │ ├── sync man.ds │ │ │ ├── that house chord cm.ds │ │ │ ├── vibrato pad.ds │ │ │ ├── who loves ya, baby.ds │ │ │ └── wowmelodictone.ds │ │ ├── misc │ │ │ ├── 'lectro hammer.ds │ │ │ ├── 'lectro square hammer.ds │ │ │ ├── 12-bit heavy hitter.ds │ │ │ ├── 909 hard snare.ds │ │ │ ├── AAH.ds │ │ │ ├── B1_B2.ds │ │ │ ├── Clap.ds │ │ │ ├── Distant Thunder.ds │ │ │ ├── N_low.ds │ │ │ ├── N_vlow.ds │ │ │ ├── RimShot.ds │ │ │ ├── Saber fight.ds │ │ │ ├── Simple-c.ds │ │ │ ├── Simple-r.ds │ │ │ ├── Simple-s.ds │ │ │ ├── Tone_dis.ds │ │ │ ├── Tone_sw2.ds │ │ │ ├── Tone_swp.ds │ │ │ ├── airbrush bd.ds │ │ │ ├── ambient noise snare.ds │ │ │ ├── amen bd.ds │ │ │ ├── amen sn 1.ds │ │ │ ├── and loud sn.ds │ │ │ ├── another 909 moment.ds │ │ │ ├── another example snare.ds │ │ │ ├── application bass drum.ds │ │ │ ├── b1_0.ds │ │ │ ├── b1_2.ds │ │ │ ├── b1_5.ds │ │ │ ├── b1_9.ds │ │ │ ├── basic 808 click hum.ds │ │ │ ├── battle hook sn.ds │ │ │ ├── bauble bd.ds │ │ │ ├── beat box bd.ds │ │ │ ├── beefy wack.ds │ │ │ ├── big 80's 2.ds │ │ │ ├── big 80's.ds │ │ │ ├── big sleeper snare.ds │ │ │ ├── blended snare.ds │ │ │ ├── bouncy809bd.ds │ │ │ ├── break kick.ds │ │ │ ├── breathing snare.ds │ │ │ ├── bright house sn.ds │ │ │ ├── buff hit.ds │ │ │ ├── buff sound.ds │ │ │ ├── bug into water.ds │ │ │ ├── bulge n yr woofer.ds │ │ │ ├── bumpin quickie.ds │ │ │ ├── calamity snare.ds │ │ │ ├── change the channel snare.ds │ │ │ ├── chow bd.ds │ │ │ ├── clappy snare.ds │ │ │ ├── clean low key kick.ds │ │ │ ├── clean soft 808.ds │ │ │ ├── clearly snare.ds │ │ │ ├── close mic sn.ds │ │ │ ├── compression does it 808.ds │ │ │ ├── crusty bump.ds │ │ │ ├── crusty snare.ds │ │ │ ├── cymbal.ds │ │ │ ├── decompression snare.ds │ │ │ ├── deep bauble bd.ds │ │ │ ├── deep tones.ds │ │ │ ├── difference snare.ds │ │ │ ├── different 909 snare.ds │ │ │ ├── dirty world bd.ds │ │ │ ├── dist sub kick 2.ds │ │ │ ├── dist sub kick.ds │ │ │ ├── electro dnb kick.ds │ │ │ ├── electro snare layer.ds │ │ │ ├── electronic rim.ds │ │ │ ├── end transmission.ds │ │ │ ├── every 909.ds │ │ │ ├── fatness.ds │ │ │ ├── fattie bd.ds │ │ │ ├── feel me!.ds │ │ │ ├── few people will use this snare.ds │ │ │ ├── flat tire.ds │ │ │ ├── fm.ds │ │ │ ├── fried food.ds │ │ │ ├── funky trashcan snare.ds │ │ │ ├── fuzzy sn.ds │ │ │ ├── gabbakick.ds │ │ │ ├── gimme a hard tone.ds │ │ │ ├── gimmie a tone.ds │ │ │ ├── hard electro brush sn.ds │ │ │ ├── hard electronic snare.ds │ │ │ ├── hard hittin.ds │ │ │ ├── hardcore a bd.ds │ │ │ ├── hardcore bd.ds │ │ │ ├── hardersnare.ds │ │ │ ├── heady mix sn.ds │ │ │ ├── heavy.ds │ │ │ ├── hed chunk snare.ds │ │ │ ├── hi pic.ds │ │ │ ├── hi-pass.ds │ │ │ ├── hip-hop fantasy kick.ds │ │ │ ├── hipster joint bd.ds │ │ │ ├── hit me wooden snare.ds │ │ │ ├── hitthosesubs.ds │ │ │ ├── hot morning bass drum.ds │ │ │ ├── hotsnare.ds │ │ │ ├── i luv u fat noise.ds │ │ │ ├── invisible 909 kick.ds │ │ │ ├── it's like that snare.ds │ │ │ ├── just the bass drum.ds │ │ │ ├── kneel and buzz.ds │ │ │ ├── large hall bd.ds │ │ │ ├── laughter and jellybeans snare.ds │ │ │ ├── light snare.ds │ │ │ ├── lo-fi bass drum.ds │ │ │ ├── lo-fi march.ds │ │ │ ├── lo-fi rim.ds │ │ │ ├── loudness sn.ds │ │ │ ├── lovely clean bd.ds │ │ │ ├── lower electro bd.ds │ │ │ ├── mack bd.ds │ │ │ ├── manipulate bd.ds │ │ │ ├── many frequencies.ds │ │ │ ├── mello bd.ds │ │ │ ├── mind ya heds.ds │ │ │ ├── missing snare 2.ds │ │ │ ├── missing snare.ds │ │ │ ├── more basic bd.ds │ │ │ ├── more snap.ds │ │ │ ├── muted snare.ds │ │ │ ├── n_hi.ds │ │ │ ├── n_mid.ds │ │ │ ├── neo808 2.ds │ │ │ ├── neo808.ds │ │ │ ├── noise calling kick.ds │ │ │ ├── noise clip.ds │ │ │ ├── noise.ds │ │ │ ├── nosie calling kick 2.ds │ │ │ ├── odd snare.ds │ │ │ ├── original tone snare.ds │ │ │ ├── ot_12.ds │ │ │ ├── ot_34.ds │ │ │ ├── ot_sine.ds │ │ │ ├── overdriver kick.ds │ │ │ ├── pleasure factory kick.ds │ │ │ ├── pop 1 off snare.ds │ │ │ ├── power out.ds │ │ │ ├── psychoacoutic bd.ds │ │ │ ├── punchy clean kick.ds │ │ │ ├── puppy kick.ds │ │ │ ├── q kick 2.ds │ │ │ ├── q'ey bass drum.ds │ │ │ ├── questoin kick.ds │ │ │ ├── r+b fantasy kick.ds │ │ │ ├── reverb please snare.ds │ │ │ ├── rimmy noise.ds │ │ │ ├── rimshot 1.ds │ │ │ ├── rimshot 2.ds │ │ │ ├── ring fray kick.ds │ │ │ ├── ring mod drone bd.ds │ │ │ ├── rm.ds │ │ │ ├── rubber '82.ds │ │ │ ├── rubbery deep house kick.ds │ │ │ ├── serious bd.ds │ │ │ ├── short 909.ds │ │ │ ├── simon's snare.ds │ │ │ ├── simple click bd.ds │ │ │ ├── simple-h.ds │ │ │ ├── simple-k.ds │ │ │ ├── skiwlz snare.ds │ │ │ ├── slepper n the wilderness.ds │ │ │ ├── sloppy electric.ds │ │ │ ├── smooth rim.ds │ │ │ ├── snappy 809.ds │ │ │ ├── softsnare.ds │ │ │ ├── sounding kick.ds │ │ │ ├── sounds like a low tom.ds │ │ │ ├── special man bass drum.ds │ │ │ ├── splatter.ds │ │ │ ├── sticky q kick.ds │ │ │ ├── stiffy snare.ds │ │ │ ├── sweet tight snare.ds │ │ │ ├── tchak snare.ds │ │ │ ├── terror n yr hood snare.ds │ │ │ ├── test.ds │ │ │ ├── think bd.ds │ │ │ ├── think sn 1.ds │ │ │ ├── think sn 2.ds │ │ │ ├── this snare spells electronic.ds │ │ │ ├── tomita clip.ds │ │ │ ├── tone snare.ds │ │ │ ├── tone.ds │ │ │ ├── tone_deg.ds │ │ │ ├── transient snare.ds │ │ │ ├── trashyovertones.ds │ │ │ ├── type snare.ds │ │ │ ├── ultra electro bd.ds │ │ │ ├── usgae bd.ds │ │ │ ├── verby soundin 808.ds │ │ │ ├── very basic snare.ds │ │ │ ├── verylong.ds │ │ │ ├── warm deep house kick.ds │ │ │ ├── warm digi 808 click.ds │ │ │ ├── whoa bd.ds │ │ │ ├── wobble wobble.ds │ │ │ ├── wobbly thumb bd.ds │ │ │ ├── yet another electric bass drum.ds │ │ │ ├── yr 808 hummer.ds │ │ │ └── zoom#4.ds │ │ ├── r&b │ │ │ ├── Hat_O.ds │ │ │ ├── S_hollow.ds │ │ │ ├── clapfilt.ds │ │ │ ├── hat rattle.ds │ │ │ ├── hat.ds │ │ │ ├── k_hard.ds │ │ │ ├── k_muffle.ds │ │ │ ├── k_soft.ds │ │ │ ├── old kik.ds │ │ │ ├── popclap.ds │ │ │ ├── popsnare.ds │ │ │ ├── s_pitch.ds │ │ │ ├── s_spit.ds │ │ │ ├── snare&hat.ds │ │ │ └── x_backwd.ds │ │ ├── tr606 │ │ │ ├── TR606 Cymbal.ds │ │ │ ├── TR606 Hat_C.ds │ │ │ ├── TR606 Hat_O.ds │ │ │ ├── TR606 Kick.ds │ │ │ ├── TR606 Snare.ds │ │ │ ├── TR606 Tom_H.ds │ │ │ └── TR606 Tom_L.ds │ │ ├── tr77 │ │ │ ├── Tr77 cui1.ds │ │ │ ├── Tr77 cui2.ds │ │ │ ├── Tr77 cym.ds │ │ │ ├── Tr77 hat.ds │ │ │ ├── Tr77 kick.ds │ │ │ ├── Tr77 snare.ds │ │ │ ├── Tr77 tom1.ds │ │ │ └── Tr77 tom2.ds │ │ ├── tr808 │ │ │ ├── Clave.ds │ │ │ ├── Cowbell.ds │ │ │ ├── Handclap.ds │ │ │ ├── Hat_c.ds │ │ │ ├── Hat_o.ds │ │ │ ├── Kick.ds │ │ │ ├── Kickhard.ds │ │ │ ├── Kicklong.ds │ │ │ ├── Ride.ds │ │ │ ├── Rimshot.ds │ │ │ ├── Snare.ds │ │ │ ├── Snr_snap.ds │ │ │ ├── Tom_hi.ds │ │ │ ├── Tom_lo.ds │ │ │ └── Tom_mid.ds │ │ └── tr909 │ │ │ ├── Clap.ds │ │ │ ├── Hat-c.ds │ │ │ ├── Hat-c2.ds │ │ │ ├── Hat-o.ds │ │ │ ├── Hat-o2.ds │ │ │ ├── Kick.ds │ │ │ ├── Kick_1.ds │ │ │ ├── Kick_2.ds │ │ │ ├── Kick_3.ds │ │ │ ├── Snare.ds │ │ │ ├── Snare2.ds │ │ │ ├── TR909 Clap.ds │ │ │ └── TR909 Kick.ds │ ├── readme.txt │ └── src │ │ ├── Components │ │ ├── DrumSynthEnvelope.cpp │ │ ├── DrumSynthEnvelope.h │ │ ├── DrumSynthKeyboard.cpp │ │ ├── DrumSynthKeyboard.h │ │ ├── DrumSynthMain.cpp │ │ └── DrumSynthMain.h │ │ ├── DrumSynth │ │ ├── drumsynth.cpp │ │ └── drumsynth.h │ │ ├── DrumSynthComponent.cpp │ │ ├── DrumSynthComponent.h │ │ ├── DrumSynthGlobals.h │ │ ├── DrumSynthPlugin.cpp │ │ ├── DrumSynthPlugin.h │ │ ├── DrumSynthVoice.h │ │ ├── IniParser │ │ ├── dictionary.cpp │ │ ├── dictionary.h │ │ ├── iniparser.cpp │ │ └── iniparser.h │ │ ├── JucePluginCharacteristics.h │ │ ├── Main.cpp │ │ ├── Resources │ │ ├── DrumSynthResources.cpp │ │ ├── DrumSynthResources.h │ │ ├── bank-tr909.bds │ │ └── resources.jrc │ │ ├── StandardConfig.h │ │ ├── StandardHeader.h │ │ └── StandardLibrary.cpp ├── dubdelay │ ├── build │ │ ├── VST_Linux │ │ │ ├── Makefile │ │ │ ├── dubdelay.make │ │ │ └── premake.lua │ │ └── linux │ │ │ ├── Makefile │ │ │ ├── dubdelay.make │ │ │ └── premake.lua │ ├── readme.txt │ └── src │ │ ├── Components │ │ ├── XDubDelayMainComponent.cpp │ │ └── XDubDelayMainComponent.h │ │ ├── JucePluginCharacteristics.h │ │ ├── Main.cpp │ │ ├── StandardConfig.h │ │ ├── StandardHeader.h │ │ ├── StandardLibrary.cpp │ │ ├── XDubDelayComponent.cpp │ │ ├── XDubDelayComponent.h │ │ ├── XDubDelayPlugin.cpp │ │ └── XDubDelayPlugin.h ├── eqinox │ ├── build │ │ ├── VST_Linux │ │ │ ├── Makefile │ │ │ ├── eqinoxvst.make │ │ │ └── premake.lua │ │ ├── VST_nmake │ │ │ └── main.mak │ │ ├── VST_win32 │ │ │ ├── eqinox.vcproj │ │ │ ├── eqinoxvst.sln │ │ │ ├── eqinoxvst.vcproj │ │ │ ├── exports.def │ │ │ └── premake.lua │ │ └── linux │ │ │ ├── Makefile │ │ │ ├── eqinox.make │ │ │ └── premake.lua │ ├── readme.txt │ └── src │ │ ├── Components │ │ ├── Resources │ │ │ └── equalizer.png │ │ ├── XEQAbout.cpp │ │ ├── XEQAbout.h │ │ ├── XEQGraph.cpp │ │ ├── XEQGraph.h │ │ ├── XEQMain.cpp │ │ ├── XEQMain.h │ │ ├── XEQTabPanel.cpp │ │ └── XEQTabPanel.h │ │ ├── Filters │ │ ├── jucetice_AnalogFilter.cpp │ │ ├── jucetice_AnalogFilter.h │ │ ├── jucetice_EQ.cpp │ │ ├── jucetice_EQ.h │ │ ├── jucetice_Limiter.cpp │ │ └── jucetice_Limiter.h │ │ ├── JucePluginCharacteristics.h │ │ ├── Main.cpp │ │ ├── StandardConfig.h │ │ ├── StandardHeader.h │ │ ├── StandardLibrary.cpp │ │ ├── XEQComponent.cpp │ │ ├── XEQComponent.h │ │ ├── XEQPlugin.cpp │ │ └── XEQPlugin.h ├── helix │ ├── build │ │ ├── VST_Linux │ │ │ ├── .valgrindsuppress │ │ │ ├── Makefile │ │ │ ├── helixvst.make │ │ │ └── premake.lua │ │ └── linux │ │ │ ├── Makefile │ │ │ ├── helix.make │ │ │ └── premake.lua │ ├── parameters.txt │ ├── readme.txt │ └── src │ │ ├── Components │ │ ├── NativeEditor.cpp │ │ └── NativeEditor.h │ │ ├── HelixComponent.cpp │ │ ├── HelixComponent.h │ │ ├── HelixGlobals.h │ │ ├── HelixPlugin.cpp │ │ ├── HelixPlugin.h │ │ ├── JucePluginCharacteristics.h │ │ ├── Main.cpp │ │ ├── StandardConfig.h │ │ ├── StandardHeader.h │ │ ├── StandardLibrary.cpp │ │ └── Synth │ │ ├── amppan.cpp │ │ ├── amppan.h │ │ ├── delay.cpp │ │ ├── delay.h │ │ ├── dynamics.cpp │ │ ├── dynamics.h │ │ ├── eg.cpp │ │ ├── eg.h │ │ ├── fastmath.inl │ │ ├── filter.cpp │ │ ├── filter.h │ │ ├── kbd.cpp │ │ ├── kbd.h │ │ ├── lfo.cpp │ │ ├── lfo.h │ │ ├── midicc.cpp │ │ ├── midicc.h │ │ ├── osc.cpp │ │ ├── osc.h │ │ ├── params.cpp │ │ ├── params.h │ │ ├── reverb.cpp │ │ ├── reverb.h │ │ ├── seq.cpp │ │ ├── seq.h │ │ ├── shaper.cpp │ │ ├── shaper.h │ │ ├── synth.cpp │ │ ├── synth.h │ │ ├── types.h │ │ ├── voice.cpp │ │ ├── voice.h │ │ ├── wavegroup.cpp │ │ └── wavegroup.h ├── hybridreverb2 │ ├── CHANGELOG.txt │ ├── TODO.txt │ ├── build │ │ ├── AU_macosx │ │ │ ├── hybridreverb2.exp │ │ │ ├── hybridreverb2.exp.sav │ │ │ └── hybridreverb2.xcodeproj │ │ │ │ ├── christian.mode1v3 │ │ │ │ ├── christian.pbxuser │ │ │ │ └── project.pbxproj │ │ ├── VST_Linux │ │ │ ├── HybridReverb2vst.make │ │ │ ├── Makefile │ │ │ └── premake.lua │ │ ├── VST_Linux_juce_1_50 │ │ │ ├── HybridReverb2vst.make │ │ │ ├── Makefile │ │ │ ├── premake.lua │ │ │ └── runpremake │ │ ├── VST_Win32 │ │ │ ├── HybridReverb2.sln │ │ │ └── HybridReverb2.vcproj │ │ ├── VST_macosx │ │ │ ├── hybridreverb2.exp │ │ │ └── hybridreverb2.xcodeproj │ │ │ │ ├── christian.mode1v3 │ │ │ │ ├── christian.pbxuser │ │ │ │ └── project.pbxproj │ │ └── linux │ │ │ ├── HybridReverb2.make │ │ │ ├── Makefile │ │ │ └── premake.lua │ └── src │ │ ├── HybridConvolver.cpp │ │ ├── HybridConvolver.h │ │ ├── HybridConvolverDual.cpp │ │ ├── HybridConvolverDual.h │ │ ├── HybridConvolverSingle.cpp │ │ ├── HybridConvolverSingle.h │ │ ├── HybridConvolverTripple.cpp │ │ ├── HybridConvolverTripple.h │ │ ├── HybridReverb2Processor.cpp │ │ ├── HybridReverb2Processor.h │ │ ├── JucePluginCharacteristics.h │ │ ├── LagrangeInterpolator.cpp │ │ ├── LagrangeInterpolator.h │ │ ├── Main.cpp │ │ ├── MasterAndCommander.cpp │ │ ├── MasterAndCommander.h │ │ ├── ParamCategory.h │ │ ├── ParamEnvelope.h │ │ ├── ParamGainDelay.h │ │ ├── ParamImpulseResponses.h │ │ ├── ParamPartitionWisdom.h │ │ ├── ParamPreferences.h │ │ ├── ParamPreset.h │ │ ├── ParamTimbre.h │ │ ├── Partitioner.cpp │ │ ├── Partitioner.h │ │ ├── PresetManager.cpp │ │ ├── PresetManager.h │ │ ├── SampleData.cpp │ │ ├── SampleData.h │ │ ├── SystemConfig.cpp │ │ ├── SystemConfig.h │ │ ├── TextList.cpp │ │ ├── TextList.h │ │ ├── gui │ │ ├── EditorComponent.cpp │ │ ├── EditorComponent.h │ │ ├── FreqPlot.cpp │ │ ├── FreqPlot.h │ │ ├── IRPlot.cpp │ │ ├── IRPlot.h │ │ ├── TabAbout.cpp │ │ ├── TabAbout.h │ │ ├── TabMain.cpp │ │ ├── TabMain.h │ │ ├── TabModulation.cpp │ │ ├── TabModulation.h │ │ ├── TabPreferences.cpp │ │ ├── TabPreferences.h │ │ ├── TabPresetEditor.cpp │ │ ├── TabPresetEditor.h │ │ ├── TabTimbre.cpp │ │ ├── TabTimbre.h │ │ ├── about_text.sh │ │ ├── about_text_jucer.txt │ │ ├── help_text.sh │ │ └── help_text_jucer.txt │ │ ├── includes.h │ │ ├── juce_AppConfig.h │ │ ├── libHybridConv │ │ ├── libHybridConv.c │ │ └── libHybridConv.h │ │ ├── resources │ │ ├── aes_cb.jpg │ │ └── directivity2.svg │ │ └── windows_quirks.h ├── implzr │ ├── build │ │ ├── VST_Linux │ │ │ ├── Makefile │ │ │ ├── implzr.make │ │ │ └── premake.lua │ │ └── linux │ │ │ ├── Makefile │ │ │ ├── implzr.make │ │ │ └── premake.lua │ ├── impulses │ │ ├── IR_theater.wav │ │ ├── LargeCave.wav │ │ └── iR_cathedral.wav │ ├── readme.txt │ └── src │ │ ├── Components │ │ ├── XImpulseMainComponent.cpp │ │ └── XImpulseMainComponent.h │ │ ├── JucePluginCharacteristics.h │ │ ├── Main.cpp │ │ ├── StandardConfig.h │ │ ├── StandardHeader.h │ │ ├── StandardLibrary.cpp │ │ ├── XImpulseComponent.cpp │ │ ├── XImpulseComponent.h │ │ ├── XImpulsePlugin.cpp │ │ ├── XImpulsePlugin.h │ │ ├── config.h │ │ ├── freeverb │ │ ├── allpass.cpp │ │ ├── allpass.hpp │ │ ├── allpass_t.hpp │ │ ├── blockDelay.cpp │ │ ├── blockDelay.hpp │ │ ├── blockDelay_t.hpp │ │ ├── comb.cpp │ │ ├── comb.hpp │ │ ├── comb_t.hpp │ │ ├── compmodel.cpp │ │ ├── compmodel.hpp │ │ ├── compmodel_t.hpp │ │ ├── delay.cpp │ │ ├── delay.hpp │ │ ├── delay_t.hpp │ │ ├── efilter.cpp │ │ ├── efilter.hpp │ │ ├── efilter_t.hpp │ │ ├── fir3bandsplit.cpp │ │ ├── fir3bandsplit.hpp │ │ ├── fir3bandsplit_t.hpp │ │ ├── firfilter.cpp │ │ ├── firfilter.hpp │ │ ├── firfilter_t.hpp │ │ ├── firwindow.cpp │ │ ├── firwindow.hpp │ │ ├── firwindow_t.hpp │ │ ├── frag.cpp │ │ ├── frag.hpp │ │ ├── frag_t.hpp │ │ ├── fv3_defs.h │ │ ├── fv3_ns_end.h │ │ ├── fv3_ns_start.h │ │ ├── fv3_type_float.h │ │ ├── irbase.hpp │ │ ├── irbase_t.hpp │ │ ├── irmodel.cpp │ │ ├── irmodel.hpp │ │ ├── irmodel2.cpp │ │ ├── irmodel2.hpp │ │ ├── irmodel2_t.hpp │ │ ├── irmodel3.cpp │ │ ├── irmodel3.hpp │ │ ├── irmodel3_t.hpp │ │ ├── irmodel_t.hpp │ │ ├── irmodels.cpp │ │ ├── irmodels.hpp │ │ ├── irmodels_t.hpp │ │ ├── limitmodel.cpp │ │ ├── limitmodel.hpp │ │ ├── limitmodel_t.hpp │ │ ├── nrev.cpp │ │ ├── nrev.hpp │ │ ├── nrev_t.hpp │ │ ├── revmodel.cpp │ │ ├── revmodel.hpp │ │ ├── revmodel_t.hpp │ │ ├── rms.cpp │ │ ├── rms.hpp │ │ ├── rms_t.hpp │ │ ├── scomp.cpp │ │ ├── scomp.hpp │ │ ├── scomp_t.hpp │ │ ├── slimit.cpp │ │ ├── slimit.hpp │ │ ├── slimit_t.hpp │ │ ├── src.cpp │ │ ├── src.hpp │ │ ├── src_t.hpp │ │ ├── stenh.cpp │ │ ├── stenh.hpp │ │ ├── stenh_t.hpp │ │ ├── tuning.h │ │ ├── utils.cpp │ │ ├── utils.hpp │ │ └── utils_t.hpp │ │ └── libsamplerate2 │ │ ├── common.h │ │ ├── common_c.h │ │ ├── fastest_coeffs.h │ │ ├── float_cast.h │ │ ├── high_qual_coeffs.h │ │ ├── mid_qual_coeffs.h │ │ ├── samplerate.c │ │ ├── samplerate2.h │ │ ├── samplerate2_common.h │ │ ├── samplerate2_t.h │ │ ├── samplerate_common.c │ │ ├── src.make │ │ ├── src_common.c │ │ ├── src_linear.c │ │ ├── src_sinc.c │ │ ├── src_zoh.c │ │ └── type_float.h ├── jacked │ ├── build │ │ └── linux │ │ │ ├── Makefile │ │ │ ├── jacked.make │ │ │ └── premake.lua │ └── src │ │ ├── JackedDevice.cpp │ │ ├── JackedDevice.h │ │ ├── JackedGraph.cpp │ │ ├── JackedGraph.h │ │ ├── JackedMain.cpp │ │ ├── JackedOnScreenDisplay.cpp │ │ ├── JackedOnScreenDisplay.h │ │ ├── JackedStandardConfig.h │ │ ├── JackedStandardHeader.h │ │ ├── JackedStandardLibrary.cpp │ │ ├── JackedSystemTray.cpp │ │ ├── JackedSystemTray.h │ │ ├── JackedWindow.cpp │ │ └── JackedWindow.h ├── jost │ ├── build │ │ ├── VST_Linux │ │ │ ├── Makefile │ │ │ ├── jostvst.make │ │ │ └── premake.lua │ │ ├── linux │ │ │ ├── Makefile │ │ │ ├── jost.make │ │ │ └── premake.lua │ │ ├── macosx │ │ │ ├── Info.plist │ │ │ ├── jost+plugins.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── jost.xcodeproj │ │ │ │ └── project.pbxproj │ │ └── win32 │ │ │ └── vc8 │ │ │ ├── Jost.sln │ │ │ └── Jost.vcproj │ ├── compile.txt │ ├── readme.txt │ └── src │ │ ├── Commands.cpp │ │ ├── Commands.h │ │ ├── Config.cpp │ │ ├── Config.h │ │ ├── HostFilterBase.cpp │ │ ├── HostFilterBase.h │ │ ├── HostFilterComponent.cpp │ │ ├── HostFilterComponent.h │ │ ├── JucePluginCharacteristics.h │ │ ├── Main.cpp │ │ ├── StandardConfig.h │ │ ├── StandardHeader.h │ │ ├── StandardLibrary.cpp │ │ ├── model │ │ ├── BasePlugin.cpp │ │ ├── BasePlugin.h │ │ ├── Host.cpp │ │ ├── Host.h │ │ ├── MultiTrack.cpp │ │ ├── MultiTrack.h │ │ ├── PluginLoader.cpp │ │ ├── PluginLoader.h │ │ ├── ProcessingGraph.h │ │ ├── Transport.cpp │ │ ├── Transport.h │ │ └── plugins │ │ │ ├── ChannelInputPlugin.cpp │ │ │ ├── ChannelInputPlugin.h │ │ │ ├── ChannelOutputPlugin.cpp │ │ │ ├── ChannelOutputPlugin.h │ │ │ ├── DssiPlugin.cpp │ │ │ ├── DssiPlugin.h │ │ │ ├── InputPlugin.cpp │ │ │ ├── InputPlugin.h │ │ │ ├── LadspaPlugin.cpp │ │ │ ├── LadspaPlugin.h │ │ │ ├── OutputPlugin.cpp │ │ │ ├── OutputPlugin.h │ │ │ ├── TrackPlugin.cpp │ │ │ ├── TrackPlugin.h │ │ │ ├── VstPlugin.cpp │ │ │ ├── VstPlugin.h │ │ │ ├── channelplugin │ │ │ ├── ChannelEditor.cpp │ │ │ ├── ChannelEditor.h │ │ │ ├── ChannelGraphComponent.cpp │ │ │ ├── ChannelGraphComponent.h │ │ │ ├── ChannelHost.cpp │ │ │ ├── ChannelHost.h │ │ │ ├── ChannelPlugin.cpp │ │ │ └── ChannelPlugin.h │ │ │ ├── effects │ │ │ ├── DetunerEditor.cpp │ │ │ ├── DetunerEditor.h │ │ │ ├── DetunerParameters.h │ │ │ ├── DetunerPlugin.cpp │ │ │ ├── DetunerPlugin.h │ │ │ ├── OppressorEditor.cpp │ │ │ ├── OppressorEditor.h │ │ │ ├── OppressorParameters.h │ │ │ ├── OppressorPlugin.cpp │ │ │ ├── OppressorPlugin.h │ │ │ ├── OverdoseEditor.cpp │ │ │ ├── OverdoseEditor.h │ │ │ ├── OverdoseParameters.h │ │ │ ├── OverdosePlugin.cpp │ │ │ └── OverdosePlugin.h │ │ │ ├── meters │ │ │ ├── AudioSpecMeterEditor.cpp │ │ │ ├── AudioSpecMeterEditor.h │ │ │ ├── AudioSpecMeterPlugin.cpp │ │ │ └── AudioSpecMeterPlugin.h │ │ │ └── midiplugins │ │ │ ├── MidiFilterEditor.cpp │ │ │ ├── MidiFilterEditor.h │ │ │ ├── MidiFilterPlugin.cpp │ │ │ ├── MidiFilterPlugin.h │ │ │ ├── MidiInputPlugin.cpp │ │ │ ├── MidiInputPlugin.h │ │ │ ├── MidiKeyboardEditor.cpp │ │ │ ├── MidiKeyboardEditor.h │ │ │ ├── MidiKeyboardPlugin.cpp │ │ │ ├── MidiKeyboardPlugin.h │ │ │ ├── MidiMonitorEditor.cpp │ │ │ ├── MidiMonitorEditor.h │ │ │ ├── MidiMonitorPlugin.cpp │ │ │ ├── MidiMonitorPlugin.h │ │ │ ├── MidiOutputPlugin.cpp │ │ │ ├── MidiOutputPlugin.h │ │ │ ├── MidiPads.cpp │ │ │ ├── MidiPads.h │ │ │ ├── MidiPadsPluginEditor.cpp │ │ │ ├── MidiPadsPluginEditor.h │ │ │ ├── MidiSequencePlugin.cpp │ │ │ ├── MidiSequencePlugin.h │ │ │ ├── MidiSequencePluginBase.cpp │ │ │ ├── MidiSequencePluginBase.h │ │ │ ├── SequenceComponent.cpp │ │ │ └── SequenceComponent.h │ │ ├── resources │ │ ├── Jost.icns │ │ ├── Resources.cpp │ │ ├── Resources.h │ │ ├── jost.png │ │ ├── jost_about.png │ │ ├── jost_about.xcf │ │ ├── jost_icons.zip │ │ ├── jost_midipads.zip │ │ └── resource.jrc │ │ └── ui │ │ ├── AudioSequenceComponent.cpp │ │ ├── AudioSequenceComponent.h │ │ ├── BrowserTabbedComponent.cpp │ │ ├── BrowserTabbedComponent.h │ │ ├── GraphComponent.cpp │ │ ├── GraphComponent.h │ │ ├── MainTabbedComponent.cpp │ │ ├── MainTabbedComponent.h │ │ ├── TrackComponent.cpp │ │ ├── TrackComponent.h │ │ ├── browser │ │ ├── BookmarksComponent.cpp │ │ ├── BookmarksComponent.h │ │ ├── DiskBrowserComponent.cpp │ │ └── DiskBrowserComponent.h │ │ ├── lookandfeel │ │ ├── ColourScheme.cpp │ │ ├── ColourScheme.h │ │ ├── DefaultColourScheme.h │ │ ├── JostLookAndFeel.cpp │ │ └── JostLookAndFeel.h │ │ ├── mixer │ │ ├── MixerComponent.cpp │ │ ├── MixerComponent.h │ │ ├── MixerStripComponent.cpp │ │ └── MixerStripComponent.h │ │ ├── plugins │ │ ├── PluginEditorComponent.cpp │ │ ├── PluginEditorComponent.h │ │ └── PluginEditorWindowHolder.h │ │ ├── surface │ │ ├── SurfaceComponent.cpp │ │ ├── SurfaceComponent.h │ │ ├── SurfaceObjects.cpp │ │ ├── SurfaceObjects.h │ │ ├── SurfaceProperties.cpp │ │ └── SurfaceProperties.h │ │ ├── toolbar │ │ ├── ToolbarMainComponent.cpp │ │ └── ToolbarMainComponent.h │ │ ├── utility │ │ └── AudioBufferDisplay.h │ │ └── windows │ │ ├── VstPluginExternalEditor.cpp │ │ ├── VstPluginExternalEditor.h │ │ ├── VstPluginNativeEditor.cpp │ │ ├── VstPluginNativeEditor.h │ │ ├── VstPluginWindow.cpp │ │ ├── VstPluginWindow.h │ │ ├── VstPluginWindowContent.cpp │ │ ├── VstPluginWindowContent.h │ │ ├── VstPluginWindowTabPanel.cpp │ │ └── VstPluginWindowTabPanel.h ├── kombat │ ├── build │ │ └── VST_Linux │ │ │ ├── Makefile │ │ │ ├── kombat.make │ │ │ └── premake.lua │ ├── presets │ │ └── makeup.fxp │ ├── readme.txt │ └── src │ │ ├── Components │ │ ├── Utils │ │ │ └── MultipleEQGraph.h │ │ ├── XCompMain.cpp │ │ └── XCompMain.h │ │ ├── JucePluginCharacteristics.h │ │ ├── StandardConfig.h │ │ ├── StandardHeader.h │ │ ├── StandardLibrary.cpp │ │ ├── XCompComponent.cpp │ │ ├── XCompComponent.h │ │ ├── XCompGlobals.h │ │ ├── XCompPlugin.cpp │ │ └── XCompPlugin.h ├── monitor │ ├── build │ │ └── VST_Linux │ │ │ ├── Makefile │ │ │ ├── monitor.make │ │ │ └── premake.lua │ └── src │ │ ├── JucePluginCharacteristics.h │ │ ├── StandardConfig.h │ │ ├── StandardHeader.h │ │ ├── StandardLibrary.cpp │ │ ├── xMonEditor.cpp │ │ ├── xMonEditor.h │ │ ├── xMonFilter.cpp │ │ └── xMonFilter.h ├── nekobee │ ├── build │ │ ├── VST_Linux │ │ │ ├── .valgrindsuppress │ │ │ ├── Makefile │ │ │ ├── nekobeevst.make │ │ │ └── premake.lua │ │ └── linux │ │ │ ├── Makefile │ │ │ ├── nekobee.make │ │ │ └── premake.lua │ ├── readme.txt │ └── src │ │ ├── Components │ │ ├── Components.tar │ │ ├── NekobeeMain.cpp │ │ ├── NekobeeMain.h │ │ └── bee_logo.png │ │ ├── JucePluginCharacteristics.h │ │ ├── Main.cpp │ │ ├── Nekobee │ │ ├── dssi.h │ │ ├── gui_data.cpp │ │ ├── gui_data.h │ │ ├── ladspa.h │ │ ├── minblep_tables.cpp │ │ ├── nekobee.h │ │ ├── nekobee_data.cpp │ │ ├── nekobee_dssi.cpp │ │ ├── nekobee_dssi.h │ │ ├── nekobee_ports.cpp │ │ ├── nekobee_ports.h │ │ ├── nekobee_synth.cpp │ │ ├── nekobee_synth.h │ │ ├── nekobee_types.h │ │ ├── nekobee_voice.cpp │ │ ├── nekobee_voice.h │ │ └── nekobee_voice_render.cpp │ │ ├── NekobeeComponent.cpp │ │ ├── NekobeeComponent.h │ │ ├── NekobeeGlobals.h │ │ ├── NekobeePlugin.cpp │ │ ├── NekobeePlugin.h │ │ ├── StandardConfig.h │ │ ├── StandardHeader.h │ │ └── StandardLibrary.cpp ├── notemap │ ├── build │ │ └── VST_Linux │ │ │ ├── Makefile │ │ │ ├── notemap.make │ │ │ └── premake.lua │ ├── readme.txt │ └── src │ │ ├── ChannelSelector.h │ │ ├── Data │ │ ├── Data.cpp │ │ ├── Data.h │ │ └── DataConnection.h │ │ ├── DocumentDataElement.cpp │ │ ├── DocumentDataElement.h │ │ ├── JucePluginCharacteristics.h │ │ ├── MidiNoteMapEditor.cpp │ │ ├── MidiNoteMapEditor.h │ │ ├── MidiNoteMapFilter.cpp │ │ ├── MidiNoteMapFilter.h │ │ ├── NoteMap.h │ │ ├── NoteMapHandler.cpp │ │ ├── NoteMapHandler.h │ │ ├── NoteMapKeyboard.h │ │ ├── StandardConfig.h │ │ ├── StandardHeader.h │ │ └── StandardLibrary.cpp ├── peggy2000 │ ├── build │ │ ├── VST_Linux │ │ │ ├── Makefile │ │ │ ├── peggy2000vst.make │ │ │ └── premake.lua │ │ └── linux │ │ │ ├── Makefile │ │ │ ├── peggy2000.make │ │ │ └── premake.lua │ ├── readme.txt │ └── src │ │ ├── EditorComponent.cpp │ │ ├── EditorComponent.h │ │ ├── JuceFilter.cpp │ │ ├── JuceFilter.h │ │ ├── JucePluginCharacteristics.h │ │ ├── Main.cpp │ │ ├── StandardConfig.h │ │ ├── StandardHeader.h │ │ ├── StandardLibrary.cpp │ │ ├── bg.cpp │ │ ├── bg.h │ │ ├── gui │ │ ├── BoolGridComponent.h │ │ ├── SliderFieldComponent.h │ │ └── SnappingSlider.h │ │ ├── lookandfeel │ │ ├── MyLookAndFeel.cpp │ │ └── MyLookAndFeel.h │ │ ├── parameters.h │ │ └── synth │ │ ├── cADSR.h │ │ ├── cAmpADSR.h │ │ ├── cArp.h │ │ ├── cChorus.h │ │ ├── cDelay.h │ │ ├── cFilter.h │ │ ├── cSyntModule.h │ │ ├── cTblLFO.h │ │ ├── cTblOSC.h │ │ ├── cVoice.h │ │ ├── lfo_tables.cpp │ │ ├── lfo_tables.h │ │ ├── osc_tables.cpp │ │ └── osc_tables.h ├── soundcrab │ ├── build │ │ ├── VST_Linux │ │ │ ├── Makefile │ │ │ ├── premake.lua │ │ │ └── soundcrabvst.make │ │ └── linux │ │ │ ├── Makefile │ │ │ ├── premake.lua │ │ │ └── soundcrab.make │ ├── readme.txt │ └── src │ │ ├── Components │ │ ├── SoundCrabAboutComponent.cpp │ │ ├── SoundCrabAboutComponent.h │ │ ├── SoundCrabMainComponent.cpp │ │ └── SoundCrabMainComponent.h │ │ ├── JucePluginCharacteristics.h │ │ ├── Main.cpp │ │ ├── Resources │ │ └── crab.png │ │ ├── SoundCrabConfig.cpp │ │ ├── SoundCrabConfig.h │ │ ├── SoundCrabEditor.cpp │ │ ├── SoundCrabEditor.h │ │ ├── SoundCrabParameters.cpp │ │ ├── SoundCrabParameters.h │ │ ├── SoundCrabPlugin.cpp │ │ ├── SoundCrabPlugin.h │ │ ├── StandardConfig.h │ │ ├── StandardHeader.h │ │ ├── StandardLibrary.cpp │ │ └── Synth │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── config.h │ │ ├── config_macos.h │ │ ├── config_macosx.h │ │ ├── config_macosx_pb.h │ │ ├── config_win32.h │ │ ├── fluid_adriver.c │ │ ├── fluid_adriver.h │ │ ├── fluid_aufile.c │ │ ├── fluid_chan.c │ │ ├── fluid_chan.h │ │ ├── fluid_chorus.c │ │ ├── fluid_chorus.h │ │ ├── fluid_cmd.c │ │ ├── fluid_cmd.h │ │ ├── fluid_conv.c │ │ ├── fluid_conv.h │ │ ├── fluid_defsfont.c │ │ ├── fluid_defsfont.h │ │ ├── fluid_dll.c │ │ ├── fluid_dsp_float.c │ │ ├── fluid_event.c │ │ ├── fluid_event_priv.h │ │ ├── fluid_gen.c │ │ ├── fluid_gen.h │ │ ├── fluid_hash.c │ │ ├── fluid_hash.h │ │ ├── fluid_io.c │ │ ├── fluid_io.h │ │ ├── fluid_ladspa.h │ │ ├── fluid_lash.h │ │ ├── fluid_list.c │ │ ├── fluid_list.h │ │ ├── fluid_mdriver.c │ │ ├── fluid_mdriver.h │ │ ├── fluid_midi.c │ │ ├── fluid_midi.h │ │ ├── fluid_midi_router.c │ │ ├── fluid_midi_router.h │ │ ├── fluid_mod.c │ │ ├── fluid_mod.h │ │ ├── fluid_phase.h │ │ ├── fluid_ramsfont.c │ │ ├── fluid_ramsfont.h │ │ ├── fluid_rev.c │ │ ├── fluid_rev.h │ │ ├── fluid_seq.c │ │ ├── fluid_seqbind.c │ │ ├── fluid_settings.c │ │ ├── fluid_settings.h │ │ ├── fluid_sfont.h │ │ ├── fluid_synth.c │ │ ├── fluid_synth.h │ │ ├── fluid_sys.c │ │ ├── fluid_sys.h │ │ ├── fluid_tuning.c │ │ ├── fluid_tuning.h │ │ ├── fluid_voice.c │ │ ├── fluid_voice.h │ │ ├── fluidsynth.c │ │ ├── fluidsynth.h │ │ ├── fluidsynth │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── audio.h │ │ ├── event.h │ │ ├── gen.h │ │ ├── log.h │ │ ├── midi.h │ │ ├── misc.h │ │ ├── mod.h │ │ ├── ramsfont.h │ │ ├── seq.h │ │ ├── seqbind.h │ │ ├── settings.h │ │ ├── sfont.h │ │ ├── shell.h │ │ ├── synth.h │ │ ├── types.h │ │ ├── version.h │ │ ├── version.h.in │ │ └── voice.h │ │ └── fluidsynth_priv.h ├── tal-filter │ ├── build │ │ ├── VST_Linux │ │ │ ├── Makefile │ │ │ ├── premake.lua │ │ │ └── tal-filtervst.make │ │ └── linux │ │ │ ├── Makefile │ │ │ ├── premake.lua │ │ │ └── tal-filter.make │ └── src │ │ ├── Engine │ │ ├── Decimator.h │ │ ├── Engine.h │ │ ├── Envelope.h │ │ ├── FilterBp12dB.h │ │ ├── FilterHandler.h │ │ ├── FilterHp12dB.h │ │ ├── FilterLp12dB.h │ │ ├── InterpolatorLinear.h │ │ ├── Lfo.cpp │ │ ├── Lfo.h │ │ ├── NoiseOsc.h │ │ ├── ParamChangeUtil.h │ │ └── Params.h │ │ ├── FilmStripKnob.h │ │ ├── ImageSlider.h │ │ ├── ImageToggleButton.h │ │ ├── JucePluginCharacteristics.h │ │ ├── Main.cpp │ │ ├── Program.h │ │ ├── ProgramChunk.h │ │ ├── Resources │ │ ├── bmp00128.png │ │ ├── bmp00129.png │ │ ├── bmp00132.png │ │ └── bmp00133.png │ │ ├── TalComponent.cpp │ │ ├── TalComponent.h │ │ ├── TalCore.cpp │ │ ├── TalCore.h │ │ ├── TalPreset.h │ │ └── includes.h ├── tal-reverb │ ├── build │ │ ├── VST_Linux │ │ │ ├── Makefile │ │ │ ├── premake.lua │ │ │ └── tal-reverbvst.make │ │ └── linux │ │ │ ├── Makefile │ │ │ ├── premake.lua │ │ │ └── tal-reverb.make │ └── src │ │ ├── Engine │ │ ├── AllPassFilter.h │ │ ├── CombFilter.h │ │ ├── Filter.h │ │ ├── NoiseGenerator.h │ │ ├── ParamChangeUtil.h │ │ ├── Params.h │ │ ├── Reverb.h │ │ └── ReverbEngine.h │ │ ├── FilmStripKnob.h │ │ ├── ImageSlider.h │ │ ├── ImageToggleButton.h │ │ ├── JucePluginCharacteristics.h │ │ ├── Main.cpp │ │ ├── Program.h │ │ ├── ProgramChunk.h │ │ ├── Resources │ │ ├── bmp00128.png │ │ ├── bmp00129.png │ │ ├── bmp00130.png │ │ ├── bmp00131.png │ │ ├── bmp00132.png │ │ └── bmp00133.png │ │ ├── ReverbComponent.cpp │ │ ├── ReverbComponent.h │ │ ├── TalCore.cpp │ │ ├── TalCore.h │ │ ├── TalPreset.h │ │ └── includes.h ├── test │ ├── hello │ ├── hello.c │ └── sconstruct ├── vex │ ├── build │ │ ├── VST_Linux │ │ │ ├── Makefile │ │ │ ├── premake.lua │ │ │ └── vexvst.make │ │ └── linux │ │ │ ├── Makefile │ │ │ ├── premake.lua │ │ │ └── vex.make │ ├── readme.txt │ └── src │ │ ├── JucePluginCharacteristics.h │ │ ├── Main.cpp │ │ ├── PeggySettings.h │ │ ├── PeggyViewComponent.h │ │ ├── PresetMan.h │ │ ├── StandardConfig.h │ │ ├── StandardHeader.h │ │ ├── StandardLibrary.cpp │ │ ├── VexEditorComponent.cpp │ │ ├── VexEditorComponent.h │ │ ├── VexFilter.cpp │ │ ├── VexFilter.h │ │ ├── gui │ │ ├── BoolGridComponent.h │ │ ├── SliderFieldComponent.h │ │ └── SnappingSlider.h │ │ ├── lookandfeel │ │ ├── MyLookAndFeel.cpp │ │ └── MyLookAndFeel.h │ │ ├── resources │ │ ├── Resources.cpp │ │ └── Resources.h │ │ ├── synth │ │ ├── cADSR.h │ │ ├── cArp.h │ │ ├── cChorus.h │ │ ├── cDelay.h │ │ ├── cReverb.h │ │ ├── cSyntModule.h │ │ ├── cVoice.cpp │ │ ├── cVoice.h │ │ ├── cWaveRenderer.cpp │ │ ├── cWaveRenderer.h │ │ └── freeverb │ │ │ ├── allpass.cpp │ │ │ ├── allpass.hpp │ │ │ ├── comb.cpp │ │ │ ├── comb.hpp │ │ │ ├── denormals.h │ │ │ ├── revmodel.cpp │ │ │ ├── revmodel.hpp │ │ │ └── tuning.h │ │ └── waverom │ │ ├── ResourceFile.cpp │ │ ├── ResourceFile.h │ │ ├── asym_saw.raw │ │ ├── bass_tone.raw │ │ ├── buzz_1.raw │ │ ├── buzz_2.raw │ │ ├── dark_strings.raw │ │ ├── deep_ring_1.raw │ │ ├── deep_ring_2.raw │ │ ├── epiano_tone.raw │ │ ├── ghost_1.raw │ │ ├── ghost_2.raw │ │ ├── ghost_3.raw │ │ ├── ghost_4.raw │ │ ├── grind_1.raw │ │ ├── grind_2.raw │ │ ├── more_strings.raw │ │ ├── multi_pulse.raw │ │ ├── no_name.raw │ │ ├── one_string.raw │ │ ├── organ_1.raw │ │ ├── organ_2.raw │ │ ├── phasing_sqr.raw │ │ ├── pulse.raw │ │ ├── saw.raw │ │ ├── sharp_1.raw │ │ ├── sharp_2.raw │ │ ├── sine.raw │ │ ├── soft_1.raw │ │ ├── soft_2.raw │ │ ├── soft_3.raw │ │ ├── soft_4.raw │ │ ├── square.raw │ │ ├── string_fuzz.raw │ │ ├── strings_1.raw │ │ ├── strings_2.raw │ │ ├── syn_choir_1.raw │ │ ├── syn_choir_2.raw │ │ ├── syn_choir_3.raw │ │ ├── thin_1.raw │ │ ├── thin_2.raw │ │ ├── two_strings.raw │ │ ├── voice_1.raw │ │ ├── voice_2.raw │ │ ├── waverom.jrc │ │ └── waverom_info.txt └── wolpertinger │ ├── README │ ├── build │ ├── VST_Linux │ │ ├── Makefile │ │ ├── premake.lua │ │ └── wolpertingervst.make │ └── linux │ │ ├── Makefile │ │ ├── premake.lua │ │ └── wolpertinger.make │ └── src │ ├── JucePluginCharacteristics.h │ ├── Main.cpp │ ├── StandardConfig.h │ ├── StandardHeader.h │ ├── StandardLibrary.cpp │ ├── editor.cpp │ ├── editor.h │ ├── filters.h │ ├── synth.cpp │ └── synth.h ├── juce ├── build │ ├── linux │ │ ├── Makefile │ │ ├── juce.make │ │ └── premake.lua │ ├── macosx │ │ ├── Juce.xcodeproj │ │ │ └── project.pbxproj │ │ ├── juce-extended.xcodeproj │ │ │ └── project.pbxproj │ │ └── juce.xcconfig │ └── win32 │ │ └── vc8 │ │ ├── JUCE.sln │ │ ├── JUCE.vcproj │ │ └── JUCED.vcproj ├── docs │ ├── JUCE changelist.txt │ ├── JUCE readme.html │ ├── gpl.txt │ ├── images │ │ └── rms_logo.gif │ └── rawmat.css ├── extras │ ├── amalgamator │ │ ├── juce_AmalgamatorMain.cpp │ │ ├── juce_AppConfig.h │ │ ├── juce_LibrarySource.cpp │ │ ├── juce_LibrarySource.mm │ │ ├── linux │ │ │ ├── Amalgamator.make │ │ │ ├── Makefile │ │ │ ├── premake.lua │ │ │ └── runpremake │ │ ├── mac │ │ │ └── Amalgamator.xcodeproj │ │ │ │ └── project.pbxproj │ │ └── vc8 │ │ │ ├── Amalgamator.sln │ │ │ └── Amalgamator.vcproj │ ├── audio plugin host │ │ ├── build │ │ │ ├── linux │ │ │ │ ├── JuceAudioPluginHost.make │ │ │ │ ├── Makefile │ │ │ │ ├── premake.lua │ │ │ │ └── runpremake │ │ │ ├── mac │ │ │ │ ├── Info.plist │ │ │ │ └── PluginHost.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ └── win32 │ │ │ │ ├── PluginHost.sln │ │ │ │ └── PluginHost.vcproj │ │ └── src │ │ │ ├── HostStartup.cpp │ │ │ ├── host │ │ │ ├── FilterGraph.cpp │ │ │ ├── FilterGraph.h │ │ │ ├── GraphEditorPanel.cpp │ │ │ ├── GraphEditorPanel.h │ │ │ ├── InternalFilters.cpp │ │ │ ├── InternalFilters.h │ │ │ ├── MainHostWindow.cpp │ │ │ └── MainHostWindow.h │ │ │ ├── includes.h │ │ │ ├── juce_AppConfig.h │ │ │ ├── juce_LibrarySource.cpp │ │ │ └── juce_LibrarySource.mm │ ├── audio plugins │ │ ├── How to use this framework.txt │ │ ├── demo │ │ │ ├── build │ │ │ │ ├── linux │ │ │ │ │ └── premake.lua │ │ │ │ ├── mac │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── JuceDemoPlugin.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ └── win32 │ │ │ │ │ ├── JuceDemoPlugin.sln │ │ │ │ │ └── JuceDemoPlugin.vcproj │ │ │ └── src │ │ │ │ ├── DemoEditorComponent.cpp │ │ │ │ ├── DemoEditorComponent.h │ │ │ │ ├── DemoJuceFilter.cpp │ │ │ │ ├── DemoJuceFilter.h │ │ │ │ ├── JucePluginCharacteristics.h │ │ │ │ ├── includes.h │ │ │ │ ├── juce_AppConfig.h │ │ │ │ ├── juce_LibrarySource.cpp │ │ │ │ └── juce_LibrarySource.mm │ │ └── wrapper │ │ │ ├── AU │ │ │ ├── juce_AU_Resources.r │ │ │ └── juce_AU_Wrapper.mm │ │ │ ├── Jack │ │ │ ├── juce_JackAudioFilterStreamer.cpp │ │ │ ├── juce_JackAudioFilterStreamer.h │ │ │ └── juce_JackAudioFilterStreamerApplication.h │ │ │ ├── JackBridge │ │ │ ├── common.h │ │ │ ├── juce_JackBridgeFilterStreamer.cpp │ │ │ └── juce_JackBridgeFilterStreamer.h │ │ │ ├── RTAS │ │ │ ├── juce_RTAS_DigiCode1.cpp │ │ │ ├── juce_RTAS_DigiCode2.cpp │ │ │ ├── juce_RTAS_DigiCode3.cpp │ │ │ ├── juce_RTAS_DigiCode_Header.h │ │ │ ├── juce_RTAS_MacResources.r │ │ │ ├── juce_RTAS_MacUtilities.mm │ │ │ ├── juce_RTAS_WinExports.def │ │ │ ├── juce_RTAS_WinResources.rsr │ │ │ ├── juce_RTAS_WinUtilities.cpp │ │ │ └── juce_RTAS_Wrapper.cpp │ │ │ ├── Standalone │ │ │ ├── juce_AudioFilterStreamer.cpp │ │ │ ├── juce_AudioFilterStreamer.h │ │ │ ├── juce_StandaloneFilterApplication.cpp │ │ │ ├── juce_StandaloneFilterApplication.h │ │ │ ├── juce_StandaloneFilterWindow.cpp │ │ │ └── juce_StandaloneFilterWindow.h │ │ │ ├── VST │ │ │ ├── juce_VST_Wrapper.cpp │ │ │ └── juce_VST_Wrapper.mm │ │ │ ├── juce_IncludeCharacteristics.h │ │ │ └── juce_PluginHeaders.h │ ├── binarybuilder │ │ ├── BinaryBuilder.cpp │ │ ├── juce_AppConfig.h │ │ ├── juce_LibrarySource.cpp │ │ ├── juce_LibrarySource.mm │ │ ├── linux │ │ │ ├── Makefile │ │ │ ├── binarybuilder.make │ │ │ ├── binarybuilder_premake.lua │ │ │ └── runpremake │ │ ├── mac │ │ │ └── BinaryBuilder.xcodeproj │ │ │ │ └── project.pbxproj │ │ └── vc8 │ │ │ ├── BinaryBuilder.sln │ │ │ └── BinaryBuilder.vcproj │ ├── browser plugins │ │ ├── How to build a browser plugin.txt │ │ ├── demo │ │ │ ├── build │ │ │ │ ├── linux │ │ │ │ │ ├── JuceBrowserPluginDemo.make │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── premake.lua │ │ │ │ │ └── runpremake │ │ │ │ ├── mac │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── JuceBrowserPluginDemo.xcodeproj │ │ │ │ │ │ ├── TemplateIcon.tiff │ │ │ │ │ │ └── project.pbxproj │ │ │ │ └── win32 │ │ │ │ │ ├── JuceBrowserPluginDemo.sln │ │ │ │ │ └── JuceBrowserPluginDemo.vcproj │ │ │ ├── src │ │ │ │ ├── BrowserPluginCharacteristics.h │ │ │ │ ├── JuceBrowserPluginDemo.cpp │ │ │ │ ├── juce_LibrarySource.cpp │ │ │ │ └── juce_LibrarySource.mm │ │ │ └── test.html │ │ └── wrapper │ │ │ ├── juce_ActiveX_GlueCode.cpp │ │ │ ├── juce_BrowserPluginComponent.h │ │ │ ├── juce_IncludeBrowserPluginInfo.h │ │ │ ├── juce_NPAPI_GlueCode.cpp │ │ │ ├── juce_NPAPI_GlueCode.mm │ │ │ ├── juce_NPAPI_MacResource.r │ │ │ ├── juce_NPAPI_WinResource.rc │ │ │ └── npapi │ │ │ ├── ReadMe.txt │ │ │ ├── jni.h │ │ │ ├── jni_md.h │ │ │ ├── jri.h │ │ │ ├── jri_md.h │ │ │ ├── jritypes.h │ │ │ ├── npapi.h │ │ │ ├── npruntime.h │ │ │ ├── nptypes.h │ │ │ ├── npupp.h │ │ │ ├── obsolete │ │ │ └── protypes.h │ │ │ ├── prcpucfg.h │ │ │ └── prtypes.h │ ├── example projects │ │ ├── common │ │ │ ├── Main.cpp │ │ │ ├── MainComponent.cpp │ │ │ ├── MainComponent.h │ │ │ ├── includes.h │ │ │ ├── juce_AppConfig.h │ │ │ ├── juce_LibrarySource.cpp │ │ │ └── juce_LibrarySource.mm │ │ ├── example_project_for_Mac │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ ├── juce_application.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── version.plist │ │ ├── example_project_for_Win32 │ │ │ ├── juce_application.dsp │ │ │ ├── juce_application.dsw │ │ │ ├── juce_application.sln │ │ │ └── juce_application.vcproj │ │ └── readme.txt │ ├── fontserialiser │ │ ├── FontSerialiser.cpp │ │ ├── build │ │ │ └── linux │ │ │ │ ├── FontSerialiser.make │ │ │ │ ├── Makefile │ │ │ │ ├── fontserialiser_premake.lua │ │ │ │ └── runpremake │ │ ├── juce_AppConfig.h │ │ └── juce_LibrarySource.cpp │ ├── juce demo │ │ ├── build │ │ │ ├── iphone │ │ │ │ ├── JuceDemo-Info.plist │ │ │ │ └── JuceDemo.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── linux │ │ │ │ ├── JuceDemo.make │ │ │ │ ├── Makefile │ │ │ │ ├── jucedemo_premake.lua │ │ │ │ └── runpremake │ │ │ ├── macosx │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ ├── jucedemo.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── version.plist │ │ │ ├── win32_codeblocks │ │ │ │ └── JuceDemo.cbp │ │ │ ├── win32_vc6 │ │ │ │ ├── jucedemo.dsp │ │ │ │ └── jucedemo.dsw │ │ │ └── win32_vc8 │ │ │ │ ├── jucedemo.sln │ │ │ │ └── jucedemo.vcproj │ │ └── src │ │ │ ├── ApplicationStartup.cpp │ │ │ ├── BinaryData.cpp │ │ │ ├── BinaryData.h │ │ │ ├── MainDemoWindow.cpp │ │ │ ├── MainDemoWindow.h │ │ │ ├── binarydata │ │ │ ├── AudioDemo.cpp │ │ │ ├── CameraDemo.cpp │ │ │ ├── DragAndDropDemo.cpp │ │ │ ├── FontsAndTextDemo.cpp │ │ │ ├── InterprocessCommsDemo.cpp │ │ │ ├── OpenGLDemo.cpp │ │ │ ├── PathsAndTransformsDemo.cpp │ │ │ ├── QuickTimeDemo.cpp │ │ │ ├── README - what this directory is for.txt │ │ │ ├── TableDemo.cpp │ │ │ ├── ThreadingDemo.cpp │ │ │ ├── TreeViewDemo.cpp │ │ │ ├── WidgetsDemo.cpp │ │ │ ├── cello.wav │ │ │ ├── demo table data.xml │ │ │ ├── icons.zip │ │ │ ├── juce.png │ │ │ └── treedemo.xml │ │ │ ├── demos │ │ │ ├── AudioDemoLatencyPage.cpp │ │ │ ├── AudioDemoLatencyPage.h │ │ │ ├── AudioDemoPlaybackPage.cpp │ │ │ ├── AudioDemoPlaybackPage.h │ │ │ ├── AudioDemoRecordPage.cpp │ │ │ ├── AudioDemoRecordPage.h │ │ │ ├── AudioDemoSetupPage.cpp │ │ │ ├── AudioDemoSetupPage.h │ │ │ ├── AudioDemoSynthPage.cpp │ │ │ ├── AudioDemoSynthPage.h │ │ │ ├── AudioDemoTabComponent.cpp │ │ │ ├── AudioDemoTabComponent.h │ │ │ ├── CameraDemo.cpp │ │ │ ├── CodeEditorDemo.cpp │ │ │ ├── DragAndDropDemo.cpp │ │ │ ├── FontsAndTextDemo.cpp │ │ │ ├── InterprocessCommsDemo.cpp │ │ │ ├── OpenGLDemo.cpp │ │ │ ├── QuickTimeDemo.cpp │ │ │ ├── RenderingTestComponent.cpp │ │ │ ├── RenderingTestComponent.h │ │ │ ├── TableDemo.cpp │ │ │ ├── ThreadingDemo.cpp │ │ │ ├── TreeViewDemo.cpp │ │ │ ├── WebBrowserDemo.cpp │ │ │ └── WidgetsDemo.cpp │ │ │ ├── juce_AppConfig.h │ │ │ ├── juce_LibrarySource.cpp │ │ │ ├── juce_LibrarySource.mm │ │ │ └── jucedemo_headers.h │ └── the jucer │ │ ├── Jucer To Do list.txt │ │ ├── build │ │ ├── linux │ │ │ ├── Jucer.make │ │ │ ├── Makefile │ │ │ ├── jucer_premake.lua │ │ │ └── runpremake │ │ ├── mac │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ ├── Jucer.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── jucer_icon.icns │ │ │ └── version.plist │ │ ├── vc6 │ │ │ ├── Jucer.dsp │ │ │ ├── Jucer.dsw │ │ │ ├── jucer.rc │ │ │ └── jucer_icon.ico │ │ └── vc8 │ │ │ ├── jucer.rc │ │ │ ├── jucer.sln │ │ │ ├── jucer.vcproj │ │ │ └── jucer_icon.ico │ │ └── src │ │ ├── BinaryData.cpp │ │ ├── BinaryData.h │ │ ├── binarydata │ │ ├── jules.jpg │ │ ├── prefs_about.png │ │ ├── prefs_keys.png │ │ └── prefs_misc.png │ │ ├── juce_AppConfig.h │ │ ├── juce_LibrarySource.cpp │ │ ├── juce_LibrarySource.mm │ │ ├── jucer_Headers.h │ │ ├── jucer_Main.cpp │ │ ├── model │ │ ├── components │ │ │ ├── jucer_ButtonHandler.h │ │ │ ├── jucer_ComboBoxHandler.h │ │ │ ├── jucer_ComponentNameProperty.h │ │ │ ├── jucer_ComponentTypeHandler.cpp │ │ │ ├── jucer_ComponentTypeHandler.h │ │ │ ├── jucer_ComponentUndoableAction.h │ │ │ ├── jucer_GenericComponentHandler.h │ │ │ ├── jucer_GroupComponentHandler.h │ │ │ ├── jucer_HyperlinkButtonHandler.h │ │ │ ├── jucer_ImageButtonHandler.h │ │ │ ├── jucer_JucerComponentHandler.h │ │ │ ├── jucer_LabelHandler.h │ │ │ ├── jucer_SliderHandler.h │ │ │ ├── jucer_TabbedComponentHandler.h │ │ │ ├── jucer_TextButtonHandler.h │ │ │ ├── jucer_TextEditorHandler.h │ │ │ ├── jucer_ToggleButtonHandler.h │ │ │ ├── jucer_TreeViewHandler.h │ │ │ └── jucer_ViewportHandler.h │ │ ├── documents │ │ │ ├── jucer_ButtonDocument.cpp │ │ │ ├── jucer_ButtonDocument.h │ │ │ ├── jucer_ComponentDocument.cpp │ │ │ └── jucer_ComponentDocument.h │ │ ├── jucer_BinaryResources.cpp │ │ ├── jucer_BinaryResources.h │ │ ├── jucer_ComponentLayout.cpp │ │ ├── jucer_ComponentLayout.h │ │ ├── jucer_GeneratedCode.cpp │ │ ├── jucer_GeneratedCode.h │ │ ├── jucer_JucerDocument.cpp │ │ ├── jucer_JucerDocument.h │ │ ├── jucer_ObjectTypes.cpp │ │ ├── jucer_ObjectTypes.h │ │ ├── jucer_PaintRoutine.cpp │ │ ├── jucer_PaintRoutine.h │ │ └── paintelements │ │ │ ├── jucer_ColouredElement.cpp │ │ │ ├── jucer_ColouredElement.h │ │ │ ├── jucer_ElementSiblingComponent.h │ │ │ ├── jucer_FillType.cpp │ │ │ ├── jucer_FillType.h │ │ │ ├── jucer_GradientPointComponent.h │ │ │ ├── jucer_ImageResourceProperty.h │ │ │ ├── jucer_PaintElement.cpp │ │ │ ├── jucer_PaintElement.h │ │ │ ├── jucer_PaintElementEllipse.h │ │ │ ├── jucer_PaintElementGroup.h │ │ │ ├── jucer_PaintElementImage.h │ │ │ ├── jucer_PaintElementPath.cpp │ │ │ ├── jucer_PaintElementPath.h │ │ │ ├── jucer_PaintElementRectangle.h │ │ │ ├── jucer_PaintElementRoundedRectangle.h │ │ │ ├── jucer_PaintElementText.h │ │ │ ├── jucer_PaintElementUndoableAction.h │ │ │ ├── jucer_PointComponent.h │ │ │ ├── jucer_StrokeType.cpp │ │ │ └── jucer_StrokeType.h │ │ ├── properties │ │ ├── jucer_ColourPropertyComponent.h │ │ ├── jucer_ComponentBooleanProperty.h │ │ ├── jucer_ComponentChoiceProperty.h │ │ ├── jucer_ComponentColourProperty.h │ │ ├── jucer_ComponentTextProperty.h │ │ ├── jucer_FilePropertyComponent.cpp │ │ ├── jucer_FilePropertyComponent.h │ │ ├── jucer_FontPropertyComponent.cpp │ │ ├── jucer_FontPropertyComponent.h │ │ ├── jucer_JustificationProperty.h │ │ └── jucer_PositionPropertyBase.h │ │ ├── templates │ │ ├── jucer_ComponentTemplate.cpp │ │ └── jucer_ComponentTemplate.h │ │ ├── ui │ │ ├── jucer_CommandIDs.h │ │ ├── jucer_ComponentLayoutEditor.cpp │ │ ├── jucer_ComponentLayoutEditor.h │ │ ├── jucer_ComponentLayoutPanel.cpp │ │ ├── jucer_ComponentLayoutPanel.h │ │ ├── jucer_ComponentOverlayComponent.cpp │ │ ├── jucer_ComponentOverlayComponent.h │ │ ├── jucer_EditingPanelBase.cpp │ │ ├── jucer_EditingPanelBase.h │ │ ├── jucer_JucerDocumentHolder.cpp │ │ ├── jucer_JucerDocumentHolder.h │ │ ├── jucer_MainWindow.cpp │ │ ├── jucer_MainWindow.h │ │ ├── jucer_PaintRoutineEditor.cpp │ │ ├── jucer_PaintRoutineEditor.h │ │ ├── jucer_PaintRoutinePanel.cpp │ │ ├── jucer_PaintRoutinePanel.h │ │ ├── jucer_PrefsPanel.cpp │ │ ├── jucer_PrefsPanel.h │ │ ├── jucer_ResourceEditorPanel.cpp │ │ ├── jucer_ResourceEditorPanel.h │ │ ├── jucer_SnapGridPainter.cpp │ │ ├── jucer_SnapGridPainter.h │ │ ├── jucer_TestComponent.cpp │ │ └── jucer_TestComponent.h │ │ └── utility │ │ ├── jucer_ColourEditorComponent.h │ │ ├── jucer_Colours.h │ │ ├── jucer_StoredSettings.cpp │ │ ├── jucer_StoredSettings.h │ │ ├── jucer_UtilityFunctions.cpp │ │ └── jucer_UtilityFunctions.h ├── juce.h ├── juce_Config.h └── src │ ├── application │ ├── juce_Application.cpp │ ├── juce_Application.h │ ├── juce_ApplicationCommandID.h │ ├── juce_ApplicationCommandInfo.cpp │ ├── juce_ApplicationCommandInfo.h │ ├── juce_ApplicationCommandManager.cpp │ ├── juce_ApplicationCommandManager.h │ ├── juce_ApplicationCommandTarget.cpp │ ├── juce_ApplicationCommandTarget.h │ ├── juce_ApplicationProperties.cpp │ └── juce_ApplicationProperties.h │ ├── audio │ ├── audio_file_formats │ │ ├── flac │ │ │ ├── Flac Licence.txt │ │ │ ├── all.h │ │ │ ├── alloc.h │ │ │ ├── assert.h │ │ │ ├── callback.h │ │ │ ├── export.h │ │ │ ├── format.h │ │ │ ├── libFLAC │ │ │ │ ├── bitmath.c │ │ │ │ ├── bitreader.c │ │ │ │ ├── bitwriter.c │ │ │ │ ├── cpu.c │ │ │ │ ├── crc.c │ │ │ │ ├── fixed.c │ │ │ │ ├── float.c │ │ │ │ ├── format.c │ │ │ │ ├── include │ │ │ │ │ ├── private │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── bitmath.h │ │ │ │ │ │ ├── bitreader.h │ │ │ │ │ │ ├── bitwriter.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── crc.h │ │ │ │ │ │ ├── fixed.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── lpc.h │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ ├── stream_encoder_framing.h │ │ │ │ │ │ └── window.h │ │ │ │ │ └── protected │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ ├── juce_FlacHeader.h │ │ │ │ ├── lpc_flac.c │ │ │ │ ├── md5.c │ │ │ │ ├── memory.c │ │ │ │ ├── stream_decoder.c │ │ │ │ ├── stream_encoder.c │ │ │ │ ├── stream_encoder_framing.c │ │ │ │ └── window_flac.c │ │ │ ├── metadata.h │ │ │ ├── ordinals.h │ │ │ ├── stream_decoder.h │ │ │ └── stream_encoder.h │ │ ├── juce_AiffAudioFormat.cpp │ │ ├── juce_AiffAudioFormat.h │ │ ├── juce_AudioCDBurner.h │ │ ├── juce_AudioCDReader.cpp │ │ ├── juce_AudioCDReader.h │ │ ├── juce_AudioFormat.cpp │ │ ├── juce_AudioFormat.h │ │ ├── juce_AudioFormatManager.cpp │ │ ├── juce_AudioFormatManager.h │ │ ├── juce_AudioFormatReader.h │ │ ├── juce_AudioFormatWriter.h │ │ ├── juce_AudioSubsectionReader.cpp │ │ ├── juce_AudioSubsectionReader.h │ │ ├── juce_AudioThumbnail.cpp │ │ ├── juce_AudioThumbnail.h │ │ ├── juce_AudioThumbnailCache.cpp │ │ ├── juce_AudioThumbnailCache.h │ │ ├── juce_FlacAudioFormat.cpp │ │ ├── juce_FlacAudioFormat.h │ │ ├── juce_OggVorbisAudioFormat.cpp │ │ ├── juce_OggVorbisAudioFormat.h │ │ ├── juce_QuickTimeAudioFormat.cpp │ │ ├── juce_QuickTimeAudioFormat.h │ │ ├── juce_WavAudioFormat.cpp │ │ ├── juce_WavAudioFormat.h │ │ └── oggvorbis │ │ │ ├── Ogg Vorbis Licence.txt │ │ │ ├── bitwise.c │ │ │ ├── codec.h │ │ │ ├── config_types.h │ │ │ ├── framing.c │ │ │ ├── juce_OggVorbisHeader.h │ │ │ ├── libvorbis-1.1.2 │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── README │ │ │ └── lib │ │ │ │ ├── analysis.c │ │ │ │ ├── backends.h │ │ │ │ ├── bitrate.c │ │ │ │ ├── bitrate.h │ │ │ │ ├── block.c │ │ │ │ ├── books │ │ │ │ ├── coupled │ │ │ │ │ └── res_books_stereo.h │ │ │ │ ├── floor │ │ │ │ │ └── floor_books.h │ │ │ │ └── uncoupled │ │ │ │ │ └── res_books_uncoupled.h │ │ │ │ ├── codebook.c │ │ │ │ ├── codebook.h │ │ │ │ ├── codec_internal.h │ │ │ │ ├── envelope.c │ │ │ │ ├── envelope.h │ │ │ │ ├── floor0.c │ │ │ │ ├── floor1.c │ │ │ │ ├── highlevel.h │ │ │ │ ├── info.c │ │ │ │ ├── lookup.c │ │ │ │ ├── lookup.h │ │ │ │ ├── lookup_data.h │ │ │ │ ├── lookups.pl │ │ │ │ ├── lpc.c │ │ │ │ ├── lpc.h │ │ │ │ ├── lsp.c │ │ │ │ ├── lsp.h │ │ │ │ ├── mapping0.c │ │ │ │ ├── masking.h │ │ │ │ ├── mdct.c │ │ │ │ ├── mdct.h │ │ │ │ ├── misc.h │ │ │ │ ├── modes │ │ │ │ ├── floor_all.h │ │ │ │ ├── psych_11.h │ │ │ │ ├── psych_16.h │ │ │ │ ├── psych_44.h │ │ │ │ ├── psych_8.h │ │ │ │ ├── residue_16.h │ │ │ │ ├── residue_44.h │ │ │ │ ├── residue_44u.h │ │ │ │ ├── residue_8.h │ │ │ │ ├── setup_11.h │ │ │ │ ├── setup_16.h │ │ │ │ ├── setup_22.h │ │ │ │ ├── setup_32.h │ │ │ │ ├── setup_44.h │ │ │ │ ├── setup_44u.h │ │ │ │ ├── setup_8.h │ │ │ │ └── setup_X.h │ │ │ │ ├── os.h │ │ │ │ ├── psy.c │ │ │ │ ├── psy.h │ │ │ │ ├── registry.c │ │ │ │ ├── registry.h │ │ │ │ ├── res0.c │ │ │ │ ├── scales.h │ │ │ │ ├── sharedbook.c │ │ │ │ ├── smallft.c │ │ │ │ ├── smallft.h │ │ │ │ ├── synthesis.c │ │ │ │ ├── vorbisenc.c │ │ │ │ ├── vorbisfile.c │ │ │ │ ├── window.c │ │ │ │ └── window.h │ │ │ ├── ogg.h │ │ │ ├── os_types.h │ │ │ ├── vorbisenc.h │ │ │ └── vorbisfile.h │ ├── audio_sources │ │ ├── juce_AudioFormatReaderSource.cpp │ │ ├── juce_AudioFormatReaderSource.h │ │ ├── juce_AudioSource.h │ │ ├── juce_AudioSourcePlayer.cpp │ │ ├── juce_AudioSourcePlayer.h │ │ ├── juce_AudioTransportSource.cpp │ │ ├── juce_AudioTransportSource.h │ │ ├── juce_BufferingAudioSource.cpp │ │ ├── juce_BufferingAudioSource.h │ │ ├── juce_ChannelRemappingAudioSource.cpp │ │ ├── juce_ChannelRemappingAudioSource.h │ │ ├── juce_IIRFilterAudioSource.cpp │ │ ├── juce_IIRFilterAudioSource.h │ │ ├── juce_MixerAudioSource.cpp │ │ ├── juce_MixerAudioSource.h │ │ ├── juce_PositionableAudioSource.h │ │ ├── juce_PositionableMixerAudioSource.cpp │ │ ├── juce_PositionableMixerAudioSource.h │ │ ├── juce_PositionableResamplingAudioSource.cpp │ │ ├── juce_PositionableResamplingAudioSource.h │ │ ├── juce_ResamplingAudioSource.cpp │ │ ├── juce_ResamplingAudioSource.h │ │ ├── juce_SequenceAudioSource.cpp │ │ ├── juce_SequenceAudioSource.h │ │ ├── juce_ToneGeneratorAudioSource.cpp │ │ └── juce_ToneGeneratorAudioSource.h │ ├── devices │ │ ├── juce_AudioDeviceManager.cpp │ │ ├── juce_AudioDeviceManager.h │ │ ├── juce_AudioIODevice.cpp │ │ ├── juce_AudioIODevice.h │ │ ├── juce_AudioIODeviceType.cpp │ │ ├── juce_AudioIODeviceType.h │ │ ├── juce_MidiInput.h │ │ ├── juce_MidiOutput.cpp │ │ └── juce_MidiOutput.h │ ├── dsp │ │ ├── juce_AudioDataConverters.cpp │ │ ├── juce_AudioDataConverters.h │ │ ├── juce_AudioSampleBuffer.cpp │ │ ├── juce_AudioSampleBuffer.h │ │ ├── juce_IIRFilter.cpp │ │ └── juce_IIRFilter.h │ ├── midi │ │ ├── juce_MidiBuffer.cpp │ │ ├── juce_MidiBuffer.h │ │ ├── juce_MidiFile.cpp │ │ ├── juce_MidiFile.h │ │ ├── juce_MidiKeyboardState.cpp │ │ ├── juce_MidiKeyboardState.h │ │ ├── juce_MidiMessage.cpp │ │ ├── juce_MidiMessage.h │ │ ├── juce_MidiMessageCollector.cpp │ │ ├── juce_MidiMessageCollector.h │ │ ├── juce_MidiMessageSequence.cpp │ │ └── juce_MidiMessageSequence.h │ ├── plugins │ │ ├── formats │ │ │ ├── juce_AudioUnitPluginFormat.h │ │ │ ├── juce_AudioUnitPluginFormat.mm │ │ │ ├── juce_DirectXPluginFormat.h │ │ │ ├── juce_LADSPAPluginFormat.cpp │ │ │ ├── juce_LADSPAPluginFormat.h │ │ │ ├── juce_VSTMidiEventList.h │ │ │ ├── juce_VSTPluginFormat.cpp │ │ │ ├── juce_VSTPluginFormat.h │ │ │ └── juce_VSTPluginFormat.mm │ │ ├── juce_AudioPluginFormat.cpp │ │ ├── juce_AudioPluginFormat.h │ │ ├── juce_AudioPluginFormatManager.cpp │ │ ├── juce_AudioPluginFormatManager.h │ │ ├── juce_AudioPluginInstance.cpp │ │ ├── juce_AudioPluginInstance.h │ │ ├── juce_KnownPluginList.cpp │ │ ├── juce_KnownPluginList.h │ │ ├── juce_PluginDescription.cpp │ │ ├── juce_PluginDescription.h │ │ ├── juce_PluginDirectoryScanner.cpp │ │ ├── juce_PluginDirectoryScanner.h │ │ ├── juce_PluginListComponent.cpp │ │ └── juce_PluginListComponent.h │ ├── processors │ │ ├── juce_AudioPlayHead.h │ │ ├── juce_AudioProcessor.cpp │ │ ├── juce_AudioProcessor.h │ │ ├── juce_AudioProcessorEditor.cpp │ │ ├── juce_AudioProcessorEditor.h │ │ ├── juce_AudioProcessorGraph.cpp │ │ ├── juce_AudioProcessorGraph.h │ │ ├── juce_AudioProcessorListener.h │ │ ├── juce_AudioProcessorPlayer.cpp │ │ ├── juce_AudioProcessorPlayer.h │ │ ├── juce_GenericAudioProcessorEditor.cpp │ │ └── juce_GenericAudioProcessorEditor.h │ └── synthesisers │ │ ├── juce_Sampler.cpp │ │ ├── juce_Sampler.h │ │ ├── juce_Synthesiser.cpp │ │ └── juce_Synthesiser.h │ ├── containers │ ├── juce_Array.h │ ├── juce_ArrayAllocationBase.h │ ├── juce_BitArray.cpp │ ├── juce_BitArray.h │ ├── juce_ElementComparator.h │ ├── juce_HeapBlock.h │ ├── juce_MemoryBlock.cpp │ ├── juce_MemoryBlock.h │ ├── juce_OwnedArray.h │ ├── juce_PropertySet.cpp │ ├── juce_PropertySet.h │ ├── juce_ReferenceCountedArray.h │ ├── juce_ReferenceCountedObject.h │ ├── juce_ScopedPointer.h │ ├── juce_SortedSet.h │ ├── juce_SparseSet.h │ ├── juce_Value.cpp │ ├── juce_Value.h │ ├── juce_ValueTree.cpp │ ├── juce_ValueTree.h │ ├── juce_Variant.cpp │ ├── juce_Variant.h │ └── juce_VoidArray.h │ ├── core │ ├── juce_Atomic.h │ ├── juce_ByteOrder.h │ ├── juce_FileLogger.cpp │ ├── juce_FileLogger.h │ ├── juce_Initialisation.h │ ├── juce_Logger.cpp │ ├── juce_Logger.h │ ├── juce_MathsFunctions.h │ ├── juce_Memory.h │ ├── juce_PerformanceCounter.cpp │ ├── juce_PerformanceCounter.h │ ├── juce_PlatformDefs.h │ ├── juce_PlatformUtilities.h │ ├── juce_Random.cpp │ ├── juce_Random.h │ ├── juce_RelativeTime.cpp │ ├── juce_RelativeTime.h │ ├── juce_Singleton.h │ ├── juce_StandardHeader.h │ ├── juce_SystemStats.cpp │ ├── juce_SystemStats.h │ ├── juce_TargetPlatform.h │ ├── juce_Time.cpp │ ├── juce_Time.h │ ├── juce_Uuid.cpp │ └── juce_Uuid.h │ ├── cryptography │ ├── juce_BlowFish.cpp │ ├── juce_BlowFish.h │ ├── juce_MD5.cpp │ ├── juce_MD5.h │ ├── juce_Primes.cpp │ ├── juce_Primes.h │ ├── juce_RSAKey.cpp │ └── juce_RSAKey.h │ ├── events │ ├── juce_ActionBroadcaster.cpp │ ├── juce_ActionBroadcaster.h │ ├── juce_ActionListener.h │ ├── juce_ActionListenerList.cpp │ ├── juce_ActionListenerList.h │ ├── juce_AsyncUpdater.cpp │ ├── juce_AsyncUpdater.h │ ├── juce_CallbackMessage.h │ ├── juce_ChangeBroadcaster.cpp │ ├── juce_ChangeBroadcaster.h │ ├── juce_ChangeListener.h │ ├── juce_ChangeListenerList.cpp │ ├── juce_ChangeListenerList.h │ ├── juce_InterprocessConnection.cpp │ ├── juce_InterprocessConnection.h │ ├── juce_InterprocessConnectionServer.cpp │ ├── juce_InterprocessConnectionServer.h │ ├── juce_Message.cpp │ ├── juce_Message.h │ ├── juce_MessageListener.cpp │ ├── juce_MessageListener.h │ ├── juce_MessageManager.cpp │ ├── juce_MessageManager.h │ ├── juce_MultiTimer.cpp │ ├── juce_MultiTimer.h │ ├── juce_Timer.cpp │ └── juce_Timer.h │ ├── extended │ ├── audio │ │ ├── beat │ │ │ ├── jucetice_BeatDetector.cpp │ │ │ └── jucetice_BeatDetector.h │ │ ├── fft │ │ │ ├── jucetice_FFTWrapper.cpp │ │ │ └── jucetice_FFTWrapper.h │ │ ├── formats │ │ │ ├── jucetice_MADAudioFormat.cpp │ │ │ ├── jucetice_MADAudioFormat.h │ │ │ ├── jucetice_MPCAudioFormat.cpp │ │ │ └── jucetice_MPCAudioFormat.h │ │ ├── lash │ │ │ ├── jucetice_LashManager.cpp │ │ │ └── jucetice_LashManager.h │ │ ├── midi │ │ │ ├── jucetice_MidiAutomatorManager.cpp │ │ │ ├── jucetice_MidiAutomatorManager.h │ │ │ ├── jucetice_MidiFilter.cpp │ │ │ ├── jucetice_MidiFilter.h │ │ │ ├── jucetice_MidiManipulator.cpp │ │ │ ├── jucetice_MidiManipulator.h │ │ │ ├── jucetice_MidiTransform.cpp │ │ │ ├── jucetice_MidiTransform.h │ │ │ ├── jucetice_TuningMap.cpp │ │ │ └── jucetice_TuningMap.h │ │ ├── osc │ │ │ ├── jucetice_OpenSoundBase.h │ │ │ ├── jucetice_OpenSoundBundle.cpp │ │ │ ├── jucetice_OpenSoundBundle.h │ │ │ ├── jucetice_OpenSoundController.cpp │ │ │ ├── jucetice_OpenSoundController.h │ │ │ ├── jucetice_OpenSoundMessage.cpp │ │ │ ├── jucetice_OpenSoundMessage.h │ │ │ ├── jucetice_OpenSoundTimeTag.cpp │ │ │ ├── jucetice_OpenSoundTimeTag.h │ │ │ ├── jucetice_UDPSocket.cpp │ │ │ └── jucetice_UDPSocket.h │ │ └── processors │ │ │ ├── jucetice_AudioSourceProcessor.cpp │ │ │ └── jucetice_AudioSourceProcessor.h │ ├── containers │ │ ├── jucetice_CircularBuffer.h │ │ ├── jucetice_Hash.h │ │ ├── jucetice_LockFreeFifo.h │ │ ├── jucetice_LookupTable.h │ │ ├── jucetice_OwnedHash.h │ │ └── jucetice_SharedPointer.h │ ├── controls │ │ ├── coordinate │ │ │ ├── jucetice_CoordinateSystem.cpp │ │ │ ├── jucetice_CoordinateSystem.h │ │ │ ├── jucetice_CoordinateSystemDemoContentComponent.cpp │ │ │ ├── jucetice_CoordinateSystemDemoContentComponent.h │ │ │ ├── jucetice_CoordinateSystemDemoMain.cpp │ │ │ ├── jucetice_CoordinateSystemRange.cpp │ │ │ ├── jucetice_CoordinateSystemRange.h │ │ │ ├── jucetice_HelperFunctions.cpp │ │ │ ├── jucetice_HelperFunctions.h │ │ │ ├── jucetice_StringTools.cpp │ │ │ ├── jucetice_StringTools.h │ │ │ ├── jucetice_SymbolButton.cpp │ │ │ └── jucetice_SymbolButton.h │ │ ├── graph │ │ │ ├── jucetice_GraphConnectorComponent.cpp │ │ │ ├── jucetice_GraphConnectorComponent.h │ │ │ ├── jucetice_GraphLinkComponent.cpp │ │ │ ├── jucetice_GraphLinkComponent.h │ │ │ ├── jucetice_GraphNodeComponent.cpp │ │ │ ├── jucetice_GraphNodeComponent.h │ │ │ └── jucetice_GraphNodeListener.h │ │ ├── grid │ │ │ ├── jucetice_PianoGrid.cpp │ │ │ ├── jucetice_PianoGrid.h │ │ │ ├── jucetice_PianoGridHeader.cpp │ │ │ ├── jucetice_PianoGridHeader.h │ │ │ ├── jucetice_PianoGridIndicator.cpp │ │ │ ├── jucetice_PianoGridIndicator.h │ │ │ ├── jucetice_PianoGridKeyboard.cpp │ │ │ ├── jucetice_PianoGridKeyboard.h │ │ │ ├── jucetice_PianoGridNote.cpp │ │ │ └── jucetice_PianoGridNote.h │ │ ├── jucetice_AudioScopeComponent.h │ │ ├── jucetice_ImageKnob.cpp │ │ ├── jucetice_ImageKnob.h │ │ ├── jucetice_ImageSlider.cpp │ │ ├── jucetice_ImageSlider.h │ │ ├── jucetice_Joystick.cpp │ │ ├── jucetice_Joystick.h │ │ ├── jucetice_ParameterComboBox.h │ │ ├── jucetice_ParameterJoystick.h │ │ ├── jucetice_ParameterLedButton.h │ │ ├── jucetice_ParameterSlider.h │ │ ├── jucetice_ParameterToggleButton.h │ │ ├── jucetice_SpectrumAnalyzer.cpp │ │ ├── jucetice_SpectrumAnalyzer.h │ │ ├── layout │ │ │ ├── jucetice_ComponentLayoutEditor.cpp │ │ │ ├── jucetice_ComponentLayoutEditor.h │ │ │ ├── jucetice_Dock.cpp │ │ │ ├── jucetice_Dock.h │ │ │ ├── jucetice_ViewportNavigator.cpp │ │ │ └── jucetice_ViewportNavigator.h │ │ ├── meter │ │ │ ├── jucetice_DecibelScale.cpp │ │ │ ├── jucetice_DecibelScale.h │ │ │ ├── jucetice_HighQualityMeter.cpp │ │ │ ├── jucetice_HighQualityMeter.h │ │ │ ├── jucetice_MeterComponent.cpp │ │ │ └── jucetice_MeterComponent.h │ │ ├── pads │ │ │ ├── jucetice_DrawablePad.cpp │ │ │ ├── jucetice_DrawablePad.h │ │ │ ├── jucetice_MidiPad.cpp │ │ │ └── jucetice_MidiPad.h │ │ ├── player │ │ │ ├── jucetice_DigitalDisplayComponent.cpp │ │ │ ├── jucetice_DigitalDisplayComponent.h │ │ │ ├── jucetice_PlayerComponent.cpp │ │ │ └── jucetice_PlayerComponent.h │ │ └── selector │ │ │ └── jucetice_PresetSelectorComponent.h │ ├── database │ │ ├── jucetice_Sqlite.cpp │ │ └── jucetice_Sqlite.h │ ├── dependancies │ │ ├── angelscript │ │ │ ├── include │ │ │ │ └── angelscript.h │ │ │ └── source │ │ │ │ ├── as_array.h │ │ │ │ ├── as_arrayobject.cpp │ │ │ │ ├── as_arrayobject.h │ │ │ │ ├── as_atomic.cpp │ │ │ │ ├── as_atomic.h │ │ │ │ ├── as_builder.cpp │ │ │ │ ├── as_builder.h │ │ │ │ ├── as_bytecode.cpp │ │ │ │ ├── as_bytecode.h │ │ │ │ ├── as_bytecodedef.h │ │ │ │ ├── as_callfunc.cpp │ │ │ │ ├── as_callfunc.h │ │ │ │ ├── as_callfunc_arm.cpp │ │ │ │ ├── as_callfunc_armasm.asm │ │ │ │ ├── as_callfunc_mips.cpp │ │ │ │ ├── as_callfunc_ppc.cpp │ │ │ │ ├── as_callfunc_ppc_64.cpp │ │ │ │ ├── as_callfunc_sh4.cpp │ │ │ │ ├── as_callfunc_x64_gcc.cpp │ │ │ │ ├── as_callfunc_x86.cpp │ │ │ │ ├── as_callfunc_xenon.cpp │ │ │ │ ├── as_compiler.cpp │ │ │ │ ├── as_compiler.h │ │ │ │ ├── as_config.h │ │ │ │ ├── as_configgroup.cpp │ │ │ │ ├── as_configgroup.h │ │ │ │ ├── as_context.cpp │ │ │ │ ├── as_context.h │ │ │ │ ├── as_criticalsection.h │ │ │ │ ├── as_datatype.cpp │ │ │ │ ├── as_datatype.h │ │ │ │ ├── as_debug.h │ │ │ │ ├── as_gc.cpp │ │ │ │ ├── as_gc.h │ │ │ │ ├── as_generic.cpp │ │ │ │ ├── as_generic.h │ │ │ │ ├── as_map.h │ │ │ │ ├── as_memory.cpp │ │ │ │ ├── as_memory.h │ │ │ │ ├── as_module.cpp │ │ │ │ ├── as_module.h │ │ │ │ ├── as_objecttype.cpp │ │ │ │ ├── as_objecttype.h │ │ │ │ ├── as_outputbuffer.cpp │ │ │ │ ├── as_outputbuffer.h │ │ │ │ ├── as_parser.cpp │ │ │ │ ├── as_parser.h │ │ │ │ ├── as_property.h │ │ │ │ ├── as_restore.cpp │ │ │ │ ├── as_restore.h │ │ │ │ ├── as_scriptcode.cpp │ │ │ │ ├── as_scriptcode.h │ │ │ │ ├── as_scriptengine.cpp │ │ │ │ ├── as_scriptengine.h │ │ │ │ ├── as_scriptfunction.cpp │ │ │ │ ├── as_scriptfunction.h │ │ │ │ ├── as_scriptnode.cpp │ │ │ │ ├── as_scriptnode.h │ │ │ │ ├── as_scriptstruct.cpp │ │ │ │ ├── as_scriptstruct.h │ │ │ │ ├── as_string.cpp │ │ │ │ ├── as_string.h │ │ │ │ ├── as_string_util.cpp │ │ │ │ ├── as_string_util.h │ │ │ │ ├── as_texts.h │ │ │ │ ├── as_thread.cpp │ │ │ │ ├── as_thread.h │ │ │ │ ├── as_tokendef.h │ │ │ │ ├── as_tokenizer.cpp │ │ │ │ ├── as_tokenizer.h │ │ │ │ ├── as_typeinfo.cpp │ │ │ │ ├── as_typeinfo.h │ │ │ │ ├── as_variablescope.cpp │ │ │ │ └── as_variablescope.h │ │ ├── cpptest │ │ │ ├── collectoroutput.cpp │ │ │ ├── compileroutput.cpp │ │ │ ├── cpptest-assert.h │ │ │ ├── cpptest-collectoroutput.h │ │ │ ├── cpptest-compileroutput.h │ │ │ ├── cpptest-htmloutput.h │ │ │ ├── cpptest-output.h │ │ │ ├── cpptest-source.h │ │ │ ├── cpptest-suite.h │ │ │ ├── cpptest-textoutput.h │ │ │ ├── cpptest-time.h │ │ │ ├── cpptest.h │ │ │ ├── htmloutput.cpp │ │ │ ├── missing.cpp │ │ │ ├── missing.h │ │ │ ├── source.cpp │ │ │ ├── suite.cpp │ │ │ ├── textoutput.cpp │ │ │ ├── time.cpp │ │ │ ├── utils.cpp │ │ │ └── utils.h │ │ ├── curl │ │ │ ├── include │ │ │ │ └── curl │ │ │ │ │ ├── curl.h │ │ │ │ │ ├── curlbuild.h │ │ │ │ │ ├── curlrules.h │ │ │ │ │ ├── curlver.h │ │ │ │ │ ├── easy.h │ │ │ │ │ ├── mprintf.h │ │ │ │ │ ├── multi.h │ │ │ │ │ ├── stdcheaders.h │ │ │ │ │ ├── typecheck-gcc.h │ │ │ │ │ └── types.h │ │ │ └── lib │ │ │ │ ├── amigaos.c │ │ │ │ ├── amigaos.h │ │ │ │ ├── arpa_telnet.h │ │ │ │ ├── base64.c │ │ │ │ ├── config-amigaos.h │ │ │ │ ├── config-mac.h │ │ │ │ ├── config-os400.h │ │ │ │ ├── config-riscos.h │ │ │ │ ├── config-symbian.h │ │ │ │ ├── config-tpf.h │ │ │ │ ├── config-win32.h │ │ │ │ ├── config-win32ce.h │ │ │ │ ├── config.h │ │ │ │ ├── connect.c │ │ │ │ ├── connect.h │ │ │ │ ├── content_encoding.c │ │ │ │ ├── content_encoding.h │ │ │ │ ├── cookie.c │ │ │ │ ├── cookie.h │ │ │ │ ├── curl_addrinfo.c │ │ │ │ ├── curl_addrinfo.h │ │ │ │ ├── curl_base64.h │ │ │ │ ├── curl_ldap.h │ │ │ │ ├── curl_md5.h │ │ │ │ ├── curl_sspi.c │ │ │ │ ├── curl_sspi.h │ │ │ │ ├── curlx.h │ │ │ │ ├── dict.c │ │ │ │ ├── dict.h │ │ │ │ ├── easy.c │ │ │ │ ├── easyif.h │ │ │ │ ├── escape.c │ │ │ │ ├── escape.h │ │ │ │ ├── file.c │ │ │ │ ├── file.h │ │ │ │ ├── formdata.c │ │ │ │ ├── formdata.h │ │ │ │ ├── ftp.c │ │ │ │ ├── ftp.h │ │ │ │ ├── getenv.c │ │ │ │ ├── getinfo.c │ │ │ │ ├── getinfo.h │ │ │ │ ├── gtls.c │ │ │ │ ├── gtls.h │ │ │ │ ├── hash.c │ │ │ │ ├── hash.h │ │ │ │ ├── hostares.c │ │ │ │ ├── hostasyn.c │ │ │ │ ├── hostip.c │ │ │ │ ├── hostip.h │ │ │ │ ├── hostip4.c │ │ │ │ ├── hostip6.c │ │ │ │ ├── hostsyn.c │ │ │ │ ├── hostthre.c │ │ │ │ ├── http.c │ │ │ │ ├── http.h │ │ │ │ ├── http_chunks.c │ │ │ │ ├── http_chunks.h │ │ │ │ ├── http_digest.c │ │ │ │ ├── http_digest.h │ │ │ │ ├── http_negotiate.c │ │ │ │ ├── http_negotiate.h │ │ │ │ ├── http_ntlm.c │ │ │ │ ├── http_ntlm.h │ │ │ │ ├── if2ip.c │ │ │ │ ├── if2ip.h │ │ │ │ ├── inet_ntop.c │ │ │ │ ├── inet_ntop.h │ │ │ │ ├── inet_pton.c │ │ │ │ ├── inet_pton.h │ │ │ │ ├── krb4.c │ │ │ │ ├── krb4.h │ │ │ │ ├── krb5.c │ │ │ │ ├── ldap.c │ │ │ │ ├── llist.c │ │ │ │ ├── llist.h │ │ │ │ ├── md5.c │ │ │ │ ├── memdebug.c │ │ │ │ ├── memdebug.h │ │ │ │ ├── memory.h │ │ │ │ ├── mprintf.c │ │ │ │ ├── multi.c │ │ │ │ ├── multiif.h │ │ │ │ ├── netrc.c │ │ │ │ ├── netrc.h │ │ │ │ ├── nss.c │ │ │ │ ├── nssg.h │ │ │ │ ├── nwlib.c │ │ │ │ ├── nwos.c │ │ │ │ ├── parsedate.c │ │ │ │ ├── parsedate.h │ │ │ │ ├── progress.c │ │ │ │ ├── progress.h │ │ │ │ ├── qssl.c │ │ │ │ ├── qssl.h │ │ │ │ ├── rawstr.c │ │ │ │ ├── rawstr.h │ │ │ │ ├── security.c │ │ │ │ ├── select.c │ │ │ │ ├── select.h │ │ │ │ ├── sendf.c │ │ │ │ ├── sendf.h │ │ │ │ ├── setup-os400.h │ │ │ │ ├── setup.h │ │ │ │ ├── setup_once.h │ │ │ │ ├── share.c │ │ │ │ ├── share.h │ │ │ │ ├── sockaddr.h │ │ │ │ ├── socks.c │ │ │ │ ├── socks.h │ │ │ │ ├── socks_gssapi.c │ │ │ │ ├── socks_sspi.c │ │ │ │ ├── speedcheck.c │ │ │ │ ├── speedcheck.h │ │ │ │ ├── splay.c │ │ │ │ ├── splay.h │ │ │ │ ├── ssh.c │ │ │ │ ├── ssh.h │ │ │ │ ├── sslgen.c │ │ │ │ ├── sslgen.h │ │ │ │ ├── ssluse.c │ │ │ │ ├── ssluse.h │ │ │ │ ├── strdup.c │ │ │ │ ├── strdup.h │ │ │ │ ├── strequal.c │ │ │ │ ├── strequal.h │ │ │ │ ├── strerror.c │ │ │ │ ├── strerror.h │ │ │ │ ├── strtok.c │ │ │ │ ├── strtok.h │ │ │ │ ├── strtoofft.c │ │ │ │ ├── strtoofft.h │ │ │ │ ├── telnet.c │ │ │ │ ├── telnet.h │ │ │ │ ├── tftp.c │ │ │ │ ├── tftp.h │ │ │ │ ├── timeval.c │ │ │ │ ├── timeval.h │ │ │ │ ├── transfer.c │ │ │ │ ├── transfer.h │ │ │ │ ├── url.c │ │ │ │ ├── url.h │ │ │ │ ├── urldata.h │ │ │ │ └── version.c │ │ ├── dssi-1.0.0 │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── aclocal.m4 │ │ │ ├── autogen.sh │ │ │ ├── config.guess │ │ │ ├── config.h.in │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── depcomp │ │ │ ├── doc │ │ │ │ ├── RFC.html │ │ │ │ ├── RFC.txt │ │ │ │ ├── TODO │ │ │ │ ├── dssi_osc_send.1 │ │ │ │ ├── dssi_osc_update.1 │ │ │ │ ├── jack-dssi-host.1 │ │ │ │ ├── midi-controllers.txt │ │ │ │ ├── why-use.html │ │ │ │ └── why-use.txt │ │ │ ├── dssi.pc.in │ │ │ ├── dssi │ │ │ │ └── dssi.h │ │ │ ├── examples │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── dssi_osc_send.c │ │ │ │ ├── dssi_osc_update.c │ │ │ │ ├── karplong.cpp │ │ │ │ ├── less_trivial_synth.c │ │ │ │ ├── less_trivial_synth_qt_gui.cpp │ │ │ │ ├── less_trivial_synth_qt_gui.h │ │ │ │ ├── saw.h │ │ │ │ ├── trivial_sampler.c │ │ │ │ ├── trivial_sampler.h │ │ │ │ ├── trivial_sampler_qt_gui.cpp │ │ │ │ ├── trivial_sampler_qt_gui.h │ │ │ │ └── trivial_synth.c │ │ │ ├── install-sh │ │ │ ├── jack-dssi-host │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── jack-dssi-host.c │ │ │ │ └── jack-dssi-host.h │ │ │ ├── ltmain.sh │ │ │ ├── message_buffer │ │ │ │ ├── message_buffer.c │ │ │ │ └── message_buffer.h │ │ │ ├── missing │ │ │ ├── scripts │ │ │ │ ├── tableofcontents.pl │ │ │ │ └── txt2html.pl │ │ │ └── tests │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── controller.c │ │ ├── gwc │ │ │ ├── chbevl.c │ │ │ ├── denoise_lib.c │ │ │ ├── gwc_lib.h │ │ │ ├── i0.c │ │ │ ├── i1.c │ │ │ └── mconf.h │ │ ├── kissfft │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── kiss_fft.c │ │ │ ├── kiss_fft.h │ │ │ ├── kiss_fftr.c │ │ │ └── kiss_fftr.h │ │ ├── ladspa_sdk │ │ │ ├── README │ │ │ ├── doc │ │ │ │ ├── COPYING │ │ │ │ ├── background.html │ │ │ │ ├── changes.html │ │ │ │ ├── download.html │ │ │ │ ├── example_plugins.html │ │ │ │ ├── index.html │ │ │ │ ├── installation.html │ │ │ │ ├── ladspa.h.txt │ │ │ │ ├── license.html │ │ │ │ ├── overview.html │ │ │ │ ├── shared_plugins.html │ │ │ │ └── unique_ids.html │ │ │ ├── snd │ │ │ │ └── noise.wav │ │ │ └── src │ │ │ │ ├── analyseplugin.c │ │ │ │ ├── applyplugin.c │ │ │ │ ├── default.c │ │ │ │ ├── ladspa.h │ │ │ │ ├── listplugins.c │ │ │ │ ├── load.c │ │ │ │ ├── makefile │ │ │ │ ├── plugins │ │ │ │ ├── amp.c │ │ │ │ ├── delay.c │ │ │ │ ├── filter.c │ │ │ │ ├── noise.c │ │ │ │ └── sine.cpp │ │ │ │ ├── search.c │ │ │ │ └── utils.h │ │ ├── libdssialsacompat-1.0.8a │ │ │ ├── COPYING │ │ │ ├── INSTALL │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── aclocal.m4 │ │ │ ├── alsa │ │ │ │ ├── asoundef.h │ │ │ │ ├── asoundlib.h │ │ │ │ ├── seq.h │ │ │ │ ├── seq_event.h │ │ │ │ ├── seq_midi_event.h │ │ │ │ └── sound │ │ │ │ │ └── asequencer.h │ │ │ ├── autogen.sh │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── depcomp │ │ │ ├── dssi_alsa_compat.c │ │ │ ├── install-sh │ │ │ ├── libdssialsacompat.pc.in │ │ │ ├── ltmain.sh │ │ │ ├── missing │ │ │ └── mkinstalldirs │ │ ├── libsamplerate │ │ │ ├── common.h │ │ │ ├── config.h │ │ │ ├── fastest_coeffs.h │ │ │ ├── float_cast.h │ │ │ ├── high_qual_coeffs.h │ │ │ ├── mid_qual_coeffs.h │ │ │ ├── samplerate.c │ │ │ ├── samplerate.h │ │ │ ├── src_linear.c │ │ │ ├── src_sinc.c │ │ │ └── src_zoh.c │ │ ├── mad │ │ │ ├── D.dat │ │ │ ├── bit.c │ │ │ ├── bit.h │ │ │ ├── config.h │ │ │ ├── decoder.c │ │ │ ├── decoder.h │ │ │ ├── fixed.c │ │ │ ├── fixed.h │ │ │ ├── frame.c │ │ │ ├── frame.h │ │ │ ├── global.h │ │ │ ├── huffman.c │ │ │ ├── huffman.h │ │ │ ├── imdct_l_arm.S │ │ │ ├── imdct_s.dat │ │ │ ├── layer12.c │ │ │ ├── layer12.h │ │ │ ├── layer3.c │ │ │ ├── layer3.h │ │ │ ├── mad.h │ │ │ ├── minimad.c │ │ │ ├── qc_table.dat │ │ │ ├── rq_table.dat │ │ │ ├── sf_table.dat │ │ │ ├── stream.c │ │ │ ├── stream.h │ │ │ ├── synth.c │ │ │ ├── synth.h │ │ │ ├── timer.c │ │ │ ├── timer.h │ │ │ ├── version.c │ │ │ └── version.h │ │ ├── mpc │ │ │ ├── common │ │ │ │ ├── crc32.c │ │ │ │ ├── fastmath.c │ │ │ │ └── huffman-bcl.c │ │ │ ├── include │ │ │ │ └── mpc │ │ │ │ │ ├── datatypes.h │ │ │ │ │ ├── minimax.h │ │ │ │ │ ├── mpc_types.h │ │ │ │ │ ├── mpcdec.h │ │ │ │ │ ├── mpcmath.h │ │ │ │ │ ├── reader.h │ │ │ │ │ └── streaminfo.h │ │ │ └── libmpcdec │ │ │ │ ├── decoder.h │ │ │ │ ├── huffman.c │ │ │ │ ├── huffman.h │ │ │ │ ├── internal.h │ │ │ │ ├── mpc_bits_reader.c │ │ │ │ ├── mpc_bits_reader.h │ │ │ │ ├── mpc_decoder.c │ │ │ │ ├── mpc_demux.c │ │ │ │ ├── mpc_reader.c │ │ │ │ ├── mpcdec_math.h │ │ │ │ ├── requant.c │ │ │ │ ├── requant.h │ │ │ │ ├── streaminfo.c │ │ │ │ └── synth_filter.c │ │ └── rubberband │ │ │ ├── AudioCurve.cpp │ │ │ ├── AudioCurve.h │ │ │ ├── ConstantAudioCurve.cpp │ │ │ ├── ConstantAudioCurve.h │ │ │ ├── FFT.cpp │ │ │ ├── FFT.h │ │ │ ├── HighFrequencyAudioCurve.cpp │ │ │ ├── HighFrequencyAudioCurve.h │ │ │ ├── PercussiveAudioCurve.cpp │ │ │ ├── PercussiveAudioCurve.h │ │ │ ├── Profiler.cpp │ │ │ ├── Profiler.h │ │ │ ├── Resampler.cpp │ │ │ ├── Resampler.h │ │ │ ├── RingBuffer.h │ │ │ ├── RubberBandStretcher.cpp │ │ │ ├── RubberBandStretcher.h │ │ │ ├── Scavenger.h │ │ │ ├── SilentAudioCurve.cpp │ │ │ ├── SilentAudioCurve.h │ │ │ ├── SpectralDifferenceAudioCurve.cpp │ │ │ ├── SpectralDifferenceAudioCurve.h │ │ │ ├── StretchCalculator.cpp │ │ │ ├── StretchCalculator.h │ │ │ ├── StretcherChannelData.cpp │ │ │ ├── StretcherChannelData.h │ │ │ ├── StretcherImpl.cpp │ │ │ ├── StretcherImpl.h │ │ │ ├── StretcherProcess.cpp │ │ │ ├── Thread.cpp │ │ │ ├── Thread.h │ │ │ ├── Window.cpp │ │ │ ├── Window.h │ │ │ ├── sysutils.cpp │ │ │ └── sysutils.h │ ├── jucetice_AudioParameter.cpp │ ├── jucetice_AudioParameter.h │ ├── jucetice_AudioPlugin.h │ ├── jucetice_AudioProcessingBuffer.h │ ├── jucetice_AudioProgram.h │ ├── jucetice_ExternalTransport.h │ ├── jucetice_MathConstants.h │ ├── jucetice_StandardHeader.h │ ├── lookandfeel │ │ ├── jucetice_JuceticeLookAndFeel.cpp │ │ └── jucetice_JuceticeLookAndFeel.h │ ├── network │ │ ├── jucetice_Net.cpp │ │ └── jucetice_Net.h │ ├── scripting │ │ ├── bindings │ │ │ ├── jucetice_ScriptableEngineCore.cpp │ │ │ ├── jucetice_ScriptableEngineCore.h │ │ │ ├── jucetice_ScriptableEngineString.cpp │ │ │ └── jucetice_ScriptableEngineString.h │ │ ├── jucetice_ScriptableEngine.cpp │ │ └── jucetice_ScriptableEngine.h │ ├── testing │ │ ├── jucetice_TestingFramework.cpp │ │ └── jucetice_TestingFramework.h │ └── utils │ │ ├── jucetice_CommandLineTokenizer.cpp │ │ ├── jucetice_CommandLineTokenizer.h │ │ ├── jucetice_FastDelegate.h │ │ ├── jucetice_GnuplotInterface.cpp │ │ ├── jucetice_GnuplotInterface.h │ │ ├── jucetice_Serializable.cpp │ │ ├── jucetice_Serializable.h │ │ └── jucetice_TestApplication.h │ ├── gui │ ├── components │ │ ├── buttons │ │ │ ├── juce_ArrowButton.cpp │ │ │ ├── juce_ArrowButton.h │ │ │ ├── juce_Button.cpp │ │ │ ├── juce_Button.h │ │ │ ├── juce_DrawableButton.cpp │ │ │ ├── juce_DrawableButton.h │ │ │ ├── juce_HyperlinkButton.cpp │ │ │ ├── juce_HyperlinkButton.h │ │ │ ├── juce_ImageButton.cpp │ │ │ ├── juce_ImageButton.h │ │ │ ├── juce_ShapeButton.cpp │ │ │ ├── juce_ShapeButton.h │ │ │ ├── juce_TextButton.cpp │ │ │ ├── juce_TextButton.h │ │ │ ├── juce_ToggleButton.cpp │ │ │ ├── juce_ToggleButton.h │ │ │ ├── juce_ToolbarButton.cpp │ │ │ └── juce_ToolbarButton.h │ │ ├── code_editor │ │ │ ├── juce_CPlusPlusCodeTokeniser.cpp │ │ │ ├── juce_CPlusPlusCodeTokeniser.h │ │ │ ├── juce_CodeDocument.cpp │ │ │ ├── juce_CodeDocument.h │ │ │ ├── juce_CodeEditorComponent.cpp │ │ │ ├── juce_CodeEditorComponent.h │ │ │ └── juce_CodeTokeniser.h │ │ ├── controls │ │ │ ├── juce_ComboBox.cpp │ │ │ ├── juce_ComboBox.h │ │ │ ├── juce_Label.cpp │ │ │ ├── juce_Label.h │ │ │ ├── juce_ListBox.cpp │ │ │ ├── juce_ListBox.h │ │ │ ├── juce_ProgressBar.cpp │ │ │ ├── juce_ProgressBar.h │ │ │ ├── juce_Slider.cpp │ │ │ ├── juce_Slider.h │ │ │ ├── juce_SliderListener.h │ │ │ ├── juce_TableHeaderComponent.cpp │ │ │ ├── juce_TableHeaderComponent.h │ │ │ ├── juce_TableListBox.cpp │ │ │ ├── juce_TableListBox.h │ │ │ ├── juce_TextEditor.cpp │ │ │ ├── juce_TextEditor.h │ │ │ ├── juce_Toolbar.cpp │ │ │ ├── juce_Toolbar.h │ │ │ ├── juce_ToolbarItemComponent.cpp │ │ │ ├── juce_ToolbarItemComponent.h │ │ │ ├── juce_ToolbarItemFactory.h │ │ │ ├── juce_ToolbarItemPalette.cpp │ │ │ ├── juce_ToolbarItemPalette.h │ │ │ ├── juce_TreeView.cpp │ │ │ └── juce_TreeView.h │ │ ├── filebrowser │ │ │ ├── juce_DirectoryContentsDisplayComponent.cpp │ │ │ ├── juce_DirectoryContentsDisplayComponent.h │ │ │ ├── juce_DirectoryContentsList.cpp │ │ │ ├── juce_DirectoryContentsList.h │ │ │ ├── juce_FileBrowserComponent.cpp │ │ │ ├── juce_FileBrowserComponent.h │ │ │ ├── juce_FileBrowserListener.h │ │ │ ├── juce_FileChooser.cpp │ │ │ ├── juce_FileChooser.h │ │ │ ├── juce_FileChooserDialogBox.cpp │ │ │ ├── juce_FileChooserDialogBox.h │ │ │ ├── juce_FileFilter.cpp │ │ │ ├── juce_FileFilter.h │ │ │ ├── juce_FileListComponent.cpp │ │ │ ├── juce_FileListComponent.h │ │ │ ├── juce_FilePreviewComponent.h │ │ │ ├── juce_FileSearchPathListComponent.cpp │ │ │ ├── juce_FileSearchPathListComponent.h │ │ │ ├── juce_FileTreeComponent.cpp │ │ │ ├── juce_FileTreeComponent.h │ │ │ ├── juce_FilenameComponent.cpp │ │ │ ├── juce_FilenameComponent.h │ │ │ ├── juce_ImagePreviewComponent.cpp │ │ │ ├── juce_ImagePreviewComponent.h │ │ │ ├── juce_WildcardFileFilter.cpp │ │ │ └── juce_WildcardFileFilter.h │ │ ├── juce_Component.cpp │ │ ├── juce_Component.h │ │ ├── juce_ComponentDeletionWatcher.h │ │ ├── juce_ComponentListener.cpp │ │ ├── juce_ComponentListener.h │ │ ├── juce_Desktop.cpp │ │ ├── juce_Desktop.h │ │ ├── keyboard │ │ │ ├── juce_KeyListener.cpp │ │ │ ├── juce_KeyListener.h │ │ │ ├── juce_KeyMappingEditorComponent.cpp │ │ │ ├── juce_KeyMappingEditorComponent.h │ │ │ ├── juce_KeyPress.cpp │ │ │ ├── juce_KeyPress.h │ │ │ ├── juce_KeyPressMappingSet.cpp │ │ │ ├── juce_KeyPressMappingSet.h │ │ │ ├── juce_KeyboardFocusTraverser.cpp │ │ │ ├── juce_KeyboardFocusTraverser.h │ │ │ ├── juce_ModifierKeys.cpp │ │ │ └── juce_ModifierKeys.h │ │ ├── layout │ │ │ ├── juce_ComponentAnimator.cpp │ │ │ ├── juce_ComponentAnimator.h │ │ │ ├── juce_ComponentBoundsConstrainer.cpp │ │ │ ├── juce_ComponentBoundsConstrainer.h │ │ │ ├── juce_ComponentMovementWatcher.cpp │ │ │ ├── juce_ComponentMovementWatcher.h │ │ │ ├── juce_GroupComponent.cpp │ │ │ ├── juce_GroupComponent.h │ │ │ ├── juce_MultiDocumentPanel.cpp │ │ │ ├── juce_MultiDocumentPanel.h │ │ │ ├── juce_ResizableBorderComponent.cpp │ │ │ ├── juce_ResizableBorderComponent.h │ │ │ ├── juce_ResizableCornerComponent.cpp │ │ │ ├── juce_ResizableCornerComponent.h │ │ │ ├── juce_ScrollBar.cpp │ │ │ ├── juce_ScrollBar.h │ │ │ ├── juce_StretchableLayoutManager.cpp │ │ │ ├── juce_StretchableLayoutManager.h │ │ │ ├── juce_StretchableLayoutResizerBar.cpp │ │ │ ├── juce_StretchableLayoutResizerBar.h │ │ │ ├── juce_StretchableObjectResizer.cpp │ │ │ ├── juce_StretchableObjectResizer.h │ │ │ ├── juce_TabbedButtonBar.cpp │ │ │ ├── juce_TabbedButtonBar.h │ │ │ ├── juce_TabbedComponent.cpp │ │ │ ├── juce_TabbedComponent.h │ │ │ ├── juce_Viewport.cpp │ │ │ └── juce_Viewport.h │ │ ├── lookandfeel │ │ │ ├── juce_LookAndFeel.cpp │ │ │ ├── juce_LookAndFeel.h │ │ │ ├── juce_OldSchoolLookAndFeel.cpp │ │ │ └── juce_OldSchoolLookAndFeel.h │ │ ├── menus │ │ │ ├── juce_MenuBarComponent.cpp │ │ │ ├── juce_MenuBarComponent.h │ │ │ ├── juce_MenuBarModel.cpp │ │ │ ├── juce_MenuBarModel.h │ │ │ ├── juce_PopupMenu.cpp │ │ │ ├── juce_PopupMenu.h │ │ │ └── juce_PopupMenuCustomComponent.h │ │ ├── mouse │ │ │ ├── juce_ComponentDragger.cpp │ │ │ ├── juce_ComponentDragger.h │ │ │ ├── juce_DragAndDropContainer.cpp │ │ │ ├── juce_DragAndDropContainer.h │ │ │ ├── juce_DragAndDropTarget.h │ │ │ ├── juce_FileDragAndDropTarget.h │ │ │ ├── juce_LassoComponent.h │ │ │ ├── juce_MouseCursor.cpp │ │ │ ├── juce_MouseCursor.h │ │ │ ├── juce_MouseEvent.cpp │ │ │ ├── juce_MouseEvent.h │ │ │ ├── juce_MouseHoverDetector.cpp │ │ │ ├── juce_MouseHoverDetector.h │ │ │ ├── juce_MouseListener.cpp │ │ │ ├── juce_MouseListener.h │ │ │ └── juce_TooltipClient.h │ │ ├── properties │ │ │ ├── juce_BooleanPropertyComponent.cpp │ │ │ ├── juce_BooleanPropertyComponent.h │ │ │ ├── juce_ButtonPropertyComponent.cpp │ │ │ ├── juce_ButtonPropertyComponent.h │ │ │ ├── juce_ChoicePropertyComponent.cpp │ │ │ ├── juce_ChoicePropertyComponent.h │ │ │ ├── juce_PropertyComponent.cpp │ │ │ ├── juce_PropertyComponent.h │ │ │ ├── juce_PropertyPanel.cpp │ │ │ ├── juce_PropertyPanel.h │ │ │ ├── juce_SliderPropertyComponent.cpp │ │ │ ├── juce_SliderPropertyComponent.h │ │ │ ├── juce_TextPropertyComponent.cpp │ │ │ └── juce_TextPropertyComponent.h │ │ ├── special │ │ │ ├── juce_ActiveXControlComponent.h │ │ │ ├── juce_AudioDeviceSelectorComponent.cpp │ │ │ ├── juce_AudioDeviceSelectorComponent.h │ │ │ ├── juce_BubbleComponent.cpp │ │ │ ├── juce_BubbleComponent.h │ │ │ ├── juce_BubbleMessageComponent.cpp │ │ │ ├── juce_BubbleMessageComponent.h │ │ │ ├── juce_ColourSelector.cpp │ │ │ ├── juce_ColourSelector.h │ │ │ ├── juce_DropShadower.cpp │ │ │ ├── juce_DropShadower.h │ │ │ ├── juce_MagnifierComponent.cpp │ │ │ ├── juce_MagnifierComponent.h │ │ │ ├── juce_MidiKeyboardComponent.cpp │ │ │ ├── juce_MidiKeyboardComponent.h │ │ │ ├── juce_NSViewComponent.h │ │ │ ├── juce_OpenGLComponent.cpp │ │ │ ├── juce_OpenGLComponent.h │ │ │ ├── juce_PreferencesPanel.cpp │ │ │ ├── juce_PreferencesPanel.h │ │ │ ├── juce_QuickTimeMovieComponent.h │ │ │ ├── juce_SystemTrayIconComponent.cpp │ │ │ ├── juce_SystemTrayIconComponent.h │ │ │ └── juce_WebBrowserComponent.h │ │ └── windows │ │ │ ├── juce_AlertWindow.cpp │ │ │ ├── juce_AlertWindow.h │ │ │ ├── juce_ComponentPeer.cpp │ │ │ ├── juce_ComponentPeer.h │ │ │ ├── juce_DialogWindow.cpp │ │ │ ├── juce_DialogWindow.h │ │ │ ├── juce_DocumentWindow.cpp │ │ │ ├── juce_DocumentWindow.h │ │ │ ├── juce_ResizableWindow.cpp │ │ │ ├── juce_ResizableWindow.h │ │ │ ├── juce_SplashScreen.cpp │ │ │ ├── juce_SplashScreen.h │ │ │ ├── juce_ThreadWithProgressWindow.cpp │ │ │ ├── juce_ThreadWithProgressWindow.h │ │ │ ├── juce_TooltipWindow.cpp │ │ │ ├── juce_TooltipWindow.h │ │ │ ├── juce_TopLevelWindow.cpp │ │ │ └── juce_TopLevelWindow.h │ └── graphics │ │ ├── colour │ │ ├── juce_Colour.cpp │ │ ├── juce_Colour.h │ │ ├── juce_ColourGradient.cpp │ │ ├── juce_ColourGradient.h │ │ ├── juce_Colours.cpp │ │ ├── juce_Colours.h │ │ └── juce_PixelFormats.h │ │ ├── contexts │ │ ├── juce_EdgeTable.cpp │ │ ├── juce_EdgeTable.h │ │ ├── juce_FillType.cpp │ │ ├── juce_FillType.h │ │ ├── juce_Graphics.cpp │ │ ├── juce_Graphics.h │ │ ├── juce_Justification.cpp │ │ ├── juce_Justification.h │ │ ├── juce_LowLevelGraphicsContext.h │ │ ├── juce_LowLevelGraphicsPostScriptRenderer.cpp │ │ ├── juce_LowLevelGraphicsPostScriptRenderer.h │ │ ├── juce_LowLevelGraphicsSoftwareRenderer.cpp │ │ ├── juce_LowLevelGraphicsSoftwareRenderer.h │ │ ├── juce_RectanglePlacement.cpp │ │ └── juce_RectanglePlacement.h │ │ ├── drawables │ │ ├── juce_Drawable.cpp │ │ ├── juce_Drawable.h │ │ ├── juce_DrawableComposite.cpp │ │ ├── juce_DrawableComposite.h │ │ ├── juce_DrawableImage.cpp │ │ ├── juce_DrawableImage.h │ │ ├── juce_DrawablePath.cpp │ │ ├── juce_DrawablePath.h │ │ ├── juce_DrawableText.cpp │ │ ├── juce_DrawableText.h │ │ └── juce_SVGParser.cpp │ │ ├── effects │ │ ├── juce_DropShadowEffect.cpp │ │ ├── juce_DropShadowEffect.h │ │ ├── juce_GlowEffect.cpp │ │ ├── juce_GlowEffect.h │ │ ├── juce_ImageEffectFilter.h │ │ ├── juce_ReduceOpacityEffect.cpp │ │ └── juce_ReduceOpacityEffect.h │ │ ├── fonts │ │ ├── juce_Font.cpp │ │ ├── juce_Font.h │ │ ├── juce_GlyphArrangement.cpp │ │ ├── juce_GlyphArrangement.h │ │ ├── juce_TextLayout.cpp │ │ ├── juce_TextLayout.h │ │ ├── juce_Typeface.cpp │ │ └── juce_Typeface.h │ │ ├── geometry │ │ ├── juce_AffineTransform.cpp │ │ ├── juce_AffineTransform.h │ │ ├── juce_BorderSize.cpp │ │ ├── juce_BorderSize.h │ │ ├── juce_Line.cpp │ │ ├── juce_Line.h │ │ ├── juce_Path.cpp │ │ ├── juce_Path.h │ │ ├── juce_PathIterator.cpp │ │ ├── juce_PathIterator.h │ │ ├── juce_PathStrokeType.cpp │ │ ├── juce_PathStrokeType.h │ │ ├── juce_Point.cpp │ │ ├── juce_Point.h │ │ ├── juce_PositionedRectangle.cpp │ │ ├── juce_PositionedRectangle.h │ │ ├── juce_Rectangle.cpp │ │ ├── juce_Rectangle.h │ │ ├── juce_RectangleList.cpp │ │ └── juce_RectangleList.h │ │ └── imaging │ │ ├── image_file_formats │ │ ├── jpglib │ │ │ ├── README │ │ │ ├── cderror.h │ │ │ ├── changes to libjpeg for JUCE.txt │ │ │ ├── jcapimin.c │ │ │ ├── jcapistd.c │ │ │ ├── jccoefct.c │ │ │ ├── jccolor.c │ │ │ ├── jcdctmgr.c │ │ │ ├── jchuff.c │ │ │ ├── jchuff.h │ │ │ ├── jcinit.c │ │ │ ├── jcmainct.c │ │ │ ├── jcmarker.c │ │ │ ├── jcmaster.c │ │ │ ├── jcomapi.c │ │ │ ├── jconfig.h │ │ │ ├── jcparam.c │ │ │ ├── jcphuff.c │ │ │ ├── jcprepct.c │ │ │ ├── jcsample.c │ │ │ ├── jctrans.c │ │ │ ├── jdapimin.c │ │ │ ├── jdapistd.c │ │ │ ├── jdatasrc.c │ │ │ ├── jdcoefct.c │ │ │ ├── jdcolor.c │ │ │ ├── jdct.h │ │ │ ├── jddctmgr.c │ │ │ ├── jdhuff.c │ │ │ ├── jdhuff.h │ │ │ ├── jdinput.c │ │ │ ├── jdmainct.c │ │ │ ├── jdmarker.c │ │ │ ├── jdmaster.c │ │ │ ├── jdmerge.c │ │ │ ├── jdphuff.c │ │ │ ├── jdpostct.c │ │ │ ├── jdsample.c │ │ │ ├── jdtrans.c │ │ │ ├── jerror.c │ │ │ ├── jerror.h │ │ │ ├── jfdctflt.c │ │ │ ├── jfdctfst.c │ │ │ ├── jfdctint.c │ │ │ ├── jidctflt.c │ │ │ ├── jidctfst.c │ │ │ ├── jidctint.c │ │ │ ├── jidctred.c │ │ │ ├── jinclude.h │ │ │ ├── jmemmgr.c │ │ │ ├── jmemnobs.c │ │ │ ├── jmemsys.h │ │ │ ├── jmorecfg.h │ │ │ ├── jpegint.h │ │ │ ├── jpeglib.h │ │ │ ├── jquant1.c │ │ │ ├── jquant2.c │ │ │ ├── jutils.c │ │ │ ├── jversion.h │ │ │ ├── transupp.c │ │ │ └── transupp.h │ │ ├── juce_GIFLoader.cpp │ │ ├── juce_GIFLoader.h │ │ ├── juce_JPEGLoader.cpp │ │ ├── juce_PNGLoader.cpp │ │ └── pnglib │ │ │ ├── LICENSE │ │ │ ├── libpng_readme.txt │ │ │ ├── png.c │ │ │ ├── png.h │ │ │ ├── pngconf.h │ │ │ ├── pngerror.c │ │ │ ├── pngget.c │ │ │ ├── pngmem.c │ │ │ ├── pngpread.c │ │ │ ├── pngread.c │ │ │ ├── pngrio.c │ │ │ ├── pngrtran.c │ │ │ ├── pngrutil.c │ │ │ ├── pngset.c │ │ │ ├── pngtrans.c │ │ │ ├── pngwio.c │ │ │ ├── pngwrite.c │ │ │ ├── pngwtran.c │ │ │ └── pngwutil.c │ │ ├── juce_CameraDevice.h │ │ ├── juce_Image.cpp │ │ ├── juce_Image.h │ │ ├── juce_ImageCache.cpp │ │ ├── juce_ImageCache.h │ │ ├── juce_ImageConvolutionKernel.cpp │ │ ├── juce_ImageConvolutionKernel.h │ │ ├── juce_ImageFileFormat.cpp │ │ └── juce_ImageFileFormat.h │ ├── io │ ├── files │ │ ├── juce_DirectoryIterator.cpp │ │ ├── juce_DirectoryIterator.h │ │ ├── juce_File.cpp │ │ ├── juce_File.h │ │ ├── juce_FileInputStream.cpp │ │ ├── juce_FileInputStream.h │ │ ├── juce_FileOutputStream.cpp │ │ ├── juce_FileOutputStream.h │ │ ├── juce_FileSearchPath.cpp │ │ ├── juce_FileSearchPath.h │ │ ├── juce_NamedPipe.cpp │ │ ├── juce_NamedPipe.h │ │ ├── juce_TemporaryFile.cpp │ │ ├── juce_TemporaryFile.h │ │ ├── juce_ZipFile.cpp │ │ └── juce_ZipFile.h │ ├── network │ │ ├── juce_Socket.cpp │ │ ├── juce_Socket.h │ │ ├── juce_URL.cpp │ │ └── juce_URL.h │ └── streams │ │ ├── juce_BufferedInputStream.cpp │ │ ├── juce_BufferedInputStream.h │ │ ├── juce_FileInputSource.cpp │ │ ├── juce_FileInputSource.h │ │ ├── juce_GZIPCompressorOutputStream.cpp │ │ ├── juce_GZIPCompressorOutputStream.h │ │ ├── juce_GZIPDecompressorInputStream.cpp │ │ ├── juce_GZIPDecompressorInputStream.h │ │ ├── juce_InputSource.h │ │ ├── juce_InputStream.cpp │ │ ├── juce_InputStream.h │ │ ├── juce_MemoryInputStream.cpp │ │ ├── juce_MemoryInputStream.h │ │ ├── juce_MemoryOutputStream.cpp │ │ ├── juce_MemoryOutputStream.h │ │ ├── juce_OutputStream.cpp │ │ ├── juce_OutputStream.h │ │ ├── juce_SubregionStream.cpp │ │ ├── juce_SubregionStream.h │ │ └── zlib │ │ ├── README │ │ ├── adler32.c │ │ ├── compress.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── zconf.h │ │ ├── zconf.in.h │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h │ ├── juce_DefineMacros.h │ ├── juce_WithoutMacros.h │ ├── juce_amalgamated_template.cpp │ ├── juce_amalgamated_template.h │ ├── juce_app_includes.h │ ├── juce_core_includes.h │ ├── juce_extended_includes.h │ ├── native │ ├── common │ │ ├── juce_posix_NamedPipe.cpp │ │ └── juce_posix_SharedCode.h │ ├── juce_linux_NativeCode.cpp │ ├── juce_mac_NativeCode.mm │ ├── juce_win32_NativeCode.cpp │ ├── linux │ │ ├── juce_linux_Audio.cpp │ │ ├── juce_linux_AudioCDReader.cpp │ │ ├── juce_linux_Clipboard.cpp │ │ ├── juce_linux_FileChooser.cpp │ │ ├── juce_linux_Files.cpp │ │ ├── juce_linux_Fonts.cpp │ │ ├── juce_linux_JackAudio.cpp │ │ ├── juce_linux_Messaging.cpp │ │ ├── juce_linux_Midi.cpp │ │ ├── juce_linux_NativeIncludes.h │ │ ├── juce_linux_Network.cpp │ │ ├── juce_linux_SystemStats.cpp │ │ ├── juce_linux_Threads.cpp │ │ ├── juce_linux_WebBrowserComponent.cpp │ │ └── juce_linux_Windowing.cpp │ ├── mac │ │ ├── juce_iphone_Audio.cpp │ │ ├── juce_iphone_MessageManager.mm │ │ ├── juce_iphone_MiscUtilities.mm │ │ ├── juce_iphone_UIViewComponentPeer.mm │ │ ├── juce_mac_AppleRemote.mm │ │ ├── juce_mac_AudioCDBurner.mm │ │ ├── juce_mac_CameraDevice.mm │ │ ├── juce_mac_CarbonViewWrapperComponent.h │ │ ├── juce_mac_CoreAudio.cpp │ │ ├── juce_mac_CoreGraphicsContext.mm │ │ ├── juce_mac_CoreMidi.cpp │ │ ├── juce_mac_Debugging.mm │ │ ├── juce_mac_FileChooser.mm │ │ ├── juce_mac_Files.mm │ │ ├── juce_mac_Fonts.mm │ │ ├── juce_mac_MainMenu.mm │ │ ├── juce_mac_MessageManager.mm │ │ ├── juce_mac_MiscUtilities.mm │ │ ├── juce_mac_MouseCursor.mm │ │ ├── juce_mac_NSViewComponent.mm │ │ ├── juce_mac_NSViewComponentPeer.mm │ │ ├── juce_mac_NativeIncludes.h │ │ ├── juce_mac_Network.mm │ │ ├── juce_mac_ObjCSuffix.h │ │ ├── juce_mac_OpenGLComponent.mm │ │ ├── juce_mac_QuickTimeMovieComponent.mm │ │ ├── juce_mac_Strings.mm │ │ ├── juce_mac_SystemStats.mm │ │ ├── juce_mac_Threads.mm │ │ └── juce_mac_WebBrowserComponent.mm │ └── windows │ │ ├── juce_win32_ASIO.cpp │ │ ├── juce_win32_ActiveXComponent.cpp │ │ ├── juce_win32_AudioCDReader.cpp │ │ ├── juce_win32_AutoLinkLibraries.h │ │ ├── juce_win32_CameraDevice.cpp │ │ ├── juce_win32_DirectSound.cpp │ │ ├── juce_win32_DynamicLibraryLoader.cpp │ │ ├── juce_win32_DynamicLibraryLoader.h │ │ ├── juce_win32_FileChooser.cpp │ │ ├── juce_win32_Files.cpp │ │ ├── juce_win32_Fonts.cpp │ │ ├── juce_win32_Messaging.cpp │ │ ├── juce_win32_Midi.cpp │ │ ├── juce_win32_Misc.cpp │ │ ├── juce_win32_NativeIncludes.h │ │ ├── juce_win32_Network.cpp │ │ ├── juce_win32_OpenGLComponent.cpp │ │ ├── juce_win32_PlatformUtils.cpp │ │ ├── juce_win32_QuickTimeMovieComponent.cpp │ │ ├── juce_win32_SystemStats.cpp │ │ ├── juce_win32_Threads.cpp │ │ ├── juce_win32_WASAPI.cpp │ │ ├── juce_win32_WebBrowserComponent.cpp │ │ └── juce_win32_Windowing.cpp │ ├── text │ ├── juce_CharacterFunctions.cpp │ ├── juce_CharacterFunctions.h │ ├── juce_LocalisedStrings.cpp │ ├── juce_LocalisedStrings.h │ ├── juce_String.cpp │ ├── juce_String.h │ ├── juce_StringArray.cpp │ ├── juce_StringArray.h │ ├── juce_StringPairArray.cpp │ ├── juce_StringPairArray.h │ ├── juce_XmlDocument.cpp │ ├── juce_XmlDocument.h │ ├── juce_XmlElement.cpp │ └── juce_XmlElement.h │ ├── threads │ ├── juce_CriticalSection.h │ ├── juce_InterProcessLock.cpp │ ├── juce_InterProcessLock.h │ ├── juce_Process.h │ ├── juce_ReadWriteLock.cpp │ ├── juce_ReadWriteLock.h │ ├── juce_ScopedLock.h │ ├── juce_ScopedReadLock.h │ ├── juce_ScopedTryLock.h │ ├── juce_ScopedWriteLock.h │ ├── juce_Thread.cpp │ ├── juce_Thread.h │ ├── juce_ThreadPool.cpp │ ├── juce_ThreadPool.h │ ├── juce_TimeSliceThread.cpp │ ├── juce_TimeSliceThread.h │ └── juce_WaitableEvent.h │ └── utilities │ ├── juce_DeletedAtShutdown.cpp │ ├── juce_DeletedAtShutdown.h │ ├── juce_FileBasedDocument.cpp │ ├── juce_FileBasedDocument.h │ ├── juce_PropertiesFile.cpp │ ├── juce_PropertiesFile.h │ ├── juce_RecentlyOpenedFilesList.cpp │ ├── juce_RecentlyOpenedFilesList.h │ ├── juce_SelectedItemSet.h │ ├── juce_SystemClipboard.h │ ├── juce_UndoManager.cpp │ ├── juce_UndoManager.h │ └── juce_UndoableAction.h ├── tests ├── build │ └── linux │ │ ├── Makefile │ │ ├── premake.lua │ │ └── unit_testing.make └── src │ ├── config.h │ ├── mytest.cpp │ └── test_suites │ ├── CompareTestSuite.h │ ├── ScriptingTestSuite.h │ └── ThrowTestSuite.h ├── tools ├── linux │ ├── amalgamator │ ├── amalgamator_debug │ ├── jucer │ ├── manage │ ├── premake │ └── premake.lua ├── macosx │ └── premake └── win32 │ ├── amalgamator.exe │ ├── amalgamator_debug.exe │ └── premake.exe └── vst ├── vstsdk2.3 └── unpack_sdk_here └── vstsdk2.4 └── unpack_sdk_here /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/README.md -------------------------------------------------------------------------------- /apps/analyzer/build/VST_Linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/build/VST_Linux/Makefile -------------------------------------------------------------------------------- /apps/analyzer/build/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/build/linux/Makefile -------------------------------------------------------------------------------- /apps/analyzer/build/linux/analyzer.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/build/linux/analyzer.make -------------------------------------------------------------------------------- /apps/analyzer/build/linux/premake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/build/linux/premake.lua -------------------------------------------------------------------------------- /apps/analyzer/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/readme.txt -------------------------------------------------------------------------------- /apps/analyzer/src/Dsp/AUTHORS: -------------------------------------------------------------------------------- 1 | Fons Adriaensen 2 | -------------------------------------------------------------------------------- /apps/analyzer/src/Dsp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/Dsp/COPYING -------------------------------------------------------------------------------- /apps/analyzer/src/Dsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/Dsp/Makefile -------------------------------------------------------------------------------- /apps/analyzer/src/Dsp/analyser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/Dsp/analyser.cc -------------------------------------------------------------------------------- /apps/analyzer/src/Dsp/analyser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/Dsp/analyser.h -------------------------------------------------------------------------------- /apps/analyzer/src/Dsp/audio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/Dsp/audio.cc -------------------------------------------------------------------------------- /apps/analyzer/src/Dsp/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/Dsp/audio.h -------------------------------------------------------------------------------- /apps/analyzer/src/Dsp/gobjects.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/Dsp/gobjects.cc -------------------------------------------------------------------------------- /apps/analyzer/src/Dsp/gobjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/Dsp/gobjects.h -------------------------------------------------------------------------------- /apps/analyzer/src/Dsp/itypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/Dsp/itypes.h -------------------------------------------------------------------------------- /apps/analyzer/src/Dsp/japa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/Dsp/japa.cc -------------------------------------------------------------------------------- /apps/analyzer/src/Dsp/mainwin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/Dsp/mainwin.cc -------------------------------------------------------------------------------- /apps/analyzer/src/Dsp/mainwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/Dsp/mainwin.h -------------------------------------------------------------------------------- /apps/analyzer/src/Dsp/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/Dsp/messages.h -------------------------------------------------------------------------------- /apps/analyzer/src/Dsp/prbsgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/Dsp/prbsgen.h -------------------------------------------------------------------------------- /apps/analyzer/src/Dsp/rngen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/Dsp/rngen.cc -------------------------------------------------------------------------------- /apps/analyzer/src/Dsp/rngen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/Dsp/rngen.h -------------------------------------------------------------------------------- /apps/analyzer/src/Dsp/styles.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/Dsp/styles.cc -------------------------------------------------------------------------------- /apps/analyzer/src/Dsp/styles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/Dsp/styles.h -------------------------------------------------------------------------------- /apps/analyzer/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/Main.cpp -------------------------------------------------------------------------------- /apps/analyzer/src/StandardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/StandardConfig.h -------------------------------------------------------------------------------- /apps/analyzer/src/StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/StandardHeader.h -------------------------------------------------------------------------------- /apps/analyzer/src/StandardLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/StandardLibrary.cpp -------------------------------------------------------------------------------- /apps/analyzer/src/XAnalyzerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/XAnalyzerComponent.h -------------------------------------------------------------------------------- /apps/analyzer/src/XAnalyzerPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/XAnalyzerPlugin.cpp -------------------------------------------------------------------------------- /apps/analyzer/src/XAnalyzerPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/analyzer/src/XAnalyzerPlugin.h -------------------------------------------------------------------------------- /apps/bitmangler/build/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/bitmangler/build/linux/Makefile -------------------------------------------------------------------------------- /apps/bitmangler/build/linux/premake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/bitmangler/build/linux/premake.lua -------------------------------------------------------------------------------- /apps/bitmangler/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/bitmangler/src/Main.cpp -------------------------------------------------------------------------------- /apps/bitmangler/src/Resources/lcd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/bitmangler/src/Resources/lcd.bin -------------------------------------------------------------------------------- /apps/bitmangler/src/StandardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/bitmangler/src/StandardConfig.h -------------------------------------------------------------------------------- /apps/bitmangler/src/StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/bitmangler/src/StandardHeader.h -------------------------------------------------------------------------------- /apps/bitmangler/src/StandardLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/bitmangler/src/StandardLibrary.cpp -------------------------------------------------------------------------------- /apps/bitmangler/src/bitFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/bitmangler/src/bitFloat.cpp -------------------------------------------------------------------------------- /apps/bitmangler/src/bitFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/bitmangler/src/bitFloat.h -------------------------------------------------------------------------------- /apps/bitmangler/src/bitMangler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/bitmangler/src/bitMangler.cpp -------------------------------------------------------------------------------- /apps/bitmangler/src/bitMangler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/bitmangler/src/bitMangler.h -------------------------------------------------------------------------------- /apps/bitmangler/src/bitManglerEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/bitmangler/src/bitManglerEditor.h -------------------------------------------------------------------------------- /apps/capsaicin/build/VST_Linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/build/VST_Linux/Makefile -------------------------------------------------------------------------------- /apps/capsaicin/build/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/build/linux/Makefile -------------------------------------------------------------------------------- /apps/capsaicin/build/linux/premake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/build/linux/premake.lua -------------------------------------------------------------------------------- /apps/capsaicin/parameters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/parameters.txt -------------------------------------------------------------------------------- /apps/capsaicin/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/readme.txt -------------------------------------------------------------------------------- /apps/capsaicin/src/DSP/AnalogFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/DSP/AnalogFilter.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/DSP/AnalogFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/DSP/AnalogFilter.h -------------------------------------------------------------------------------- /apps/capsaicin/src/DSP/BaseFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/DSP/BaseFilter.h -------------------------------------------------------------------------------- /apps/capsaicin/src/DSP/Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/DSP/Filter.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/DSP/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/DSP/Filter.h -------------------------------------------------------------------------------- /apps/capsaicin/src/DSP/FormantFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/DSP/FormantFilter.h -------------------------------------------------------------------------------- /apps/capsaicin/src/DSP/SVFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/DSP/SVFilter.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/DSP/SVFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/DSP/SVFilter.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Effects/Alienwah.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Effects/Alienwah.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Effects/Alienwah.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Effects/Alienwah.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Effects/Chorus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Effects/Chorus.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Effects/Chorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Effects/Chorus.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Effects/Distorsion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Effects/Distorsion.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Effects/EQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Effects/EQ.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Effects/EQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Effects/EQ.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Effects/Echo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Effects/Echo.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Effects/Echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Effects/Echo.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Effects/Effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Effects/Effect.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Effects/Effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Effects/Effect.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Effects/EffectLFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Effects/EffectLFO.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Effects/EffectMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Effects/EffectMgr.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Effects/GReverb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Effects/GReverb.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Effects/GReverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Effects/GReverb.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Effects/Phaser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Effects/Phaser.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Effects/Phaser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Effects/Phaser.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Effects/Reverb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Effects/Reverb.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Effects/Reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Effects/Reverb.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Main.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Misc/Bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Misc/Bank.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Misc/Bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Misc/Bank.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Misc/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Misc/Config.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Misc/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Misc/Config.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Misc/Master.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Misc/Master.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Misc/Master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Misc/Master.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Misc/Part.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Misc/Part.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Misc/Part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Misc/Part.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Misc/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Misc/Util.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Misc/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Misc/Util.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Params/Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Params/Controller.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Params/LFOParams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Params/LFOParams.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Params/LFOParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Params/LFOParams.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Params/Presets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Params/Presets.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Params/Presets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Params/Presets.h -------------------------------------------------------------------------------- /apps/capsaicin/src/StandardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/StandardConfig.h -------------------------------------------------------------------------------- /apps/capsaicin/src/StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/StandardHeader.h -------------------------------------------------------------------------------- /apps/capsaicin/src/StandardLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/StandardLibrary.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Synth/ADnote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Synth/ADnote.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Synth/ADnote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Synth/ADnote.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Synth/Envelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Synth/Envelope.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Synth/Envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Synth/Envelope.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Synth/LFO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Synth/LFO.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Synth/LFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Synth/LFO.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Synth/OscilGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Synth/OscilGen.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Synth/OscilGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Synth/OscilGen.h -------------------------------------------------------------------------------- /apps/capsaicin/src/Synth/Resonance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Synth/Resonance.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/Synth/Resonance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/Synth/Resonance.h -------------------------------------------------------------------------------- /apps/capsaicin/src/XSynthEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/XSynthEditor.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/XSynthEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/XSynthEditor.h -------------------------------------------------------------------------------- /apps/capsaicin/src/XSynthParameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/XSynthParameters.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/XSynthParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/XSynthParameters.h -------------------------------------------------------------------------------- /apps/capsaicin/src/XSynthPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/XSynthPlugin.cpp -------------------------------------------------------------------------------- /apps/capsaicin/src/XSynthPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/XSynthPlugin.h -------------------------------------------------------------------------------- /apps/capsaicin/src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/capsaicin/src/globals.h -------------------------------------------------------------------------------- /apps/drumsynth/build/VST_Linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/build/VST_Linux/Makefile -------------------------------------------------------------------------------- /apps/drumsynth/build/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/build/linux/Makefile -------------------------------------------------------------------------------- /apps/drumsynth/build/linux/premake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/build/linux/premake.lua -------------------------------------------------------------------------------- /apps/drumsynth/build/macosx/drumsynth.exp: -------------------------------------------------------------------------------- 1 | _VSTPluginMain 2 | 3 | -------------------------------------------------------------------------------- /apps/drumsynth/library/Acoustic/Kick.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Acoustic/Kick.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/Acoustic/Ride.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Acoustic/Ride.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/Effects/Glass.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Effects/Glass.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/Effects/Laser.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Effects/Laser.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/Effects/Sonar.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Effects/Sonar.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/Effects/loop.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Effects/loop.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/Electro/Boom.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Electro/Boom.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/Electro/Hi-q.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Electro/Hi-q.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/Electro/s_eq.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Electro/s_eq.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/Latin/Bongo_h.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Latin/Bongo_h.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/Latin/Gamelan.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Latin/Gamelan.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/Latin/Maracas.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Latin/Maracas.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/Latin/bongo_l.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Latin/bongo_l.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/Latin/guiro.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Latin/guiro.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/Latin/taiko.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Latin/taiko.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/Linn/linn_cab.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Linn/linn_cab.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/Linn/linn_clp.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Linn/linn_clp.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/Linn/linn_cow.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Linn/linn_cow.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/Linn/linn_kik.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Linn/linn_kik.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/Linn/linn_snr.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Linn/linn_snr.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/Linn/linn_stk.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/Linn/linn_stk.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/bank-tr909.bds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/bank-tr909.bds -------------------------------------------------------------------------------- /apps/drumsynth/library/cr78/Bongo_h.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/cr78/Bongo_h.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/cr78/Bongo_l.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/cr78/Bongo_l.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/cr78/Clave.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/cr78/Clave.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/cr78/Conga.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/cr78/Conga.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/cr78/Cymbal.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/cr78/Cymbal.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/cr78/Hihat.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/cr78/Hihat.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/cr78/Kick.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/cr78/Kick.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/cr78/Maracas.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/cr78/Maracas.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/cr78/Rim.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/cr78/Rim.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/cr78/Snare.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/cr78/Snare.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/cr78/Tamb.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/cr78/Tamb.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/cr8000/Clap.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/cr8000/Clap.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/cr8000/Clave.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/cr8000/Clave.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/cr8000/Cymbal.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/cr8000/Cymbal.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/cr8000/Hat_c.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/cr8000/Hat_c.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/cr8000/Hat_o.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/cr8000/Hat_o.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/cr8000/Kick.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/cr8000/Kick.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/cr8000/Rim.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/cr8000/Rim.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/cr8000/Snare.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/cr8000/Snare.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/instrmnt/Oboe.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/instrmnt/Oboe.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/magnetboy/Fp1.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/magnetboy/Fp1.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc fx/click.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc fx/click.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc fx/coo.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc fx/coo.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc fx/entre.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc fx/entre.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc fx/numb.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc fx/numb.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc fx/owwww.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc fx/owwww.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc fx/teeth.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc fx/teeth.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc fx/wooo.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc fx/wooo.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc hats/hh.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc hats/hh.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc perc/tom.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc perc/tom.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/AAH.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/AAH.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/B1_B2.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/B1_B2.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/Clap.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/Clap.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/N_low.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/N_low.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/N_vlow.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/N_vlow.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/RimShot.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/RimShot.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/Simple-c.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/Simple-c.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/Simple-r.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/Simple-r.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/Simple-s.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/Simple-s.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/Tone_dis.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/Tone_dis.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/Tone_sw2.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/Tone_sw2.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/Tone_swp.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/Tone_swp.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/amen bd.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/amen bd.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/b1_0.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/b1_0.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/b1_2.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/b1_2.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/b1_5.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/b1_5.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/b1_9.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/b1_9.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/big 80's.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/big 80's.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/buff hit.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/buff hit.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/chow bd.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/chow bd.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/cymbal.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/cymbal.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/fatness.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/fatness.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/feel me!.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/feel me!.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/fm.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/fm.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/fuzzy sn.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/fuzzy sn.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/heavy.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/heavy.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/hi pic.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/hi pic.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/hi-pass.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/hi-pass.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/hotsnare.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/hotsnare.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/mack bd.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/mack bd.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/mello bd.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/mello bd.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/n_hi.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/n_hi.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/n_mid.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/n_mid.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/neo808 2.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/neo808 2.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/neo808.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/neo808.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/noise.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/noise.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/ot_12.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/ot_12.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/ot_34.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/ot_34.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/ot_sine.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/ot_sine.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/q kick 2.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/q kick 2.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/rm.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/rm.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/simple-h.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/simple-h.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/simple-k.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/simple-k.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/splatter.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/splatter.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/test.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/test.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/think bd.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/think bd.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/tone.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/tone.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/tone_deg.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/tone_deg.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/usgae bd.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/usgae bd.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/verylong.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/verylong.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/whoa bd.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/whoa bd.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/misc/zoom#4.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/misc/zoom#4.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/r&b/Hat_O.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/r&b/Hat_O.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/r&b/S_hollow.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/r&b/S_hollow.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/r&b/clapfilt.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/r&b/clapfilt.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/r&b/hat.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/r&b/hat.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/r&b/k_hard.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/r&b/k_hard.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/r&b/k_muffle.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/r&b/k_muffle.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/r&b/k_soft.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/r&b/k_soft.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/r&b/old kik.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/r&b/old kik.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/r&b/popclap.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/r&b/popclap.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/r&b/popsnare.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/r&b/popsnare.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/r&b/s_pitch.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/r&b/s_pitch.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/r&b/s_spit.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/r&b/s_spit.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/r&b/snare&hat.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/r&b/snare&hat.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/r&b/x_backwd.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/r&b/x_backwd.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr77/Tr77 cym.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr77/Tr77 cym.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr77/Tr77 hat.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr77/Tr77 hat.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr808/Clave.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr808/Clave.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr808/Cowbell.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr808/Cowbell.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr808/Hat_c.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr808/Hat_c.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr808/Hat_o.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr808/Hat_o.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr808/Kick.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr808/Kick.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr808/Ride.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr808/Ride.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr808/Rimshot.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr808/Rimshot.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr808/Snare.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr808/Snare.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr808/Tom_hi.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr808/Tom_hi.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr808/Tom_lo.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr808/Tom_lo.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr808/Tom_mid.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr808/Tom_mid.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr909/Clap.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr909/Clap.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr909/Hat-c.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr909/Hat-c.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr909/Hat-c2.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr909/Hat-c2.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr909/Hat-o.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr909/Hat-o.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr909/Hat-o2.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr909/Hat-o2.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr909/Kick.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr909/Kick.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr909/Kick_1.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr909/Kick_1.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr909/Kick_2.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr909/Kick_2.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr909/Kick_3.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr909/Kick_3.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr909/Snare.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr909/Snare.ds -------------------------------------------------------------------------------- /apps/drumsynth/library/tr909/Snare2.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/library/tr909/Snare2.ds -------------------------------------------------------------------------------- /apps/drumsynth/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/readme.txt -------------------------------------------------------------------------------- /apps/drumsynth/src/DrumSynthComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/src/DrumSynthComponent.h -------------------------------------------------------------------------------- /apps/drumsynth/src/DrumSynthGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/src/DrumSynthGlobals.h -------------------------------------------------------------------------------- /apps/drumsynth/src/DrumSynthPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/src/DrumSynthPlugin.cpp -------------------------------------------------------------------------------- /apps/drumsynth/src/DrumSynthPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/src/DrumSynthPlugin.h -------------------------------------------------------------------------------- /apps/drumsynth/src/DrumSynthVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/src/DrumSynthVoice.h -------------------------------------------------------------------------------- /apps/drumsynth/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/src/Main.cpp -------------------------------------------------------------------------------- /apps/drumsynth/src/StandardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/src/StandardConfig.h -------------------------------------------------------------------------------- /apps/drumsynth/src/StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/src/StandardHeader.h -------------------------------------------------------------------------------- /apps/drumsynth/src/StandardLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/drumsynth/src/StandardLibrary.cpp -------------------------------------------------------------------------------- /apps/dubdelay/build/VST_Linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/dubdelay/build/VST_Linux/Makefile -------------------------------------------------------------------------------- /apps/dubdelay/build/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/dubdelay/build/linux/Makefile -------------------------------------------------------------------------------- /apps/dubdelay/build/linux/dubdelay.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/dubdelay/build/linux/dubdelay.make -------------------------------------------------------------------------------- /apps/dubdelay/build/linux/premake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/dubdelay/build/linux/premake.lua -------------------------------------------------------------------------------- /apps/dubdelay/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/dubdelay/readme.txt -------------------------------------------------------------------------------- /apps/dubdelay/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/dubdelay/src/Main.cpp -------------------------------------------------------------------------------- /apps/dubdelay/src/StandardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/dubdelay/src/StandardConfig.h -------------------------------------------------------------------------------- /apps/dubdelay/src/StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/dubdelay/src/StandardHeader.h -------------------------------------------------------------------------------- /apps/dubdelay/src/StandardLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/dubdelay/src/StandardLibrary.cpp -------------------------------------------------------------------------------- /apps/dubdelay/src/XDubDelayComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/dubdelay/src/XDubDelayComponent.h -------------------------------------------------------------------------------- /apps/dubdelay/src/XDubDelayPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/dubdelay/src/XDubDelayPlugin.cpp -------------------------------------------------------------------------------- /apps/dubdelay/src/XDubDelayPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/dubdelay/src/XDubDelayPlugin.h -------------------------------------------------------------------------------- /apps/eqinox/build/VST_Linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/build/VST_Linux/Makefile -------------------------------------------------------------------------------- /apps/eqinox/build/VST_Linux/premake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/build/VST_Linux/premake.lua -------------------------------------------------------------------------------- /apps/eqinox/build/VST_nmake/main.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/build/VST_nmake/main.mak -------------------------------------------------------------------------------- /apps/eqinox/build/VST_win32/exports.def: -------------------------------------------------------------------------------- 1 | LIBRARY eqinox 2 | EXPORTS main=VstPluginMain -------------------------------------------------------------------------------- /apps/eqinox/build/VST_win32/premake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/build/VST_win32/premake.lua -------------------------------------------------------------------------------- /apps/eqinox/build/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/build/linux/Makefile -------------------------------------------------------------------------------- /apps/eqinox/build/linux/eqinox.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/build/linux/eqinox.make -------------------------------------------------------------------------------- /apps/eqinox/build/linux/premake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/build/linux/premake.lua -------------------------------------------------------------------------------- /apps/eqinox/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/readme.txt -------------------------------------------------------------------------------- /apps/eqinox/src/Components/XEQAbout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/src/Components/XEQAbout.cpp -------------------------------------------------------------------------------- /apps/eqinox/src/Components/XEQAbout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/src/Components/XEQAbout.h -------------------------------------------------------------------------------- /apps/eqinox/src/Components/XEQGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/src/Components/XEQGraph.cpp -------------------------------------------------------------------------------- /apps/eqinox/src/Components/XEQGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/src/Components/XEQGraph.h -------------------------------------------------------------------------------- /apps/eqinox/src/Components/XEQMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/src/Components/XEQMain.cpp -------------------------------------------------------------------------------- /apps/eqinox/src/Components/XEQMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/src/Components/XEQMain.h -------------------------------------------------------------------------------- /apps/eqinox/src/Filters/jucetice_EQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/src/Filters/jucetice_EQ.cpp -------------------------------------------------------------------------------- /apps/eqinox/src/Filters/jucetice_EQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/src/Filters/jucetice_EQ.h -------------------------------------------------------------------------------- /apps/eqinox/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/src/Main.cpp -------------------------------------------------------------------------------- /apps/eqinox/src/StandardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/src/StandardConfig.h -------------------------------------------------------------------------------- /apps/eqinox/src/StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/src/StandardHeader.h -------------------------------------------------------------------------------- /apps/eqinox/src/StandardLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/src/StandardLibrary.cpp -------------------------------------------------------------------------------- /apps/eqinox/src/XEQComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/src/XEQComponent.cpp -------------------------------------------------------------------------------- /apps/eqinox/src/XEQComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/src/XEQComponent.h -------------------------------------------------------------------------------- /apps/eqinox/src/XEQPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/src/XEQPlugin.cpp -------------------------------------------------------------------------------- /apps/eqinox/src/XEQPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/eqinox/src/XEQPlugin.h -------------------------------------------------------------------------------- /apps/helix/build/VST_Linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/build/VST_Linux/Makefile -------------------------------------------------------------------------------- /apps/helix/build/VST_Linux/premake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/build/VST_Linux/premake.lua -------------------------------------------------------------------------------- /apps/helix/build/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/build/linux/Makefile -------------------------------------------------------------------------------- /apps/helix/build/linux/helix.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/build/linux/helix.make -------------------------------------------------------------------------------- /apps/helix/build/linux/premake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/build/linux/premake.lua -------------------------------------------------------------------------------- /apps/helix/parameters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/parameters.txt -------------------------------------------------------------------------------- /apps/helix/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/readme.txt -------------------------------------------------------------------------------- /apps/helix/src/HelixComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/HelixComponent.cpp -------------------------------------------------------------------------------- /apps/helix/src/HelixComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/HelixComponent.h -------------------------------------------------------------------------------- /apps/helix/src/HelixGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/HelixGlobals.h -------------------------------------------------------------------------------- /apps/helix/src/HelixPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/HelixPlugin.cpp -------------------------------------------------------------------------------- /apps/helix/src/HelixPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/HelixPlugin.h -------------------------------------------------------------------------------- /apps/helix/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Main.cpp -------------------------------------------------------------------------------- /apps/helix/src/StandardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/StandardConfig.h -------------------------------------------------------------------------------- /apps/helix/src/StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/StandardHeader.h -------------------------------------------------------------------------------- /apps/helix/src/StandardLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/StandardLibrary.cpp -------------------------------------------------------------------------------- /apps/helix/src/Synth/amppan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/amppan.cpp -------------------------------------------------------------------------------- /apps/helix/src/Synth/amppan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/amppan.h -------------------------------------------------------------------------------- /apps/helix/src/Synth/delay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/delay.cpp -------------------------------------------------------------------------------- /apps/helix/src/Synth/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/delay.h -------------------------------------------------------------------------------- /apps/helix/src/Synth/dynamics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/dynamics.cpp -------------------------------------------------------------------------------- /apps/helix/src/Synth/dynamics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/dynamics.h -------------------------------------------------------------------------------- /apps/helix/src/Synth/eg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/eg.cpp -------------------------------------------------------------------------------- /apps/helix/src/Synth/eg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/eg.h -------------------------------------------------------------------------------- /apps/helix/src/Synth/fastmath.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/fastmath.inl -------------------------------------------------------------------------------- /apps/helix/src/Synth/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/filter.cpp -------------------------------------------------------------------------------- /apps/helix/src/Synth/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/filter.h -------------------------------------------------------------------------------- /apps/helix/src/Synth/kbd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/kbd.cpp -------------------------------------------------------------------------------- /apps/helix/src/Synth/kbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/kbd.h -------------------------------------------------------------------------------- /apps/helix/src/Synth/lfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/lfo.cpp -------------------------------------------------------------------------------- /apps/helix/src/Synth/lfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/lfo.h -------------------------------------------------------------------------------- /apps/helix/src/Synth/midicc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/midicc.cpp -------------------------------------------------------------------------------- /apps/helix/src/Synth/midicc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/midicc.h -------------------------------------------------------------------------------- /apps/helix/src/Synth/osc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/osc.cpp -------------------------------------------------------------------------------- /apps/helix/src/Synth/osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/osc.h -------------------------------------------------------------------------------- /apps/helix/src/Synth/params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/params.cpp -------------------------------------------------------------------------------- /apps/helix/src/Synth/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/params.h -------------------------------------------------------------------------------- /apps/helix/src/Synth/reverb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/reverb.cpp -------------------------------------------------------------------------------- /apps/helix/src/Synth/reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/reverb.h -------------------------------------------------------------------------------- /apps/helix/src/Synth/seq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/seq.cpp -------------------------------------------------------------------------------- /apps/helix/src/Synth/seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/seq.h -------------------------------------------------------------------------------- /apps/helix/src/Synth/shaper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/shaper.cpp -------------------------------------------------------------------------------- /apps/helix/src/Synth/shaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/shaper.h -------------------------------------------------------------------------------- /apps/helix/src/Synth/synth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/synth.cpp -------------------------------------------------------------------------------- /apps/helix/src/Synth/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/synth.h -------------------------------------------------------------------------------- /apps/helix/src/Synth/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/types.h -------------------------------------------------------------------------------- /apps/helix/src/Synth/voice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/voice.cpp -------------------------------------------------------------------------------- /apps/helix/src/Synth/voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/voice.h -------------------------------------------------------------------------------- /apps/helix/src/Synth/wavegroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/wavegroup.cpp -------------------------------------------------------------------------------- /apps/helix/src/Synth/wavegroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/helix/src/Synth/wavegroup.h -------------------------------------------------------------------------------- /apps/hybridreverb2/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/CHANGELOG.txt -------------------------------------------------------------------------------- /apps/hybridreverb2/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/TODO.txt -------------------------------------------------------------------------------- /apps/hybridreverb2/build/AU_macosx/hybridreverb2.exp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/hybridreverb2/build/AU_macosx/hybridreverb2.exp.sav: -------------------------------------------------------------------------------- 1 | _JuceAUView 2 | 3 | -------------------------------------------------------------------------------- /apps/hybridreverb2/build/VST_macosx/hybridreverb2.exp: -------------------------------------------------------------------------------- 1 | _VSTPluginMain 2 | 3 | -------------------------------------------------------------------------------- /apps/hybridreverb2/build/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/build/linux/Makefile -------------------------------------------------------------------------------- /apps/hybridreverb2/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/Main.cpp -------------------------------------------------------------------------------- /apps/hybridreverb2/src/ParamCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/ParamCategory.h -------------------------------------------------------------------------------- /apps/hybridreverb2/src/ParamEnvelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/ParamEnvelope.h -------------------------------------------------------------------------------- /apps/hybridreverb2/src/ParamGainDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/ParamGainDelay.h -------------------------------------------------------------------------------- /apps/hybridreverb2/src/ParamPreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/ParamPreset.h -------------------------------------------------------------------------------- /apps/hybridreverb2/src/ParamTimbre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/ParamTimbre.h -------------------------------------------------------------------------------- /apps/hybridreverb2/src/Partitioner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/Partitioner.cpp -------------------------------------------------------------------------------- /apps/hybridreverb2/src/Partitioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/Partitioner.h -------------------------------------------------------------------------------- /apps/hybridreverb2/src/PresetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/PresetManager.h -------------------------------------------------------------------------------- /apps/hybridreverb2/src/SampleData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/SampleData.cpp -------------------------------------------------------------------------------- /apps/hybridreverb2/src/SampleData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/SampleData.h -------------------------------------------------------------------------------- /apps/hybridreverb2/src/SystemConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/SystemConfig.cpp -------------------------------------------------------------------------------- /apps/hybridreverb2/src/SystemConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/SystemConfig.h -------------------------------------------------------------------------------- /apps/hybridreverb2/src/TextList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/TextList.cpp -------------------------------------------------------------------------------- /apps/hybridreverb2/src/TextList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/TextList.h -------------------------------------------------------------------------------- /apps/hybridreverb2/src/gui/FreqPlot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/gui/FreqPlot.cpp -------------------------------------------------------------------------------- /apps/hybridreverb2/src/gui/FreqPlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/gui/FreqPlot.h -------------------------------------------------------------------------------- /apps/hybridreverb2/src/gui/IRPlot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/gui/IRPlot.cpp -------------------------------------------------------------------------------- /apps/hybridreverb2/src/gui/IRPlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/gui/IRPlot.h -------------------------------------------------------------------------------- /apps/hybridreverb2/src/gui/TabAbout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/gui/TabAbout.cpp -------------------------------------------------------------------------------- /apps/hybridreverb2/src/gui/TabAbout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/gui/TabAbout.h -------------------------------------------------------------------------------- /apps/hybridreverb2/src/gui/TabMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/gui/TabMain.cpp -------------------------------------------------------------------------------- /apps/hybridreverb2/src/gui/TabMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/gui/TabMain.h -------------------------------------------------------------------------------- /apps/hybridreverb2/src/gui/TabTimbre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/gui/TabTimbre.h -------------------------------------------------------------------------------- /apps/hybridreverb2/src/gui/help_text.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/gui/help_text.sh -------------------------------------------------------------------------------- /apps/hybridreverb2/src/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/includes.h -------------------------------------------------------------------------------- /apps/hybridreverb2/src/juce_AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/juce_AppConfig.h -------------------------------------------------------------------------------- /apps/hybridreverb2/src/windows_quirks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/hybridreverb2/src/windows_quirks.h -------------------------------------------------------------------------------- /apps/implzr/build/VST_Linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/build/VST_Linux/Makefile -------------------------------------------------------------------------------- /apps/implzr/build/VST_Linux/implzr.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/build/VST_Linux/implzr.make -------------------------------------------------------------------------------- /apps/implzr/build/VST_Linux/premake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/build/VST_Linux/premake.lua -------------------------------------------------------------------------------- /apps/implzr/build/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/build/linux/Makefile -------------------------------------------------------------------------------- /apps/implzr/build/linux/implzr.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/build/linux/implzr.make -------------------------------------------------------------------------------- /apps/implzr/build/linux/premake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/build/linux/premake.lua -------------------------------------------------------------------------------- /apps/implzr/impulses/IR_theater.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/impulses/IR_theater.wav -------------------------------------------------------------------------------- /apps/implzr/impulses/LargeCave.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/impulses/LargeCave.wav -------------------------------------------------------------------------------- /apps/implzr/impulses/iR_cathedral.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/impulses/iR_cathedral.wav -------------------------------------------------------------------------------- /apps/implzr/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/readme.txt -------------------------------------------------------------------------------- /apps/implzr/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/Main.cpp -------------------------------------------------------------------------------- /apps/implzr/src/StandardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/StandardConfig.h -------------------------------------------------------------------------------- /apps/implzr/src/StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/StandardHeader.h -------------------------------------------------------------------------------- /apps/implzr/src/StandardLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/StandardLibrary.cpp -------------------------------------------------------------------------------- /apps/implzr/src/XImpulseComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/XImpulseComponent.cpp -------------------------------------------------------------------------------- /apps/implzr/src/XImpulseComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/XImpulseComponent.h -------------------------------------------------------------------------------- /apps/implzr/src/XImpulsePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/XImpulsePlugin.cpp -------------------------------------------------------------------------------- /apps/implzr/src/XImpulsePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/XImpulsePlugin.h -------------------------------------------------------------------------------- /apps/implzr/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/config.h -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/allpass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/allpass.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/allpass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/allpass.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/allpass_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/allpass_t.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/blockDelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/blockDelay.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/blockDelay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/blockDelay.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/comb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/comb.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/comb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/comb.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/comb_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/comb_t.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/compmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/compmodel.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/compmodel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/compmodel.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/delay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/delay.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/delay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/delay.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/delay_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/delay_t.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/efilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/efilter.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/efilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/efilter.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/efilter_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/efilter_t.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/firfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/firfilter.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/firfilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/firfilter.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/firwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/firwindow.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/firwindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/firwindow.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/frag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/frag.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/frag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/frag.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/frag_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/frag_t.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/fv3_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/fv3_defs.h -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/fv3_ns_end.h: -------------------------------------------------------------------------------- 1 | }; 2 | -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/fv3_ns_start.h: -------------------------------------------------------------------------------- 1 | namespace fv3 2 | { 3 | -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/irbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/irbase.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/irbase_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/irbase_t.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/irmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/irmodel.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/irmodel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/irmodel.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/irmodel2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/irmodel2.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/irmodel2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/irmodel2.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/irmodel2_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/irmodel2_t.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/irmodel3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/irmodel3.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/irmodel3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/irmodel3.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/irmodel3_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/irmodel3_t.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/irmodel_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/irmodel_t.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/irmodels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/irmodels.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/irmodels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/irmodels.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/irmodels_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/irmodels_t.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/limitmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/limitmodel.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/nrev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/nrev.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/nrev.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/nrev.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/nrev_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/nrev_t.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/rms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/rms.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/rms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/rms.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/rms_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/rms_t.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/scomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/scomp.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/scomp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/scomp.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/scomp_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/scomp_t.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/slimit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/slimit.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/slimit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/slimit.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/src.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/src.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/src.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/src.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/src_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/src_t.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/stenh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/stenh.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/stenh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/stenh.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/stenh_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/stenh_t.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/tuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/tuning.h -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/utils.cpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/utils.hpp -------------------------------------------------------------------------------- /apps/implzr/src/freeverb/utils_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/implzr/src/freeverb/utils_t.hpp -------------------------------------------------------------------------------- /apps/jacked/build/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jacked/build/linux/Makefile -------------------------------------------------------------------------------- /apps/jacked/build/linux/jacked.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jacked/build/linux/jacked.make -------------------------------------------------------------------------------- /apps/jacked/build/linux/premake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jacked/build/linux/premake.lua -------------------------------------------------------------------------------- /apps/jacked/src/JackedDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jacked/src/JackedDevice.cpp -------------------------------------------------------------------------------- /apps/jacked/src/JackedDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jacked/src/JackedDevice.h -------------------------------------------------------------------------------- /apps/jacked/src/JackedGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jacked/src/JackedGraph.cpp -------------------------------------------------------------------------------- /apps/jacked/src/JackedGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jacked/src/JackedGraph.h -------------------------------------------------------------------------------- /apps/jacked/src/JackedMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jacked/src/JackedMain.cpp -------------------------------------------------------------------------------- /apps/jacked/src/JackedSystemTray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jacked/src/JackedSystemTray.cpp -------------------------------------------------------------------------------- /apps/jacked/src/JackedSystemTray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jacked/src/JackedSystemTray.h -------------------------------------------------------------------------------- /apps/jacked/src/JackedWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jacked/src/JackedWindow.cpp -------------------------------------------------------------------------------- /apps/jacked/src/JackedWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jacked/src/JackedWindow.h -------------------------------------------------------------------------------- /apps/jost/build/VST_Linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/build/VST_Linux/Makefile -------------------------------------------------------------------------------- /apps/jost/build/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/build/linux/Makefile -------------------------------------------------------------------------------- /apps/jost/build/linux/jost.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/build/linux/jost.make -------------------------------------------------------------------------------- /apps/jost/build/linux/premake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/build/linux/premake.lua -------------------------------------------------------------------------------- /apps/jost/build/macosx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/build/macosx/Info.plist -------------------------------------------------------------------------------- /apps/jost/build/win32/vc8/Jost.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/build/win32/vc8/Jost.sln -------------------------------------------------------------------------------- /apps/jost/compile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/compile.txt -------------------------------------------------------------------------------- /apps/jost/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/readme.txt -------------------------------------------------------------------------------- /apps/jost/src/Commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/Commands.cpp -------------------------------------------------------------------------------- /apps/jost/src/Commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/Commands.h -------------------------------------------------------------------------------- /apps/jost/src/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/Config.cpp -------------------------------------------------------------------------------- /apps/jost/src/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/Config.h -------------------------------------------------------------------------------- /apps/jost/src/HostFilterBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/HostFilterBase.cpp -------------------------------------------------------------------------------- /apps/jost/src/HostFilterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/HostFilterBase.h -------------------------------------------------------------------------------- /apps/jost/src/HostFilterComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/HostFilterComponent.h -------------------------------------------------------------------------------- /apps/jost/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/Main.cpp -------------------------------------------------------------------------------- /apps/jost/src/StandardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/StandardConfig.h -------------------------------------------------------------------------------- /apps/jost/src/StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/StandardHeader.h -------------------------------------------------------------------------------- /apps/jost/src/StandardLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/StandardLibrary.cpp -------------------------------------------------------------------------------- /apps/jost/src/model/BasePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/model/BasePlugin.cpp -------------------------------------------------------------------------------- /apps/jost/src/model/BasePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/model/BasePlugin.h -------------------------------------------------------------------------------- /apps/jost/src/model/Host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/model/Host.cpp -------------------------------------------------------------------------------- /apps/jost/src/model/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/model/Host.h -------------------------------------------------------------------------------- /apps/jost/src/model/MultiTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/model/MultiTrack.cpp -------------------------------------------------------------------------------- /apps/jost/src/model/MultiTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/model/MultiTrack.h -------------------------------------------------------------------------------- /apps/jost/src/model/PluginLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/model/PluginLoader.cpp -------------------------------------------------------------------------------- /apps/jost/src/model/PluginLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/model/PluginLoader.h -------------------------------------------------------------------------------- /apps/jost/src/model/Transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/model/Transport.cpp -------------------------------------------------------------------------------- /apps/jost/src/model/Transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/model/Transport.h -------------------------------------------------------------------------------- /apps/jost/src/resources/Jost.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/resources/Jost.icns -------------------------------------------------------------------------------- /apps/jost/src/resources/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/resources/Resources.h -------------------------------------------------------------------------------- /apps/jost/src/resources/jost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/resources/jost.png -------------------------------------------------------------------------------- /apps/jost/src/resources/resource.jrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/resources/resource.jrc -------------------------------------------------------------------------------- /apps/jost/src/ui/GraphComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/ui/GraphComponent.cpp -------------------------------------------------------------------------------- /apps/jost/src/ui/GraphComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/ui/GraphComponent.h -------------------------------------------------------------------------------- /apps/jost/src/ui/TrackComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/ui/TrackComponent.cpp -------------------------------------------------------------------------------- /apps/jost/src/ui/TrackComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/jost/src/ui/TrackComponent.h -------------------------------------------------------------------------------- /apps/kombat/build/VST_Linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/kombat/build/VST_Linux/Makefile -------------------------------------------------------------------------------- /apps/kombat/presets/makeup.fxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/kombat/presets/makeup.fxp -------------------------------------------------------------------------------- /apps/kombat/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/kombat/readme.txt -------------------------------------------------------------------------------- /apps/kombat/src/StandardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/kombat/src/StandardConfig.h -------------------------------------------------------------------------------- /apps/kombat/src/StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/kombat/src/StandardHeader.h -------------------------------------------------------------------------------- /apps/kombat/src/StandardLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/kombat/src/StandardLibrary.cpp -------------------------------------------------------------------------------- /apps/kombat/src/XCompComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/kombat/src/XCompComponent.cpp -------------------------------------------------------------------------------- /apps/kombat/src/XCompComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/kombat/src/XCompComponent.h -------------------------------------------------------------------------------- /apps/kombat/src/XCompGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/kombat/src/XCompGlobals.h -------------------------------------------------------------------------------- /apps/kombat/src/XCompPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/kombat/src/XCompPlugin.cpp -------------------------------------------------------------------------------- /apps/kombat/src/XCompPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/kombat/src/XCompPlugin.h -------------------------------------------------------------------------------- /apps/monitor/src/StandardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/monitor/src/StandardConfig.h -------------------------------------------------------------------------------- /apps/monitor/src/StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/monitor/src/StandardHeader.h -------------------------------------------------------------------------------- /apps/monitor/src/StandardLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/monitor/src/StandardLibrary.cpp -------------------------------------------------------------------------------- /apps/monitor/src/xMonEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/monitor/src/xMonEditor.cpp -------------------------------------------------------------------------------- /apps/monitor/src/xMonEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/monitor/src/xMonEditor.h -------------------------------------------------------------------------------- /apps/monitor/src/xMonFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/monitor/src/xMonFilter.cpp -------------------------------------------------------------------------------- /apps/monitor/src/xMonFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/monitor/src/xMonFilter.h -------------------------------------------------------------------------------- /apps/nekobee/build/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/nekobee/build/linux/Makefile -------------------------------------------------------------------------------- /apps/nekobee/build/linux/premake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/nekobee/build/linux/premake.lua -------------------------------------------------------------------------------- /apps/nekobee/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/nekobee/readme.txt -------------------------------------------------------------------------------- /apps/nekobee/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/nekobee/src/Main.cpp -------------------------------------------------------------------------------- /apps/nekobee/src/Nekobee/dssi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/nekobee/src/Nekobee/dssi.h -------------------------------------------------------------------------------- /apps/nekobee/src/Nekobee/gui_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/nekobee/src/Nekobee/gui_data.h -------------------------------------------------------------------------------- /apps/nekobee/src/Nekobee/ladspa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/nekobee/src/Nekobee/ladspa.h -------------------------------------------------------------------------------- /apps/nekobee/src/Nekobee/nekobee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/nekobee/src/Nekobee/nekobee.h -------------------------------------------------------------------------------- /apps/nekobee/src/NekobeeComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/nekobee/src/NekobeeComponent.h -------------------------------------------------------------------------------- /apps/nekobee/src/NekobeeGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/nekobee/src/NekobeeGlobals.h -------------------------------------------------------------------------------- /apps/nekobee/src/NekobeePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/nekobee/src/NekobeePlugin.cpp -------------------------------------------------------------------------------- /apps/nekobee/src/NekobeePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/nekobee/src/NekobeePlugin.h -------------------------------------------------------------------------------- /apps/nekobee/src/StandardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/nekobee/src/StandardConfig.h -------------------------------------------------------------------------------- /apps/nekobee/src/StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/nekobee/src/StandardHeader.h -------------------------------------------------------------------------------- /apps/nekobee/src/StandardLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/nekobee/src/StandardLibrary.cpp -------------------------------------------------------------------------------- /apps/notemap/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/notemap/readme.txt -------------------------------------------------------------------------------- /apps/notemap/src/ChannelSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/notemap/src/ChannelSelector.h -------------------------------------------------------------------------------- /apps/notemap/src/Data/Data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/notemap/src/Data/Data.cpp -------------------------------------------------------------------------------- /apps/notemap/src/Data/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/notemap/src/Data/Data.h -------------------------------------------------------------------------------- /apps/notemap/src/MidiNoteMapEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/notemap/src/MidiNoteMapEditor.h -------------------------------------------------------------------------------- /apps/notemap/src/MidiNoteMapFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/notemap/src/MidiNoteMapFilter.h -------------------------------------------------------------------------------- /apps/notemap/src/NoteMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/notemap/src/NoteMap.h -------------------------------------------------------------------------------- /apps/notemap/src/NoteMapHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/notemap/src/NoteMapHandler.cpp -------------------------------------------------------------------------------- /apps/notemap/src/NoteMapHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/notemap/src/NoteMapHandler.h -------------------------------------------------------------------------------- /apps/notemap/src/NoteMapKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/notemap/src/NoteMapKeyboard.h -------------------------------------------------------------------------------- /apps/notemap/src/StandardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/notemap/src/StandardConfig.h -------------------------------------------------------------------------------- /apps/notemap/src/StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/notemap/src/StandardHeader.h -------------------------------------------------------------------------------- /apps/notemap/src/StandardLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/notemap/src/StandardLibrary.cpp -------------------------------------------------------------------------------- /apps/peggy2000/build/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/peggy2000/build/linux/Makefile -------------------------------------------------------------------------------- /apps/peggy2000/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/peggy2000/readme.txt -------------------------------------------------------------------------------- /apps/peggy2000/src/EditorComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/peggy2000/src/EditorComponent.h -------------------------------------------------------------------------------- /apps/peggy2000/src/JuceFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/peggy2000/src/JuceFilter.cpp -------------------------------------------------------------------------------- /apps/peggy2000/src/JuceFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/peggy2000/src/JuceFilter.h -------------------------------------------------------------------------------- /apps/peggy2000/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/peggy2000/src/Main.cpp -------------------------------------------------------------------------------- /apps/peggy2000/src/StandardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/peggy2000/src/StandardConfig.h -------------------------------------------------------------------------------- /apps/peggy2000/src/StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/peggy2000/src/StandardHeader.h -------------------------------------------------------------------------------- /apps/peggy2000/src/bg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/peggy2000/src/bg.cpp -------------------------------------------------------------------------------- /apps/peggy2000/src/bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/peggy2000/src/bg.h -------------------------------------------------------------------------------- /apps/peggy2000/src/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/peggy2000/src/parameters.h -------------------------------------------------------------------------------- /apps/peggy2000/src/synth/cADSR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/peggy2000/src/synth/cADSR.h -------------------------------------------------------------------------------- /apps/peggy2000/src/synth/cAmpADSR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/peggy2000/src/synth/cAmpADSR.h -------------------------------------------------------------------------------- /apps/peggy2000/src/synth/cArp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/peggy2000/src/synth/cArp.h -------------------------------------------------------------------------------- /apps/peggy2000/src/synth/cChorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/peggy2000/src/synth/cChorus.h -------------------------------------------------------------------------------- /apps/peggy2000/src/synth/cDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/peggy2000/src/synth/cDelay.h -------------------------------------------------------------------------------- /apps/peggy2000/src/synth/cFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/peggy2000/src/synth/cFilter.h -------------------------------------------------------------------------------- /apps/peggy2000/src/synth/cTblLFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/peggy2000/src/synth/cTblLFO.h -------------------------------------------------------------------------------- /apps/peggy2000/src/synth/cTblOSC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/peggy2000/src/synth/cTblOSC.h -------------------------------------------------------------------------------- /apps/peggy2000/src/synth/cVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/peggy2000/src/synth/cVoice.h -------------------------------------------------------------------------------- /apps/soundcrab/build/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/build/linux/Makefile -------------------------------------------------------------------------------- /apps/soundcrab/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/readme.txt -------------------------------------------------------------------------------- /apps/soundcrab/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/Main.cpp -------------------------------------------------------------------------------- /apps/soundcrab/src/SoundCrabConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/SoundCrabConfig.h -------------------------------------------------------------------------------- /apps/soundcrab/src/SoundCrabEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/SoundCrabEditor.h -------------------------------------------------------------------------------- /apps/soundcrab/src/SoundCrabPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/SoundCrabPlugin.h -------------------------------------------------------------------------------- /apps/soundcrab/src/StandardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/StandardConfig.h -------------------------------------------------------------------------------- /apps/soundcrab/src/StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/StandardHeader.h -------------------------------------------------------------------------------- /apps/soundcrab/src/Synth/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/Synth/Makefile.am -------------------------------------------------------------------------------- /apps/soundcrab/src/Synth/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/Synth/Makefile.in -------------------------------------------------------------------------------- /apps/soundcrab/src/Synth/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/Synth/config.h -------------------------------------------------------------------------------- /apps/soundcrab/src/Synth/fluid_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/Synth/fluid_cmd.c -------------------------------------------------------------------------------- /apps/soundcrab/src/Synth/fluid_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/Synth/fluid_cmd.h -------------------------------------------------------------------------------- /apps/soundcrab/src/Synth/fluid_dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/Synth/fluid_dll.c -------------------------------------------------------------------------------- /apps/soundcrab/src/Synth/fluid_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/Synth/fluid_gen.c -------------------------------------------------------------------------------- /apps/soundcrab/src/Synth/fluid_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/Synth/fluid_gen.h -------------------------------------------------------------------------------- /apps/soundcrab/src/Synth/fluid_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/Synth/fluid_io.c -------------------------------------------------------------------------------- /apps/soundcrab/src/Synth/fluid_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/Synth/fluid_io.h -------------------------------------------------------------------------------- /apps/soundcrab/src/Synth/fluid_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/Synth/fluid_mod.c -------------------------------------------------------------------------------- /apps/soundcrab/src/Synth/fluid_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/Synth/fluid_mod.h -------------------------------------------------------------------------------- /apps/soundcrab/src/Synth/fluid_rev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/Synth/fluid_rev.c -------------------------------------------------------------------------------- /apps/soundcrab/src/Synth/fluid_rev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/Synth/fluid_rev.h -------------------------------------------------------------------------------- /apps/soundcrab/src/Synth/fluid_seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/Synth/fluid_seq.c -------------------------------------------------------------------------------- /apps/soundcrab/src/Synth/fluid_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/Synth/fluid_sys.c -------------------------------------------------------------------------------- /apps/soundcrab/src/Synth/fluid_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/soundcrab/src/Synth/fluid_sys.h -------------------------------------------------------------------------------- /apps/tal-filter/build/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-filter/build/linux/Makefile -------------------------------------------------------------------------------- /apps/tal-filter/src/Engine/Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-filter/src/Engine/Engine.h -------------------------------------------------------------------------------- /apps/tal-filter/src/Engine/Lfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-filter/src/Engine/Lfo.cpp -------------------------------------------------------------------------------- /apps/tal-filter/src/Engine/Lfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-filter/src/Engine/Lfo.h -------------------------------------------------------------------------------- /apps/tal-filter/src/Engine/Params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-filter/src/Engine/Params.h -------------------------------------------------------------------------------- /apps/tal-filter/src/FilmStripKnob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-filter/src/FilmStripKnob.h -------------------------------------------------------------------------------- /apps/tal-filter/src/ImageSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-filter/src/ImageSlider.h -------------------------------------------------------------------------------- /apps/tal-filter/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-filter/src/Main.cpp -------------------------------------------------------------------------------- /apps/tal-filter/src/Program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-filter/src/Program.h -------------------------------------------------------------------------------- /apps/tal-filter/src/ProgramChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-filter/src/ProgramChunk.h -------------------------------------------------------------------------------- /apps/tal-filter/src/TalComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-filter/src/TalComponent.cpp -------------------------------------------------------------------------------- /apps/tal-filter/src/TalComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-filter/src/TalComponent.h -------------------------------------------------------------------------------- /apps/tal-filter/src/TalCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-filter/src/TalCore.cpp -------------------------------------------------------------------------------- /apps/tal-filter/src/TalCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-filter/src/TalCore.h -------------------------------------------------------------------------------- /apps/tal-filter/src/TalPreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-filter/src/TalPreset.h -------------------------------------------------------------------------------- /apps/tal-filter/src/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-filter/src/includes.h -------------------------------------------------------------------------------- /apps/tal-reverb/build/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-reverb/build/linux/Makefile -------------------------------------------------------------------------------- /apps/tal-reverb/src/Engine/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-reverb/src/Engine/Filter.h -------------------------------------------------------------------------------- /apps/tal-reverb/src/Engine/Params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-reverb/src/Engine/Params.h -------------------------------------------------------------------------------- /apps/tal-reverb/src/Engine/Reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-reverb/src/Engine/Reverb.h -------------------------------------------------------------------------------- /apps/tal-reverb/src/FilmStripKnob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-reverb/src/FilmStripKnob.h -------------------------------------------------------------------------------- /apps/tal-reverb/src/ImageSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-reverb/src/ImageSlider.h -------------------------------------------------------------------------------- /apps/tal-reverb/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-reverb/src/Main.cpp -------------------------------------------------------------------------------- /apps/tal-reverb/src/Program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-reverb/src/Program.h -------------------------------------------------------------------------------- /apps/tal-reverb/src/ProgramChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-reverb/src/ProgramChunk.h -------------------------------------------------------------------------------- /apps/tal-reverb/src/TalCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-reverb/src/TalCore.cpp -------------------------------------------------------------------------------- /apps/tal-reverb/src/TalCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-reverb/src/TalCore.h -------------------------------------------------------------------------------- /apps/tal-reverb/src/TalPreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-reverb/src/TalPreset.h -------------------------------------------------------------------------------- /apps/tal-reverb/src/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/tal-reverb/src/includes.h -------------------------------------------------------------------------------- /apps/test/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/test/hello -------------------------------------------------------------------------------- /apps/test/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/test/hello.c -------------------------------------------------------------------------------- /apps/test/sconstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/test/sconstruct -------------------------------------------------------------------------------- /apps/vex/build/VST_Linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/build/VST_Linux/Makefile -------------------------------------------------------------------------------- /apps/vex/build/VST_Linux/premake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/build/VST_Linux/premake.lua -------------------------------------------------------------------------------- /apps/vex/build/VST_Linux/vexvst.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/build/VST_Linux/vexvst.make -------------------------------------------------------------------------------- /apps/vex/build/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/build/linux/Makefile -------------------------------------------------------------------------------- /apps/vex/build/linux/premake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/build/linux/premake.lua -------------------------------------------------------------------------------- /apps/vex/build/linux/vex.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/build/linux/vex.make -------------------------------------------------------------------------------- /apps/vex/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/readme.txt -------------------------------------------------------------------------------- /apps/vex/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/Main.cpp -------------------------------------------------------------------------------- /apps/vex/src/PeggySettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/PeggySettings.h -------------------------------------------------------------------------------- /apps/vex/src/PeggyViewComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/PeggyViewComponent.h -------------------------------------------------------------------------------- /apps/vex/src/PresetMan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/PresetMan.h -------------------------------------------------------------------------------- /apps/vex/src/StandardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/StandardConfig.h -------------------------------------------------------------------------------- /apps/vex/src/StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/StandardHeader.h -------------------------------------------------------------------------------- /apps/vex/src/StandardLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/StandardLibrary.cpp -------------------------------------------------------------------------------- /apps/vex/src/VexEditorComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/VexEditorComponent.cpp -------------------------------------------------------------------------------- /apps/vex/src/VexEditorComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/VexEditorComponent.h -------------------------------------------------------------------------------- /apps/vex/src/VexFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/VexFilter.cpp -------------------------------------------------------------------------------- /apps/vex/src/VexFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/VexFilter.h -------------------------------------------------------------------------------- /apps/vex/src/gui/BoolGridComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/gui/BoolGridComponent.h -------------------------------------------------------------------------------- /apps/vex/src/gui/SnappingSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/gui/SnappingSlider.h -------------------------------------------------------------------------------- /apps/vex/src/resources/Resources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/resources/Resources.cpp -------------------------------------------------------------------------------- /apps/vex/src/resources/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/resources/Resources.h -------------------------------------------------------------------------------- /apps/vex/src/synth/cADSR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/synth/cADSR.h -------------------------------------------------------------------------------- /apps/vex/src/synth/cArp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/synth/cArp.h -------------------------------------------------------------------------------- /apps/vex/src/synth/cChorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/synth/cChorus.h -------------------------------------------------------------------------------- /apps/vex/src/synth/cDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/synth/cDelay.h -------------------------------------------------------------------------------- /apps/vex/src/synth/cReverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/synth/cReverb.h -------------------------------------------------------------------------------- /apps/vex/src/synth/cSyntModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/synth/cSyntModule.h -------------------------------------------------------------------------------- /apps/vex/src/synth/cVoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/synth/cVoice.cpp -------------------------------------------------------------------------------- /apps/vex/src/synth/cVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/synth/cVoice.h -------------------------------------------------------------------------------- /apps/vex/src/synth/cWaveRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/synth/cWaveRenderer.cpp -------------------------------------------------------------------------------- /apps/vex/src/synth/cWaveRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/synth/cWaveRenderer.h -------------------------------------------------------------------------------- /apps/vex/src/synth/freeverb/comb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/synth/freeverb/comb.cpp -------------------------------------------------------------------------------- /apps/vex/src/synth/freeverb/comb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/synth/freeverb/comb.hpp -------------------------------------------------------------------------------- /apps/vex/src/synth/freeverb/tuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/synth/freeverb/tuning.h -------------------------------------------------------------------------------- /apps/vex/src/waverom/ResourceFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/ResourceFile.h -------------------------------------------------------------------------------- /apps/vex/src/waverom/asym_saw.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/asym_saw.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/bass_tone.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/bass_tone.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/buzz_1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/buzz_1.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/buzz_2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/buzz_2.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/deep_ring_1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/deep_ring_1.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/deep_ring_2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/deep_ring_2.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/epiano_tone.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/epiano_tone.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/ghost_1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/ghost_1.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/ghost_2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/ghost_2.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/ghost_3.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/ghost_3.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/ghost_4.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/ghost_4.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/grind_1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/grind_1.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/grind_2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/grind_2.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/multi_pulse.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/multi_pulse.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/no_name.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/no_name.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/one_string.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/one_string.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/organ_1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/organ_1.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/organ_2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/organ_2.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/phasing_sqr.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/phasing_sqr.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/pulse.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/pulse.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/saw.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/saw.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/sharp_1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/sharp_1.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/sharp_2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/sharp_2.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/sine.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/sine.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/soft_1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/soft_1.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/soft_2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/soft_2.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/soft_3.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/soft_3.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/soft_4.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/soft_4.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/square.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/square.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/string_fuzz.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/string_fuzz.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/strings_1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/strings_1.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/strings_2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/strings_2.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/syn_choir_1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/syn_choir_1.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/syn_choir_2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/syn_choir_2.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/syn_choir_3.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/syn_choir_3.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/thin_1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/thin_1.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/thin_2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/thin_2.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/two_strings.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/two_strings.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/voice_1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/voice_1.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/voice_2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/voice_2.raw -------------------------------------------------------------------------------- /apps/vex/src/waverom/waverom.jrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/vex/src/waverom/waverom.jrc -------------------------------------------------------------------------------- /apps/wolpertinger/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/wolpertinger/README -------------------------------------------------------------------------------- /apps/wolpertinger/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/wolpertinger/src/Main.cpp -------------------------------------------------------------------------------- /apps/wolpertinger/src/editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/wolpertinger/src/editor.cpp -------------------------------------------------------------------------------- /apps/wolpertinger/src/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/wolpertinger/src/editor.h -------------------------------------------------------------------------------- /apps/wolpertinger/src/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/wolpertinger/src/filters.h -------------------------------------------------------------------------------- /apps/wolpertinger/src/synth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/wolpertinger/src/synth.cpp -------------------------------------------------------------------------------- /apps/wolpertinger/src/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/apps/wolpertinger/src/synth.h -------------------------------------------------------------------------------- /juce/build/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/build/linux/Makefile -------------------------------------------------------------------------------- /juce/build/linux/juce.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/build/linux/juce.make -------------------------------------------------------------------------------- /juce/build/linux/premake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/build/linux/premake.lua -------------------------------------------------------------------------------- /juce/build/macosx/juce.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/build/macosx/juce.xcconfig -------------------------------------------------------------------------------- /juce/build/win32/vc8/JUCE.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/build/win32/vc8/JUCE.sln -------------------------------------------------------------------------------- /juce/build/win32/vc8/JUCE.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/build/win32/vc8/JUCE.vcproj -------------------------------------------------------------------------------- /juce/build/win32/vc8/JUCED.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/build/win32/vc8/JUCED.vcproj -------------------------------------------------------------------------------- /juce/docs/JUCE changelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/docs/JUCE changelist.txt -------------------------------------------------------------------------------- /juce/docs/JUCE readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/docs/JUCE readme.html -------------------------------------------------------------------------------- /juce/docs/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/docs/gpl.txt -------------------------------------------------------------------------------- /juce/docs/images/rms_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/docs/images/rms_logo.gif -------------------------------------------------------------------------------- /juce/docs/rawmat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/docs/rawmat.css -------------------------------------------------------------------------------- /juce/juce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/juce.h -------------------------------------------------------------------------------- /juce/juce_Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/juce_Config.h -------------------------------------------------------------------------------- /juce/src/audio/dsp/juce_IIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/audio/dsp/juce_IIRFilter.h -------------------------------------------------------------------------------- /juce/src/audio/midi/juce_MidiFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/audio/midi/juce_MidiFile.h -------------------------------------------------------------------------------- /juce/src/containers/juce_Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/containers/juce_Array.h -------------------------------------------------------------------------------- /juce/src/containers/juce_BitArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/containers/juce_BitArray.h -------------------------------------------------------------------------------- /juce/src/containers/juce_HeapBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/containers/juce_HeapBlock.h -------------------------------------------------------------------------------- /juce/src/containers/juce_SortedSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/containers/juce_SortedSet.h -------------------------------------------------------------------------------- /juce/src/containers/juce_SparseSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/containers/juce_SparseSet.h -------------------------------------------------------------------------------- /juce/src/containers/juce_Value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/containers/juce_Value.cpp -------------------------------------------------------------------------------- /juce/src/containers/juce_Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/containers/juce_Value.h -------------------------------------------------------------------------------- /juce/src/containers/juce_ValueTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/containers/juce_ValueTree.h -------------------------------------------------------------------------------- /juce/src/containers/juce_Variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/containers/juce_Variant.cpp -------------------------------------------------------------------------------- /juce/src/containers/juce_Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/containers/juce_Variant.h -------------------------------------------------------------------------------- /juce/src/containers/juce_VoidArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/containers/juce_VoidArray.h -------------------------------------------------------------------------------- /juce/src/core/juce_Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_Atomic.h -------------------------------------------------------------------------------- /juce/src/core/juce_ByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_ByteOrder.h -------------------------------------------------------------------------------- /juce/src/core/juce_FileLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_FileLogger.cpp -------------------------------------------------------------------------------- /juce/src/core/juce_FileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_FileLogger.h -------------------------------------------------------------------------------- /juce/src/core/juce_Initialisation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_Initialisation.h -------------------------------------------------------------------------------- /juce/src/core/juce_Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_Logger.cpp -------------------------------------------------------------------------------- /juce/src/core/juce_Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_Logger.h -------------------------------------------------------------------------------- /juce/src/core/juce_MathsFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_MathsFunctions.h -------------------------------------------------------------------------------- /juce/src/core/juce_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_Memory.h -------------------------------------------------------------------------------- /juce/src/core/juce_PlatformDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_PlatformDefs.h -------------------------------------------------------------------------------- /juce/src/core/juce_Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_Random.cpp -------------------------------------------------------------------------------- /juce/src/core/juce_Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_Random.h -------------------------------------------------------------------------------- /juce/src/core/juce_RelativeTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_RelativeTime.cpp -------------------------------------------------------------------------------- /juce/src/core/juce_RelativeTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_RelativeTime.h -------------------------------------------------------------------------------- /juce/src/core/juce_Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_Singleton.h -------------------------------------------------------------------------------- /juce/src/core/juce_StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_StandardHeader.h -------------------------------------------------------------------------------- /juce/src/core/juce_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_SystemStats.cpp -------------------------------------------------------------------------------- /juce/src/core/juce_SystemStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_SystemStats.h -------------------------------------------------------------------------------- /juce/src/core/juce_TargetPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_TargetPlatform.h -------------------------------------------------------------------------------- /juce/src/core/juce_Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_Time.cpp -------------------------------------------------------------------------------- /juce/src/core/juce_Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_Time.h -------------------------------------------------------------------------------- /juce/src/core/juce_Uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_Uuid.cpp -------------------------------------------------------------------------------- /juce/src/core/juce_Uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/core/juce_Uuid.h -------------------------------------------------------------------------------- /juce/src/cryptography/juce_MD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/cryptography/juce_MD5.cpp -------------------------------------------------------------------------------- /juce/src/cryptography/juce_MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/cryptography/juce_MD5.h -------------------------------------------------------------------------------- /juce/src/cryptography/juce_Primes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/cryptography/juce_Primes.h -------------------------------------------------------------------------------- /juce/src/cryptography/juce_RSAKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/cryptography/juce_RSAKey.h -------------------------------------------------------------------------------- /juce/src/events/juce_AsyncUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/events/juce_AsyncUpdater.h -------------------------------------------------------------------------------- /juce/src/events/juce_Message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/events/juce_Message.cpp -------------------------------------------------------------------------------- /juce/src/events/juce_Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/events/juce_Message.h -------------------------------------------------------------------------------- /juce/src/events/juce_MultiTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/events/juce_MultiTimer.cpp -------------------------------------------------------------------------------- /juce/src/events/juce_MultiTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/events/juce_MultiTimer.h -------------------------------------------------------------------------------- /juce/src/events/juce_Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/events/juce_Timer.cpp -------------------------------------------------------------------------------- /juce/src/events/juce_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/events/juce_Timer.h -------------------------------------------------------------------------------- /juce/src/extended/dependancies/curl/include/curl/types.h: -------------------------------------------------------------------------------- 1 | /* not used */ 2 | -------------------------------------------------------------------------------- /juce/src/extended/dependancies/ladspa_sdk/doc/ladspa.h.txt: -------------------------------------------------------------------------------- 1 | XSym 2 | 0015 3 | 7af62 -------------------------------------------------------------------------------- /juce/src/io/files/juce_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/files/juce_File.cpp -------------------------------------------------------------------------------- /juce/src/io/files/juce_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/files/juce_File.h -------------------------------------------------------------------------------- /juce/src/io/files/juce_NamedPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/files/juce_NamedPipe.cpp -------------------------------------------------------------------------------- /juce/src/io/files/juce_NamedPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/files/juce_NamedPipe.h -------------------------------------------------------------------------------- /juce/src/io/files/juce_ZipFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/files/juce_ZipFile.cpp -------------------------------------------------------------------------------- /juce/src/io/files/juce_ZipFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/files/juce_ZipFile.h -------------------------------------------------------------------------------- /juce/src/io/network/juce_Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/network/juce_Socket.cpp -------------------------------------------------------------------------------- /juce/src/io/network/juce_Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/network/juce_Socket.h -------------------------------------------------------------------------------- /juce/src/io/network/juce_URL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/network/juce_URL.cpp -------------------------------------------------------------------------------- /juce/src/io/network/juce_URL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/network/juce_URL.h -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/README -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/adler32.c -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/compress.c -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/crc32.c -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/crc32.h -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/deflate.c -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/deflate.h -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/infback.c -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/inffast.c -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/inffast.h -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/inffixed.h -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/inflate.c -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/inflate.h -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/inftrees.c -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/inftrees.h -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/trees.c -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/trees.h -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/uncompr.c -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/zconf.h -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/zconf.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/zconf.in.h -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/zlib.h -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/zutil.c -------------------------------------------------------------------------------- /juce/src/io/streams/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/io/streams/zlib/zutil.h -------------------------------------------------------------------------------- /juce/src/juce_DefineMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/juce_DefineMacros.h -------------------------------------------------------------------------------- /juce/src/juce_WithoutMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/juce_WithoutMacros.h -------------------------------------------------------------------------------- /juce/src/juce_amalgamated_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/juce_amalgamated_template.h -------------------------------------------------------------------------------- /juce/src/juce_app_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/juce_app_includes.h -------------------------------------------------------------------------------- /juce/src/juce_core_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/juce_core_includes.h -------------------------------------------------------------------------------- /juce/src/juce_extended_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/juce_extended_includes.h -------------------------------------------------------------------------------- /juce/src/text/juce_String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/text/juce_String.cpp -------------------------------------------------------------------------------- /juce/src/text/juce_String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/text/juce_String.h -------------------------------------------------------------------------------- /juce/src/text/juce_StringArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/text/juce_StringArray.cpp -------------------------------------------------------------------------------- /juce/src/text/juce_StringArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/text/juce_StringArray.h -------------------------------------------------------------------------------- /juce/src/text/juce_StringPairArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/text/juce_StringPairArray.h -------------------------------------------------------------------------------- /juce/src/text/juce_XmlDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/text/juce_XmlDocument.cpp -------------------------------------------------------------------------------- /juce/src/text/juce_XmlDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/text/juce_XmlDocument.h -------------------------------------------------------------------------------- /juce/src/text/juce_XmlElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/text/juce_XmlElement.cpp -------------------------------------------------------------------------------- /juce/src/text/juce_XmlElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/text/juce_XmlElement.h -------------------------------------------------------------------------------- /juce/src/threads/juce_Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/threads/juce_Process.h -------------------------------------------------------------------------------- /juce/src/threads/juce_ScopedLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/threads/juce_ScopedLock.h -------------------------------------------------------------------------------- /juce/src/threads/juce_Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/threads/juce_Thread.cpp -------------------------------------------------------------------------------- /juce/src/threads/juce_Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/threads/juce_Thread.h -------------------------------------------------------------------------------- /juce/src/threads/juce_ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/threads/juce_ThreadPool.cpp -------------------------------------------------------------------------------- /juce/src/threads/juce_ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/juce/src/threads/juce_ThreadPool.h -------------------------------------------------------------------------------- /tests/build/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/tests/build/linux/Makefile -------------------------------------------------------------------------------- /tests/build/linux/premake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/tests/build/linux/premake.lua -------------------------------------------------------------------------------- /tests/build/linux/unit_testing.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/tests/build/linux/unit_testing.make -------------------------------------------------------------------------------- /tests/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/tests/src/config.h -------------------------------------------------------------------------------- /tests/src/mytest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/tests/src/mytest.cpp -------------------------------------------------------------------------------- /tools/linux/amalgamator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/tools/linux/amalgamator -------------------------------------------------------------------------------- /tools/linux/amalgamator_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/tools/linux/amalgamator_debug -------------------------------------------------------------------------------- /tools/linux/jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/tools/linux/jucer -------------------------------------------------------------------------------- /tools/linux/manage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/tools/linux/manage -------------------------------------------------------------------------------- /tools/linux/premake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/tools/linux/premake -------------------------------------------------------------------------------- /tools/linux/premake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/tools/linux/premake.lua -------------------------------------------------------------------------------- /tools/macosx/premake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/tools/macosx/premake -------------------------------------------------------------------------------- /tools/win32/amalgamator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/tools/win32/amalgamator.exe -------------------------------------------------------------------------------- /tools/win32/amalgamator_debug.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/tools/win32/amalgamator_debug.exe -------------------------------------------------------------------------------- /tools/win32/premake.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunitoki/juced/HEAD/tools/win32/premake.exe -------------------------------------------------------------------------------- /vst/vstsdk2.3/unpack_sdk_here: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vst/vstsdk2.4/unpack_sdk_here: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------