├── .bzrignore ├── .cproject ├── .gitattributes ├── .github ├── dependabot.yml ├── stale.yml └── workflows │ ├── ci.yml │ └── generate-docs.yml ├── .gitignore ├── .gitlab-ci.yml ├── .project ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── INSTALL.md ├── JuceLibraryCode ├── AppConfig.h ├── JuceHeader.h ├── ReadMe.txt ├── include_juce_audio_basics.cpp ├── include_juce_audio_basics.mm ├── include_juce_audio_devices.cpp ├── include_juce_audio_devices.mm ├── include_juce_audio_formats.cpp ├── include_juce_audio_formats.mm ├── include_juce_core.cpp ├── include_juce_core.mm ├── include_juce_data_structures.cpp ├── include_juce_data_structures.mm ├── include_juce_dsp.cpp ├── include_juce_dsp.mm ├── include_juce_events.cpp ├── include_juce_events.mm └── modules │ ├── juce_audio_basics │ ├── audio_play_head │ │ ├── juce_AudioPlayHead.cpp │ │ └── juce_AudioPlayHead.h │ ├── buffers │ │ ├── juce_AudioChannelSet.cpp │ │ ├── juce_AudioChannelSet.h │ │ ├── juce_AudioDataConverters.cpp │ │ ├── juce_AudioDataConverters.h │ │ ├── juce_AudioProcessLoadMeasurer.cpp │ │ ├── juce_AudioProcessLoadMeasurer.h │ │ ├── juce_AudioSampleBuffer.h │ │ ├── juce_FloatVectorOperations.cpp │ │ └── juce_FloatVectorOperations.h │ ├── juce_audio_basics.cpp │ ├── juce_audio_basics.h │ ├── juce_audio_basics.mm │ ├── midi │ │ ├── juce_MidiBuffer.cpp │ │ ├── juce_MidiBuffer.h │ │ ├── juce_MidiDataConcatenator.h │ │ ├── juce_MidiFile.cpp │ │ ├── juce_MidiFile.h │ │ ├── juce_MidiKeyboardState.cpp │ │ ├── juce_MidiKeyboardState.h │ │ ├── juce_MidiMessage.cpp │ │ ├── juce_MidiMessage.h │ │ ├── juce_MidiMessageSequence.cpp │ │ ├── juce_MidiMessageSequence.h │ │ ├── juce_MidiRPN.cpp │ │ ├── juce_MidiRPN.h │ │ └── ump │ │ │ ├── juce_UMP.h │ │ │ ├── juce_UMPBytesOnGroup.h │ │ │ ├── juce_UMPConversion.h │ │ │ ├── juce_UMPConverters.h │ │ │ ├── juce_UMPDeviceInfo.h │ │ │ ├── juce_UMPDispatcher.h │ │ │ ├── juce_UMPFactory.h │ │ │ ├── juce_UMPIterator.cpp │ │ │ ├── juce_UMPIterator.h │ │ │ ├── juce_UMPMidi1ToBytestreamTranslator.h │ │ │ ├── juce_UMPMidi1ToMidi2DefaultTranslator.cpp │ │ │ ├── juce_UMPMidi1ToMidi2DefaultTranslator.h │ │ │ ├── juce_UMPProtocols.h │ │ │ ├── juce_UMPReceiver.h │ │ │ ├── juce_UMPSysEx7.cpp │ │ │ ├── juce_UMPSysEx7.h │ │ │ ├── juce_UMPUtils.cpp │ │ │ ├── juce_UMPUtils.h │ │ │ ├── juce_UMPView.cpp │ │ │ ├── juce_UMPView.h │ │ │ ├── juce_UMP_test.cpp │ │ │ ├── juce_UMPacket.h │ │ │ └── juce_UMPackets.h │ ├── mpe │ │ ├── juce_MPEInstrument.cpp │ │ ├── juce_MPEInstrument.h │ │ ├── juce_MPEMessages.cpp │ │ ├── juce_MPEMessages.h │ │ ├── juce_MPENote.cpp │ │ ├── juce_MPENote.h │ │ ├── juce_MPESynthesiser.cpp │ │ ├── juce_MPESynthesiser.h │ │ ├── juce_MPESynthesiserBase.cpp │ │ ├── juce_MPESynthesiserBase.h │ │ ├── juce_MPESynthesiserVoice.cpp │ │ ├── juce_MPESynthesiserVoice.h │ │ ├── juce_MPEUtils.cpp │ │ ├── juce_MPEUtils.h │ │ ├── juce_MPEValue.cpp │ │ ├── juce_MPEValue.h │ │ ├── juce_MPEZoneLayout.cpp │ │ └── juce_MPEZoneLayout.h │ ├── native │ │ ├── juce_AudioWorkgroup_mac.h │ │ ├── juce_CoreAudioLayouts_mac.h │ │ └── juce_CoreAudioTimeConversions_mac.h │ ├── sources │ │ ├── juce_AudioSource.h │ │ ├── juce_BufferingAudioSource.cpp │ │ ├── juce_BufferingAudioSource.h │ │ ├── juce_ChannelRemappingAudioSource.cpp │ │ ├── juce_ChannelRemappingAudioSource.h │ │ ├── juce_IIRFilterAudioSource.cpp │ │ ├── juce_IIRFilterAudioSource.h │ │ ├── juce_MemoryAudioSource.cpp │ │ ├── juce_MemoryAudioSource.h │ │ ├── juce_MixerAudioSource.cpp │ │ ├── juce_MixerAudioSource.h │ │ ├── juce_PositionableAudioSource.cpp │ │ ├── juce_PositionableAudioSource.h │ │ ├── juce_ResamplingAudioSource.cpp │ │ ├── juce_ResamplingAudioSource.h │ │ ├── juce_ReverbAudioSource.cpp │ │ ├── juce_ReverbAudioSource.h │ │ ├── juce_ToneGeneratorAudioSource.cpp │ │ └── juce_ToneGeneratorAudioSource.h │ ├── synthesisers │ │ ├── juce_Synthesiser.cpp │ │ └── juce_Synthesiser.h │ └── utilities │ │ ├── juce_ADSR.h │ │ ├── juce_ADSR_test.cpp │ │ ├── juce_AudioWorkgroup.cpp │ │ ├── juce_AudioWorkgroup.h │ │ ├── juce_Decibels.h │ │ ├── juce_GenericInterpolator.h │ │ ├── juce_IIRFilter.cpp │ │ ├── juce_IIRFilter.h │ │ ├── juce_Interpolators.cpp │ │ ├── juce_Interpolators.h │ │ ├── juce_LagrangeInterpolator.cpp │ │ ├── juce_Reverb.h │ │ ├── juce_SmoothedValue.cpp │ │ ├── juce_SmoothedValue.h │ │ └── juce_WindowedSincInterpolator.cpp │ ├── juce_audio_devices │ ├── audio_io │ │ ├── juce_AudioDeviceManager.cpp │ │ ├── juce_AudioDeviceManager.h │ │ ├── juce_AudioIODevice.cpp │ │ ├── juce_AudioIODevice.h │ │ ├── juce_AudioIODeviceType.cpp │ │ ├── juce_AudioIODeviceType.h │ │ ├── juce_SampleRateHelpers.cpp │ │ └── juce_SystemAudioVolume.h │ ├── juce_audio_devices.cpp │ ├── juce_audio_devices.h │ ├── juce_audio_devices.mm │ ├── midi_io │ │ ├── juce_MidiDevices.cpp │ │ ├── juce_MidiDevices.h │ │ ├── juce_MidiMessageCollector.cpp │ │ ├── juce_MidiMessageCollector.h │ │ └── ump │ │ │ ├── juce_UMPBytestreamInputHandler.h │ │ │ └── juce_UMPU32InputHandler.h │ ├── native │ │ ├── java │ │ │ └── app │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ └── JuceMidiSupport.java │ │ ├── juce_ALSA_linux.cpp │ │ ├── juce_ASIO_windows.cpp │ │ ├── juce_Audio_android.cpp │ │ ├── juce_Audio_ios.cpp │ │ ├── juce_Audio_ios.h │ │ ├── juce_Bela_linux.cpp │ │ ├── juce_CoreAudio_mac.cpp │ │ ├── juce_CoreMidi_mac.mm │ │ ├── juce_DirectSound_windows.cpp │ │ ├── juce_HighPerformanceAudioHelpers_android.h │ │ ├── juce_JackAudio_linux.cpp │ │ ├── juce_Midi_android.cpp │ │ ├── juce_Midi_linux.cpp │ │ ├── juce_Midi_windows.cpp │ │ ├── juce_Oboe_android.cpp │ │ ├── juce_OpenSL_android.cpp │ │ ├── juce_WASAPI_windows.cpp │ │ └── oboe │ │ │ ├── .clang-tidy │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── include │ │ │ └── oboe │ │ │ │ ├── AudioStream.h │ │ │ │ ├── AudioStreamBase.h │ │ │ │ ├── AudioStreamBuilder.h │ │ │ │ ├── AudioStreamCallback.h │ │ │ │ ├── Definitions.h │ │ │ │ ├── FifoBuffer.h │ │ │ │ ├── FifoControllerBase.h │ │ │ │ ├── FullDuplexStream.h │ │ │ │ ├── LatencyTuner.h │ │ │ │ ├── Oboe.h │ │ │ │ ├── OboeExtensions.h │ │ │ │ ├── ResultWithValue.h │ │ │ │ ├── StabilizedCallback.h │ │ │ │ ├── Utilities.h │ │ │ │ └── Version.h │ │ │ └── src │ │ │ ├── aaudio │ │ │ ├── AAudioExtensions.h │ │ │ ├── AAudioLoader.cpp │ │ │ ├── AAudioLoader.h │ │ │ ├── AudioStreamAAudio.cpp │ │ │ └── AudioStreamAAudio.h │ │ │ ├── common │ │ │ ├── AdpfWrapper.cpp │ │ │ ├── AdpfWrapper.h │ │ │ ├── AudioClock.h │ │ │ ├── AudioSourceCaller.cpp │ │ │ ├── AudioSourceCaller.h │ │ │ ├── AudioStream.cpp │ │ │ ├── AudioStreamBuilder.cpp │ │ │ ├── DataConversionFlowGraph.cpp │ │ │ ├── DataConversionFlowGraph.h │ │ │ ├── FilterAudioStream.cpp │ │ │ ├── FilterAudioStream.h │ │ │ ├── FixedBlockAdapter.cpp │ │ │ ├── FixedBlockAdapter.h │ │ │ ├── FixedBlockReader.cpp │ │ │ ├── FixedBlockReader.h │ │ │ ├── FixedBlockWriter.cpp │ │ │ ├── FixedBlockWriter.h │ │ │ ├── LatencyTuner.cpp │ │ │ ├── MonotonicCounter.h │ │ │ ├── OboeDebug.h │ │ │ ├── OboeExtensions.cpp │ │ │ ├── QuirksManager.cpp │ │ │ ├── QuirksManager.h │ │ │ ├── README.md │ │ │ ├── SourceFloatCaller.cpp │ │ │ ├── SourceFloatCaller.h │ │ │ ├── SourceI16Caller.cpp │ │ │ ├── SourceI16Caller.h │ │ │ ├── SourceI24Caller.cpp │ │ │ ├── SourceI24Caller.h │ │ │ ├── SourceI32Caller.cpp │ │ │ ├── SourceI32Caller.h │ │ │ ├── StabilizedCallback.cpp │ │ │ ├── Trace.cpp │ │ │ ├── Trace.h │ │ │ ├── Utilities.cpp │ │ │ └── Version.cpp │ │ │ ├── fifo │ │ │ ├── FifoBuffer.cpp │ │ │ ├── FifoController.cpp │ │ │ ├── FifoController.h │ │ │ ├── FifoControllerBase.cpp │ │ │ ├── FifoControllerIndirect.cpp │ │ │ └── FifoControllerIndirect.h │ │ │ ├── flowgraph │ │ │ ├── ChannelCountConverter.cpp │ │ │ ├── ChannelCountConverter.h │ │ │ ├── ClipToRange.cpp │ │ │ ├── ClipToRange.h │ │ │ ├── FlowGraphNode.cpp │ │ │ ├── FlowGraphNode.h │ │ │ ├── FlowgraphUtilities.h │ │ │ ├── Limiter.cpp │ │ │ ├── Limiter.h │ │ │ ├── ManyToMultiConverter.cpp │ │ │ ├── ManyToMultiConverter.h │ │ │ ├── MonoBlend.cpp │ │ │ ├── MonoBlend.h │ │ │ ├── MonoToMultiConverter.cpp │ │ │ ├── MonoToMultiConverter.h │ │ │ ├── MultiToManyConverter.cpp │ │ │ ├── MultiToManyConverter.h │ │ │ ├── MultiToMonoConverter.cpp │ │ │ ├── MultiToMonoConverter.h │ │ │ ├── RampLinear.cpp │ │ │ ├── RampLinear.h │ │ │ ├── SampleRateConverter.cpp │ │ │ ├── SampleRateConverter.h │ │ │ ├── SinkFloat.cpp │ │ │ ├── SinkFloat.h │ │ │ ├── SinkI16.cpp │ │ │ ├── SinkI16.h │ │ │ ├── SinkI24.cpp │ │ │ ├── SinkI24.h │ │ │ ├── SinkI32.cpp │ │ │ ├── SinkI32.h │ │ │ ├── SourceFloat.cpp │ │ │ ├── SourceFloat.h │ │ │ ├── SourceI16.cpp │ │ │ ├── SourceI16.h │ │ │ ├── SourceI24.cpp │ │ │ ├── SourceI24.h │ │ │ ├── SourceI32.cpp │ │ │ ├── SourceI32.h │ │ │ └── resampler │ │ │ │ ├── HyperbolicCosineWindow.h │ │ │ │ ├── IntegerRatio.cpp │ │ │ │ ├── IntegerRatio.h │ │ │ │ ├── KaiserWindow.h │ │ │ │ ├── LinearResampler.cpp │ │ │ │ ├── LinearResampler.h │ │ │ │ ├── MultiChannelResampler.cpp │ │ │ │ ├── MultiChannelResampler.h │ │ │ │ ├── PolyphaseResampler.cpp │ │ │ │ ├── PolyphaseResampler.h │ │ │ │ ├── PolyphaseResamplerMono.cpp │ │ │ │ ├── PolyphaseResamplerMono.h │ │ │ │ ├── PolyphaseResamplerStereo.cpp │ │ │ │ ├── PolyphaseResamplerStereo.h │ │ │ │ ├── README.md │ │ │ │ ├── ResamplerDefinitions.h │ │ │ │ ├── SincResampler.cpp │ │ │ │ ├── SincResampler.h │ │ │ │ ├── SincResamplerStereo.cpp │ │ │ │ └── SincResamplerStereo.h │ │ │ └── opensles │ │ │ ├── AudioInputStreamOpenSLES.cpp │ │ │ ├── AudioInputStreamOpenSLES.h │ │ │ ├── AudioOutputStreamOpenSLES.cpp │ │ │ ├── AudioOutputStreamOpenSLES.h │ │ │ ├── AudioStreamBuffered.cpp │ │ │ ├── AudioStreamBuffered.h │ │ │ ├── AudioStreamOpenSLES.cpp │ │ │ ├── AudioStreamOpenSLES.h │ │ │ ├── EngineOpenSLES.cpp │ │ │ ├── EngineOpenSLES.h │ │ │ ├── OpenSLESUtilities.cpp │ │ │ ├── OpenSLESUtilities.h │ │ │ ├── OutputMixerOpenSLES.cpp │ │ │ └── OutputMixerOpenSLES.h │ └── sources │ │ ├── juce_AudioSourcePlayer.cpp │ │ ├── juce_AudioSourcePlayer.h │ │ ├── juce_AudioTransportSource.cpp │ │ └── juce_AudioTransportSource.h │ ├── juce_audio_formats │ ├── codecs │ │ ├── flac │ │ │ ├── Flac Licence.txt │ │ │ ├── JUCE_CHANGES.txt │ │ │ ├── all.h │ │ │ ├── alloc.h │ │ │ ├── assert.h │ │ │ ├── callback.h │ │ │ ├── compat.h │ │ │ ├── endswap.h │ │ │ ├── export.h │ │ │ ├── format.h │ │ │ ├── libFLAC │ │ │ │ ├── bitmath.c │ │ │ │ ├── bitreader.c │ │ │ │ ├── bitwriter.c │ │ │ │ ├── cpu.c │ │ │ │ ├── crc.c │ │ │ │ ├── deduplication │ │ │ │ │ ├── bitreader_read_rice_signed_block.c │ │ │ │ │ ├── lpc_compute_autocorrelation_intrin.c │ │ │ │ │ └── lpc_compute_autocorrelation_intrin_neon.c │ │ │ │ ├── fixed.c │ │ │ │ ├── float.c │ │ │ │ ├── format.c │ │ │ │ ├── include │ │ │ │ │ ├── private │ │ │ │ │ │ ├── bitmath.h │ │ │ │ │ │ ├── bitreader.h │ │ │ │ │ │ ├── bitwriter.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── crc.h │ │ │ │ │ │ ├── fixed.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── lpc.h │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ ├── stream_encoder.h │ │ │ │ │ │ ├── stream_encoder_framing.h │ │ │ │ │ │ └── window.h │ │ │ │ │ └── protected │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ ├── lpc_flac.c │ │ │ │ ├── lpc_intrin_neon.c │ │ │ │ ├── md5.c │ │ │ │ ├── memory.c │ │ │ │ ├── stream_decoder.c │ │ │ │ ├── stream_encoder.c │ │ │ │ ├── stream_encoder_framing.c │ │ │ │ └── window_flac.c │ │ │ ├── metadata.h │ │ │ ├── ordinals.h │ │ │ ├── private.h │ │ │ ├── stream_decoder.h │ │ │ └── stream_encoder.h │ │ ├── juce_AiffAudioFormat.cpp │ │ ├── juce_AiffAudioFormat.h │ │ ├── juce_CoreAudioFormat.cpp │ │ ├── juce_CoreAudioFormat.h │ │ ├── juce_FlacAudioFormat.cpp │ │ ├── juce_FlacAudioFormat.h │ │ ├── juce_LAMEEncoderAudioFormat.cpp │ │ ├── juce_LAMEEncoderAudioFormat.h │ │ ├── juce_MP3AudioFormat.cpp │ │ ├── juce_MP3AudioFormat.h │ │ ├── juce_OggVorbisAudioFormat.cpp │ │ ├── juce_OggVorbisAudioFormat.h │ │ ├── juce_WavAudioFormat.cpp │ │ ├── juce_WavAudioFormat.h │ │ ├── juce_WindowsMediaAudioFormat.cpp │ │ ├── juce_WindowsMediaAudioFormat.h │ │ └── oggvorbis │ │ │ ├── Ogg Vorbis Licence.txt │ │ │ ├── bitwise.c │ │ │ ├── codec.h │ │ │ ├── config_types.h │ │ │ ├── crctable.h │ │ │ ├── framing.c │ │ │ ├── libvorbis-1.3.7 │ │ │ ├── AUTHORS │ │ │ ├── CHANGES │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ └── lib │ │ │ │ ├── analysis.c │ │ │ │ ├── backends.h │ │ │ │ ├── bitrate.c │ │ │ │ ├── bitrate.h │ │ │ │ ├── block.c │ │ │ │ ├── books │ │ │ │ ├── coupled │ │ │ │ │ ├── res_books_51.h │ │ │ │ │ └── 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 │ │ │ │ ├── lpc.c │ │ │ │ ├── lpc.h │ │ │ │ ├── lsp.c │ │ │ │ ├── lsp.h │ │ │ │ ├── mapping0.c │ │ │ │ ├── masking.h │ │ │ │ ├── mdct.c │ │ │ │ ├── mdct.h │ │ │ │ ├── misc.c │ │ │ │ ├── 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_44p51.h │ │ │ │ ├── residue_44u.h │ │ │ │ ├── residue_8.h │ │ │ │ ├── setup_11.h │ │ │ │ ├── setup_16.h │ │ │ │ ├── setup_22.h │ │ │ │ ├── setup_32.h │ │ │ │ ├── setup_44.h │ │ │ │ ├── setup_44p51.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 │ ├── format │ │ ├── juce_ARAAudioReaders.cpp │ │ ├── juce_ARAAudioReaders.h │ │ ├── juce_AudioFormat.cpp │ │ ├── juce_AudioFormat.h │ │ ├── juce_AudioFormatManager.cpp │ │ ├── juce_AudioFormatManager.h │ │ ├── juce_AudioFormatReader.cpp │ │ ├── juce_AudioFormatReader.h │ │ ├── juce_AudioFormatReaderSource.cpp │ │ ├── juce_AudioFormatReaderSource.h │ │ ├── juce_AudioFormatWriter.cpp │ │ ├── juce_AudioFormatWriter.h │ │ ├── juce_AudioSubsectionReader.cpp │ │ ├── juce_AudioSubsectionReader.h │ │ ├── juce_BufferingAudioFormatReader.cpp │ │ ├── juce_BufferingAudioFormatReader.h │ │ └── juce_MemoryMappedAudioFormatReader.h │ ├── juce_audio_formats.cpp │ ├── juce_audio_formats.h │ ├── juce_audio_formats.mm │ └── sampler │ │ ├── juce_Sampler.cpp │ │ └── juce_Sampler.h │ ├── juce_core │ ├── containers │ │ ├── juce_AbstractFifo.cpp │ │ ├── juce_AbstractFifo.h │ │ ├── juce_Array.h │ │ ├── juce_ArrayAllocationBase.h │ │ ├── juce_ArrayBase.cpp │ │ ├── juce_ArrayBase.h │ │ ├── juce_DynamicObject.cpp │ │ ├── juce_DynamicObject.h │ │ ├── juce_ElementComparator.h │ │ ├── juce_Enumerate.h │ │ ├── juce_Enumerate_test.cpp │ │ ├── juce_FixedSizeFunction.h │ │ ├── juce_FixedSizeFunction_test.cpp │ │ ├── juce_HashMap.h │ │ ├── juce_HashMap_test.cpp │ │ ├── juce_LinkedListPointer.h │ │ ├── juce_ListenerList.cpp │ │ ├── juce_ListenerList.h │ │ ├── juce_NamedValueSet.cpp │ │ ├── juce_NamedValueSet.h │ │ ├── juce_Optional.h │ │ ├── juce_Optional_test.cpp │ │ ├── juce_OwnedArray.cpp │ │ ├── juce_OwnedArray.h │ │ ├── juce_PropertySet.cpp │ │ ├── juce_PropertySet.h │ │ ├── juce_ReferenceCountedArray.cpp │ │ ├── juce_ReferenceCountedArray.h │ │ ├── juce_ScopedValueSetter.h │ │ ├── juce_SingleThreadedAbstractFifo.h │ │ ├── juce_SortedSet.h │ │ ├── juce_Span.h │ │ ├── juce_SparseSet.cpp │ │ ├── juce_SparseSet.h │ │ ├── juce_Variant.cpp │ │ └── juce_Variant.h │ ├── detail │ │ └── juce_CallbackListenerList.h │ ├── files │ │ ├── juce_AndroidDocument.h │ │ ├── juce_DirectoryIterator.cpp │ │ ├── juce_DirectoryIterator.h │ │ ├── juce_File.cpp │ │ ├── juce_File.h │ │ ├── juce_FileFilter.cpp │ │ ├── juce_FileFilter.h │ │ ├── juce_FileInputStream.cpp │ │ ├── juce_FileInputStream.h │ │ ├── juce_FileOutputStream.cpp │ │ ├── juce_FileOutputStream.h │ │ ├── juce_FileSearchPath.cpp │ │ ├── juce_FileSearchPath.h │ │ ├── juce_MemoryMappedFile.h │ │ ├── juce_RangedDirectoryIterator.cpp │ │ ├── juce_RangedDirectoryIterator.h │ │ ├── juce_TemporaryFile.cpp │ │ ├── juce_TemporaryFile.h │ │ ├── juce_WildcardFileFilter.cpp │ │ ├── juce_WildcardFileFilter.h │ │ ├── juce_common_MimeTypes.cpp │ │ └── juce_common_MimeTypes.h │ ├── javascript │ │ ├── juce_JSON.cpp │ │ ├── juce_JSON.h │ │ ├── juce_JSONSerialisation.h │ │ ├── juce_JSONSerialisation_test.cpp │ │ ├── juce_JSONUtils.cpp │ │ ├── juce_JSONUtils.h │ │ ├── juce_Javascript.cpp │ │ └── juce_Javascript.h │ ├── juce_core.cpp │ ├── juce_core.h │ ├── juce_core.mm │ ├── logging │ │ ├── juce_FileLogger.cpp │ │ ├── juce_FileLogger.h │ │ ├── juce_Logger.cpp │ │ └── juce_Logger.h │ ├── maths │ │ ├── juce_BigInteger.cpp │ │ ├── juce_BigInteger.h │ │ ├── juce_Expression.cpp │ │ ├── juce_Expression.h │ │ ├── juce_MathsFunctions.h │ │ ├── juce_MathsFunctions_test.cpp │ │ ├── juce_NormalisableRange.h │ │ ├── juce_Random.cpp │ │ ├── juce_Random.h │ │ ├── juce_Range.h │ │ └── juce_StatisticsAccumulator.h │ ├── memory │ │ ├── juce_AllocationHooks.cpp │ │ ├── juce_AllocationHooks.h │ │ ├── juce_Atomic.h │ │ ├── juce_ByteOrder.h │ │ ├── juce_ContainerDeletePolicy.h │ │ ├── juce_HeapBlock.h │ │ ├── juce_HeavyweightLeakedObjectDetector.h │ │ ├── juce_LeakedObjectDetector.h │ │ ├── juce_Memory.h │ │ ├── juce_MemoryBlock.cpp │ │ ├── juce_MemoryBlock.h │ │ ├── juce_OptionalScopedPointer.h │ │ ├── juce_ReferenceCountedObject.h │ │ ├── juce_Reservoir.h │ │ ├── juce_ScopedPointer.h │ │ ├── juce_SharedResourcePointer.h │ │ ├── juce_SharedResourcePointer_test.cpp │ │ ├── juce_Singleton.h │ │ └── juce_WeakReference.h │ ├── misc │ │ ├── juce_ConsoleApplication.cpp │ │ ├── juce_ConsoleApplication.h │ │ ├── juce_EnumHelpers.h │ │ ├── juce_EnumHelpers_test.cpp │ │ ├── juce_Functional.h │ │ ├── juce_Result.cpp │ │ ├── juce_Result.h │ │ ├── juce_RuntimePermissions.cpp │ │ ├── juce_RuntimePermissions.h │ │ ├── juce_ScopeGuard.cpp │ │ ├── juce_ScopeGuard.h │ │ ├── juce_Uuid.cpp │ │ ├── juce_Uuid.h │ │ └── juce_WindowsRegistry.h │ ├── native │ │ ├── java │ │ │ ├── README.txt │ │ │ └── app │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ ├── FragmentOverlay.java │ │ │ │ ├── JuceHTTPStream.java │ │ │ │ └── JuceInvocationHandler.java │ │ ├── javacore │ │ │ ├── app │ │ │ │ └── com │ │ │ │ │ └── rmsl │ │ │ │ │ └── juce │ │ │ │ │ └── JuceApp.java │ │ │ └── init │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ └── Java.java │ │ ├── juce_AndroidDocument_android.cpp │ │ ├── juce_BasicNativeHeaders.h │ │ ├── juce_CFHelpers_mac.h │ │ ├── juce_ComSmartPtr_windows.h │ │ ├── juce_CommonFile_linux.cpp │ │ ├── juce_Files_android.cpp │ │ ├── juce_Files_linux.cpp │ │ ├── juce_Files_mac.mm │ │ ├── juce_Files_windows.cpp │ │ ├── juce_IPAddress_posix.h │ │ ├── juce_JNIHelpers_android.cpp │ │ ├── juce_JNIHelpers_android.h │ │ ├── juce_Misc_android.cpp │ │ ├── juce_NamedPipe_posix.cpp │ │ ├── juce_Network_android.cpp │ │ ├── juce_Network_curl.cpp │ │ ├── juce_Network_linux.cpp │ │ ├── juce_Network_mac.mm │ │ ├── juce_Network_windows.cpp │ │ ├── juce_ObjCHelpers_mac.h │ │ ├── juce_ObjCHelpers_mac_test.mm │ │ ├── juce_PlatformTimerListener.h │ │ ├── juce_PlatformTimer_generic.cpp │ │ ├── juce_PlatformTimer_windows.cpp │ │ ├── juce_Process_mac.mm │ │ ├── juce_Registry_windows.cpp │ │ ├── juce_RuntimePermissions_android.cpp │ │ ├── juce_SharedCode_intel.h │ │ ├── juce_SharedCode_posix.h │ │ ├── juce_Strings_mac.mm │ │ ├── juce_SystemStats_android.cpp │ │ ├── juce_SystemStats_linux.cpp │ │ ├── juce_SystemStats_mac.mm │ │ ├── juce_SystemStats_wasm.cpp │ │ ├── juce_SystemStats_windows.cpp │ │ ├── juce_ThreadPriorities_native.h │ │ ├── juce_Threads_android.cpp │ │ ├── juce_Threads_linux.cpp │ │ ├── juce_Threads_mac.mm │ │ └── juce_Threads_windows.cpp │ ├── network │ │ ├── juce_IPAddress.cpp │ │ ├── juce_IPAddress.h │ │ ├── juce_MACAddress.cpp │ │ ├── juce_MACAddress.h │ │ ├── juce_NamedPipe.cpp │ │ ├── juce_NamedPipe.h │ │ ├── juce_Socket.cpp │ │ ├── juce_Socket.h │ │ ├── juce_URL.cpp │ │ ├── juce_URL.h │ │ ├── juce_WebInputStream.cpp │ │ └── juce_WebInputStream.h │ ├── serialisation │ │ └── juce_Serialisation.h │ ├── streams │ │ ├── juce_AndroidDocumentInputSource.h │ │ ├── juce_BufferedInputStream.cpp │ │ ├── juce_BufferedInputStream.h │ │ ├── juce_FileInputSource.cpp │ │ ├── juce_FileInputSource.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 │ │ ├── juce_URLInputSource.cpp │ │ └── juce_URLInputSource.h │ ├── system │ │ ├── juce_CompilerSupport.h │ │ ├── juce_CompilerWarnings.h │ │ ├── juce_PlatformDefs.h │ │ ├── juce_StandardHeader.h │ │ ├── juce_SystemStats.cpp │ │ ├── juce_SystemStats.h │ │ └── juce_TargetPlatform.h │ ├── text │ │ ├── juce_Base64.cpp │ │ ├── juce_Base64.h │ │ ├── juce_CharPointer_ASCII.h │ │ ├── juce_CharPointer_UTF16.h │ │ ├── juce_CharPointer_UTF32.h │ │ ├── juce_CharPointer_UTF8.h │ │ ├── juce_CharacterFunctions.cpp │ │ ├── juce_CharacterFunctions.h │ │ ├── juce_Identifier.cpp │ │ ├── juce_Identifier.h │ │ ├── juce_LocalisedStrings.cpp │ │ ├── juce_LocalisedStrings.h │ │ ├── juce_NewLine.h │ │ ├── juce_String.cpp │ │ ├── juce_String.h │ │ ├── juce_StringArray.cpp │ │ ├── juce_StringArray.h │ │ ├── juce_StringPairArray.cpp │ │ ├── juce_StringPairArray.h │ │ ├── juce_StringPool.cpp │ │ ├── juce_StringPool.h │ │ ├── juce_StringRef.h │ │ ├── juce_TextDiff.cpp │ │ └── juce_TextDiff.h │ ├── threads │ │ ├── juce_ChildProcess.cpp │ │ ├── juce_ChildProcess.h │ │ ├── juce_CriticalSection.h │ │ ├── juce_DynamicLibrary.h │ │ ├── juce_HighResolutionTimer.cpp │ │ ├── juce_HighResolutionTimer.h │ │ ├── juce_InterProcessLock.h │ │ ├── juce_Process.h │ │ ├── juce_ReadWriteLock.cpp │ │ ├── juce_ReadWriteLock.h │ │ ├── juce_ScopedLock.h │ │ ├── juce_ScopedReadLock.h │ │ ├── juce_ScopedWriteLock.h │ │ ├── juce_SpinLock.h │ │ ├── juce_Thread.cpp │ │ ├── juce_Thread.h │ │ ├── juce_ThreadLocalValue.h │ │ ├── juce_ThreadPool.cpp │ │ ├── juce_ThreadPool.h │ │ ├── juce_TimeSliceThread.cpp │ │ ├── juce_TimeSliceThread.h │ │ ├── juce_WaitableEvent.cpp │ │ └── juce_WaitableEvent.h │ ├── time │ │ ├── juce_PerformanceCounter.cpp │ │ ├── juce_PerformanceCounter.h │ │ ├── juce_RelativeTime.cpp │ │ ├── juce_RelativeTime.h │ │ ├── juce_Time.cpp │ │ └── juce_Time.h │ ├── unit_tests │ │ ├── juce_UnitTest.cpp │ │ ├── juce_UnitTest.h │ │ └── juce_UnitTestCategories.h │ ├── xml │ │ ├── juce_XmlDocument.cpp │ │ ├── juce_XmlDocument.h │ │ ├── juce_XmlElement.cpp │ │ └── juce_XmlElement.h │ └── zip │ │ ├── juce_GZIPCompressorOutputStream.cpp │ │ ├── juce_GZIPCompressorOutputStream.h │ │ ├── juce_GZIPDecompressorInputStream.cpp │ │ ├── juce_GZIPDecompressorInputStream.h │ │ ├── juce_ZipFile.cpp │ │ ├── juce_ZipFile.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_data_structures │ ├── app_properties │ │ ├── juce_ApplicationProperties.cpp │ │ ├── juce_ApplicationProperties.h │ │ ├── juce_PropertiesFile.cpp │ │ └── juce_PropertiesFile.h │ ├── juce_data_structures.cpp │ ├── juce_data_structures.h │ ├── juce_data_structures.mm │ ├── undomanager │ │ ├── juce_UndoManager.cpp │ │ ├── juce_UndoManager.h │ │ ├── juce_UndoableAction.cpp │ │ └── juce_UndoableAction.h │ └── values │ │ ├── juce_CachedValue.cpp │ │ ├── juce_CachedValue.h │ │ ├── juce_Value.cpp │ │ ├── juce_Value.h │ │ ├── juce_ValueTree.cpp │ │ ├── juce_ValueTree.h │ │ ├── juce_ValueTreePropertyWithDefault.h │ │ ├── juce_ValueTreePropertyWithDefault_test.cpp │ │ ├── juce_ValueTreeSynchroniser.cpp │ │ └── juce_ValueTreeSynchroniser.h │ ├── juce_dsp │ ├── containers │ │ ├── juce_AudioBlock.h │ │ ├── juce_AudioBlock_test.cpp │ │ ├── juce_SIMDRegister.h │ │ ├── juce_SIMDRegister_Impl.h │ │ └── juce_SIMDRegister_test.cpp │ ├── filter_design │ │ ├── juce_FilterDesign.cpp │ │ └── juce_FilterDesign.h │ ├── frequency │ │ ├── juce_Convolution.cpp │ │ ├── juce_Convolution.h │ │ ├── juce_Convolution_test.cpp │ │ ├── juce_FFT.cpp │ │ ├── juce_FFT.h │ │ ├── juce_FFT_test.cpp │ │ ├── juce_Windowing.cpp │ │ └── juce_Windowing.h │ ├── juce_dsp.cpp │ ├── juce_dsp.h │ ├── juce_dsp.mm │ ├── maths │ │ ├── juce_FastMathApproximations.h │ │ ├── juce_LogRampedValue.h │ │ ├── juce_LogRampedValue_test.cpp │ │ ├── juce_LookupTable.cpp │ │ ├── juce_LookupTable.h │ │ ├── juce_Matrix.cpp │ │ ├── juce_Matrix.h │ │ ├── juce_Matrix_test.cpp │ │ ├── juce_Phase.h │ │ ├── juce_Polynomial.h │ │ ├── juce_SpecialFunctions.cpp │ │ └── juce_SpecialFunctions.h │ ├── native │ │ ├── juce_SIMDNativeOps_avx.cpp │ │ ├── juce_SIMDNativeOps_avx.h │ │ ├── juce_SIMDNativeOps_fallback.h │ │ ├── juce_SIMDNativeOps_neon.cpp │ │ ├── juce_SIMDNativeOps_neon.h │ │ ├── juce_SIMDNativeOps_sse.cpp │ │ └── juce_SIMDNativeOps_sse.h │ ├── processors │ │ ├── juce_BallisticsFilter.cpp │ │ ├── juce_BallisticsFilter.h │ │ ├── juce_DelayLine.cpp │ │ ├── juce_DelayLine.h │ │ ├── juce_DryWetMixer.cpp │ │ ├── juce_DryWetMixer.h │ │ ├── juce_FIRFilter.cpp │ │ ├── juce_FIRFilter.h │ │ ├── juce_FIRFilter_test.cpp │ │ ├── juce_FirstOrderTPTFilter.cpp │ │ ├── juce_FirstOrderTPTFilter.h │ │ ├── juce_IIRFilter.cpp │ │ ├── juce_IIRFilter.h │ │ ├── juce_IIRFilter_Impl.h │ │ ├── juce_LinkwitzRileyFilter.cpp │ │ ├── juce_LinkwitzRileyFilter.h │ │ ├── juce_Oversampling.cpp │ │ ├── juce_Oversampling.h │ │ ├── juce_Panner.cpp │ │ ├── juce_Panner.h │ │ ├── juce_ProcessContext.h │ │ ├── juce_ProcessorChain.h │ │ ├── juce_ProcessorChain_test.cpp │ │ ├── juce_ProcessorDuplicator.h │ │ ├── juce_ProcessorWrapper.h │ │ ├── juce_StateVariableFilter.h │ │ ├── juce_StateVariableTPTFilter.cpp │ │ └── juce_StateVariableTPTFilter.h │ └── widgets │ │ ├── juce_Bias.h │ │ ├── juce_Chorus.cpp │ │ ├── juce_Chorus.h │ │ ├── juce_Compressor.cpp │ │ ├── juce_Compressor.h │ │ ├── juce_Gain.h │ │ ├── juce_LadderFilter.cpp │ │ ├── juce_LadderFilter.h │ │ ├── juce_Limiter.cpp │ │ ├── juce_Limiter.h │ │ ├── juce_NoiseGate.cpp │ │ ├── juce_NoiseGate.h │ │ ├── juce_Oscillator.h │ │ ├── juce_Phaser.cpp │ │ ├── juce_Phaser.h │ │ ├── juce_Reverb.h │ │ └── juce_WaveShaper.h │ └── juce_events │ ├── broadcasters │ ├── juce_ActionBroadcaster.cpp │ ├── juce_ActionBroadcaster.h │ ├── juce_ActionListener.h │ ├── juce_AsyncUpdater.cpp │ ├── juce_AsyncUpdater.h │ ├── juce_ChangeBroadcaster.cpp │ ├── juce_ChangeBroadcaster.h │ ├── juce_ChangeListener.h │ ├── juce_LockingAsyncUpdater.cpp │ └── juce_LockingAsyncUpdater.h │ ├── interprocess │ ├── juce_ChildProcessManager.cpp │ ├── juce_ChildProcessManager.h │ ├── juce_ConnectedChildProcess.cpp │ ├── juce_ConnectedChildProcess.h │ ├── juce_InterprocessConnection.cpp │ ├── juce_InterprocessConnection.h │ ├── juce_InterprocessConnectionServer.cpp │ ├── juce_InterprocessConnectionServer.h │ ├── juce_NetworkServiceDiscovery.cpp │ └── juce_NetworkServiceDiscovery.h │ ├── juce_events.cpp │ ├── juce_events.h │ ├── juce_events.mm │ ├── messages │ ├── juce_ApplicationBase.cpp │ ├── juce_ApplicationBase.h │ ├── juce_CallbackMessage.h │ ├── juce_DeletedAtShutdown.cpp │ ├── juce_DeletedAtShutdown.h │ ├── juce_Initialisation.h │ ├── juce_Message.h │ ├── juce_MessageListener.cpp │ ├── juce_MessageListener.h │ ├── juce_MessageManager.cpp │ ├── juce_MessageManager.h │ ├── juce_MountedVolumeListChangeDetector.h │ └── juce_NotificationType.h │ ├── native │ ├── juce_EventLoopInternal_linux.h │ ├── juce_EventLoop_linux.h │ ├── juce_HiddenMessageWindow_windows.h │ ├── juce_MessageManager_ios.mm │ ├── juce_MessageManager_mac.mm │ ├── juce_MessageQueue_mac.h │ ├── juce_Messaging_android.cpp │ ├── juce_Messaging_linux.cpp │ ├── juce_Messaging_windows.cpp │ ├── juce_RunningInUnity.h │ ├── juce_ScopedLowPowerModeDisabler.cpp │ ├── juce_ScopedLowPowerModeDisabler.h │ ├── juce_WinRTWrapper_windows.cpp │ └── juce_WinRTWrapper_windows.h │ └── timers │ ├── juce_MultiTimer.cpp │ ├── juce_MultiTimer.h │ ├── juce_TimedCallback.h │ ├── juce_Timer.cpp │ └── juce_Timer.h ├── OpenShotLibrary.jucer ├── README.md ├── cmake ├── Config.cmake.in └── Modules │ └── FindASIO.cmake ├── doc ├── openshot-audio-demo.1 └── openshot.svg ├── include ├── AppConfig.h.in ├── JuceHeader.h.in └── OpenShotAudio.h.in ├── src ├── CMakeLists.txt ├── Main.cpp └── hex_version.cpp └── version.sh /.bzrignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/.bzrignore -------------------------------------------------------------------------------- /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/.cproject -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/generate-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/.github/workflows/generate-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/.project -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/INSTALL.md -------------------------------------------------------------------------------- /JuceLibraryCode/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/AppConfig.h -------------------------------------------------------------------------------- /JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/include_juce_audio_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/include_juce_audio_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/include_juce_audio_devices.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_devices.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/include_juce_audio_devices.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/include_juce_audio_formats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_formats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/include_juce_audio_formats.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/include_juce_core.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/include_juce_core.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_data_structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/include_juce_data_structures.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_data_structures.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/include_juce_data_structures.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/include_juce_dsp.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_dsp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/include_juce_dsp.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/include_juce_events.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_events.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/include_juce_events.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/audio_play_head/juce_AudioPlayHead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/audio_play_head/juce_AudioPlayHead.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/audio_play_head/juce_AudioPlayHead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/audio_play_head/juce_AudioPlayHead.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/buffers/juce_AudioChannelSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/buffers/juce_AudioChannelSet.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/buffers/juce_AudioChannelSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/buffers/juce_AudioChannelSet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/buffers/juce_AudioDataConverters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/buffers/juce_AudioDataConverters.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/buffers/juce_AudioDataConverters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/buffers/juce_AudioDataConverters.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/buffers/juce_AudioSampleBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/buffers/juce_AudioSampleBuffer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/buffers/juce_FloatVectorOperations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/buffers/juce_FloatVectorOperations.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/buffers/juce_FloatVectorOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/buffers/juce_FloatVectorOperations.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiDataConcatenator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiDataConcatenator.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiKeyboardState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiKeyboardState.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiKeyboardState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiKeyboardState.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessageSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessageSequence.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessageSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessageSequence.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMP.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPBytesOnGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPBytesOnGroup.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPConversion.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPConverters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPConverters.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPDeviceInfo.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPDispatcher.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPFactory.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPIterator.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPIterator.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPProtocols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPProtocols.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPReceiver.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPSysEx7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPSysEx7.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPSysEx7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPSysEx7.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPUtils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPUtils.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPView.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPView.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMP_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMP_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPacket.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPackets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPackets.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEInstrument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEInstrument.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEInstrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEInstrument.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiser.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiser.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiserBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiserBase.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiserBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiserBase.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiserVoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiserVoice.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiserVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiserVoice.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEUtils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEUtils.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/native/juce_AudioWorkgroup_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/native/juce_AudioWorkgroup_mac.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/native/juce_CoreAudioLayouts_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/native/juce_CoreAudioLayouts_mac.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/sources/juce_AudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/sources/juce_AudioSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/sources/juce_BufferingAudioSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/sources/juce_BufferingAudioSource.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/sources/juce_BufferingAudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/sources/juce_BufferingAudioSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/sources/juce_IIRFilterAudioSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/sources/juce_IIRFilterAudioSource.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/sources/juce_IIRFilterAudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/sources/juce_IIRFilterAudioSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/sources/juce_MemoryAudioSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/sources/juce_MemoryAudioSource.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/sources/juce_MemoryAudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/sources/juce_MemoryAudioSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/sources/juce_MixerAudioSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/sources/juce_MixerAudioSource.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/sources/juce_MixerAudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/sources/juce_MixerAudioSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/sources/juce_PositionableAudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/sources/juce_PositionableAudioSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/sources/juce_ResamplingAudioSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/sources/juce_ResamplingAudioSource.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/sources/juce_ResamplingAudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/sources/juce_ResamplingAudioSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/sources/juce_ReverbAudioSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/sources/juce_ReverbAudioSource.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/sources/juce_ReverbAudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/sources/juce_ReverbAudioSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/synthesisers/juce_Synthesiser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/synthesisers/juce_Synthesiser.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/synthesisers/juce_Synthesiser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/synthesisers/juce_Synthesiser.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/utilities/juce_ADSR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_ADSR.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/utilities/juce_ADSR_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_ADSR_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/utilities/juce_AudioWorkgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_AudioWorkgroup.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/utilities/juce_AudioWorkgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_AudioWorkgroup.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/utilities/juce_Decibels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_Decibels.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/utilities/juce_GenericInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_GenericInterpolator.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/utilities/juce_IIRFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_IIRFilter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/utilities/juce_IIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_IIRFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/utilities/juce_Interpolators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_Interpolators.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/utilities/juce_Interpolators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_Interpolators.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/utilities/juce_Reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_Reverb.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/utilities/juce_SmoothedValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_SmoothedValue.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/utilities/juce_SmoothedValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_SmoothedValue.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_AudioIODevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_AudioIODevice.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_AudioIODevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_AudioIODevice.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_AudioIODeviceType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_AudioIODeviceType.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_AudioIODeviceType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_AudioIODeviceType.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_SampleRateHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_SampleRateHelpers.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_SystemAudioVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_SystemAudioVolume.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiDevices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiDevices.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiDevices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiDevices.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiMessageCollector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiMessageCollector.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiMessageCollector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiMessageCollector.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/midi_io/ump/juce_UMPU32InputHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/midi_io/ump/juce_UMPU32InputHandler.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_ALSA_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_ALSA_linux.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_ASIO_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_ASIO_windows.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_Audio_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_Audio_android.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_Audio_ios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_Audio_ios.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_Audio_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_Audio_ios.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_Bela_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_Bela_linux.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_CoreAudio_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_CoreAudio_mac.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_CoreMidi_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_CoreMidi_mac.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_DirectSound_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_DirectSound_windows.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_JackAudio_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_JackAudio_linux.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_Midi_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_Midi_android.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_Midi_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_Midi_linux.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_Midi_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_Midi_windows.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_Oboe_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_Oboe_android.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_OpenSL_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_OpenSL_android.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_WASAPI_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_WASAPI_windows.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/.clang-tidy -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/CMakeLists.txt -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/LICENSE -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/README.md -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/include/oboe/FifoBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/include/oboe/FifoBuffer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/include/oboe/Oboe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/include/oboe/Oboe.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/include/oboe/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/include/oboe/Utilities.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/include/oboe/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/include/oboe/Version.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/aaudio/AAudioLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/aaudio/AAudioLoader.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/common/AdpfWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/common/AdpfWrapper.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/common/AudioClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/common/AudioClock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/common/OboeDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/common/OboeDebug.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/common/README.md -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/common/Trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/common/Trace.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/common/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/common/Trace.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/common/Utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/common/Utilities.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/common/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/common/Version.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/fifo/FifoBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/fifo/FifoBuffer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/fifo/FifoController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/fifo/FifoController.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/flowgraph/Limiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/flowgraph/Limiter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/flowgraph/Limiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/flowgraph/Limiter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/flowgraph/MonoBlend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/flowgraph/MonoBlend.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/flowgraph/SinkFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/flowgraph/SinkFloat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/flowgraph/SinkI16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/flowgraph/SinkI16.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/flowgraph/SinkI16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/flowgraph/SinkI16.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/flowgraph/SinkI24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/flowgraph/SinkI24.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/flowgraph/SinkI32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/src/flowgraph/SinkI32.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/sources/juce_AudioSourcePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/sources/juce_AudioSourcePlayer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/sources/juce_AudioSourcePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/sources/juce_AudioSourcePlayer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/sources/juce_AudioTransportSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_devices/sources/juce_AudioTransportSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/Flac Licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/Flac Licence.txt -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/JUCE_CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/JUCE_CHANGES.txt -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/all.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/alloc.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/assert.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/callback.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/compat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/endswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/endswap.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/export.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/format.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/bitmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/bitmath.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/bitreader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/bitreader.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/bitwriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/bitwriter.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/cpu.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/crc.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/fixed.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/float.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/format.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/lpc_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/lpc_flac.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/md5.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/memory.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/window_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/window_flac.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/metadata.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/ordinals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/ordinals.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/private.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/stream_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/stream_decoder.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/stream_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/stream_encoder.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/juce_AiffAudioFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/juce_AiffAudioFormat.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/juce_AiffAudioFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/juce_AiffAudioFormat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/juce_CoreAudioFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/juce_CoreAudioFormat.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/juce_CoreAudioFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/juce_CoreAudioFormat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/juce_FlacAudioFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/juce_FlacAudioFormat.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/juce_FlacAudioFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/juce_FlacAudioFormat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/juce_MP3AudioFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/juce_MP3AudioFormat.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/juce_MP3AudioFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/juce_MP3AudioFormat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/juce_OggVorbisAudioFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/juce_OggVorbisAudioFormat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/juce_WavAudioFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/juce_WavAudioFormat.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/juce_WavAudioFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/juce_WavAudioFormat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/bitwise.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/codec.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/config_types.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/crctable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/crctable.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/framing.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/ogg.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/os_types.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/vorbisenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/vorbisenc.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/vorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/vorbisfile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/format/juce_ARAAudioReaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/format/juce_ARAAudioReaders.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/format/juce_ARAAudioReaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/format/juce_ARAAudioReaders.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormat.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormatManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormatManager.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormatManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormatManager.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormatReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormatReader.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormatReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormatReader.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormatWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormatWriter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormatWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormatWriter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioSubsectionReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioSubsectionReader.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Array.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ArrayAllocationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ArrayAllocationBase.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ArrayBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ArrayBase.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ArrayBase.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ElementComparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ElementComparator.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Enumerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Enumerate.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Enumerate_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Enumerate_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_FixedSizeFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_FixedSizeFunction.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_FixedSizeFunction_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_FixedSizeFunction_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_HashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_HashMap.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_HashMap_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_HashMap_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_LinkedListPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_LinkedListPointer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ListenerList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ListenerList.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ListenerList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ListenerList.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Optional.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Optional_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Optional_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ReferenceCountedArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ReferenceCountedArray.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ReferenceCountedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ReferenceCountedArray.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ScopedValueSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ScopedValueSetter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_SingleThreadedAbstractFifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_SingleThreadedAbstractFifo.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_SortedSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_SortedSet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Span.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Variant.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Variant.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/detail/juce_CallbackListenerList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/detail/juce_CallbackListenerList.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_AndroidDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_AndroidDocument.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_File.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_File.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileFilter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_MemoryMappedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_MemoryMappedFile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_RangedDirectoryIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_RangedDirectoryIterator.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_RangedDirectoryIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_RangedDirectoryIterator.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_common_MimeTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_common_MimeTypes.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_common_MimeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/files/juce_common_MimeTypes.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/javascript/juce_JSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/javascript/juce_JSON.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/javascript/juce_JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/javascript/juce_JSON.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/javascript/juce_JSONSerialisation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/javascript/juce_JSONSerialisation.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/javascript/juce_JSONSerialisation_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/javascript/juce_JSONSerialisation_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/javascript/juce_JSONUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/javascript/juce_JSONUtils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/javascript/juce_JSONUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/javascript/juce_JSONUtils.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/javascript/juce_Javascript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/javascript/juce_Javascript.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/javascript/juce_Javascript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/javascript/juce_Javascript.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/juce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/juce_core.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/juce_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/juce_core.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/juce_core.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/logging/juce_Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/logging/juce_Logger.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/logging/juce_Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/logging/juce_Logger.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Expression.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Expression.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_MathsFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_MathsFunctions.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_MathsFunctions_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_MathsFunctions_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_NormalisableRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_NormalisableRange.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Random.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Random.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Range.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_StatisticsAccumulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_StatisticsAccumulator.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_AllocationHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_AllocationHooks.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_AllocationHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_AllocationHooks.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_Atomic.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_ByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_ByteOrder.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_ContainerDeletePolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_ContainerDeletePolicy.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_HeapBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_HeapBlock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_LeakedObjectDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_LeakedObjectDetector.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_Memory.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_OptionalScopedPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_OptionalScopedPointer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_ReferenceCountedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_ReferenceCountedObject.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_Reservoir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_Reservoir.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_ScopedPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_ScopedPointer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_SharedResourcePointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_SharedResourcePointer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_SharedResourcePointer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_SharedResourcePointer_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_Singleton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_WeakReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_WeakReference.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_ConsoleApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_ConsoleApplication.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_ConsoleApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_ConsoleApplication.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_EnumHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_EnumHelpers.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_EnumHelpers_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_EnumHelpers_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Functional.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Result.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Result.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_RuntimePermissions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_RuntimePermissions.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_RuntimePermissions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_RuntimePermissions.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_ScopeGuard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_ScopeGuard.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_ScopeGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_ScopeGuard.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Uuid.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Uuid.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_WindowsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_WindowsRegistry.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/java/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/java/README.txt -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/javacore/init/com/rmsl/juce/Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/javacore/init/com/rmsl/juce/Java.java -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_AndroidDocument_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_AndroidDocument_android.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_BasicNativeHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_BasicNativeHeaders.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_CFHelpers_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_CFHelpers_mac.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_ComSmartPtr_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_ComSmartPtr_windows.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_CommonFile_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_CommonFile_linux.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Files_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Files_android.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Files_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Files_linux.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Files_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Files_mac.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Files_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Files_windows.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_IPAddress_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_IPAddress_posix.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_JNIHelpers_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_JNIHelpers_android.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_JNIHelpers_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_JNIHelpers_android.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Misc_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Misc_android.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_NamedPipe_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_NamedPipe_posix.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Network_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Network_android.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Network_curl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Network_curl.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Network_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Network_linux.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Network_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Network_mac.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Network_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Network_windows.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_ObjCHelpers_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_ObjCHelpers_mac.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_ObjCHelpers_mac_test.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_ObjCHelpers_mac_test.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_PlatformTimerListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_PlatformTimerListener.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_PlatformTimer_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_PlatformTimer_generic.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_PlatformTimer_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_PlatformTimer_windows.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Process_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Process_mac.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Registry_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Registry_windows.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_RuntimePermissions_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_RuntimePermissions_android.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_SharedCode_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_SharedCode_intel.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_SharedCode_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_SharedCode_posix.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Strings_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Strings_mac.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_SystemStats_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_SystemStats_android.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_SystemStats_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_SystemStats_linux.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_SystemStats_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_SystemStats_mac.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_SystemStats_wasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_SystemStats_wasm.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_SystemStats_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_SystemStats_windows.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_ThreadPriorities_native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_ThreadPriorities_native.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Threads_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Threads_android.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Threads_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Threads_linux.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Threads_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Threads_mac.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Threads_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Threads_windows.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/network/juce_IPAddress.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/network/juce_IPAddress.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_MACAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/network/juce_MACAddress.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_MACAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/network/juce_MACAddress.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/network/juce_Socket.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/network/juce_Socket.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_URL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/network/juce_URL.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_URL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/network/juce_URL.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_WebInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/network/juce_WebInputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_WebInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/network/juce_WebInputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/serialisation/juce_Serialisation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/serialisation/juce_Serialisation.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_AndroidDocumentInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_AndroidDocumentInputSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_BufferedInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_BufferedInputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_BufferedInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_BufferedInputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_InputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_InputSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_InputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_InputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_InputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_InputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_URLInputSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_URLInputSource.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_URLInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_URLInputSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_CompilerSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/system/juce_CompilerSupport.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_CompilerWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/system/juce_CompilerWarnings.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_PlatformDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/system/juce_PlatformDefs.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/system/juce_StandardHeader.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/system/juce_SystemStats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_SystemStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/system/juce_SystemStats.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_TargetPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/system/juce_TargetPlatform.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_Base64.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_Base64.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharPointer_ASCII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_ASCII.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF16.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF32.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF8.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_Identifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_Identifier.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_Identifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_Identifier.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_NewLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_NewLine.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_String.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_String.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringArray.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringArray.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringPool.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringPool.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringRef.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_TextDiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_TextDiff.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_TextDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/text/juce_TextDiff.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_CriticalSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_CriticalSection.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_DynamicLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_DynamicLibrary.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_HighResolutionTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_HighResolutionTimer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_HighResolutionTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_HighResolutionTimer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_InterProcessLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_InterProcessLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_Process.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ScopedLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ScopedLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ScopedReadLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ScopedReadLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ScopedWriteLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ScopedWriteLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_SpinLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_SpinLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_Thread.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_Thread.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ThreadLocalValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ThreadLocalValue.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/time/juce_Time.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/time/juce_Time.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTestCategories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTestCategories.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/juce_GZIPCompressorOutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/juce_GZIPCompressorOutputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/juce_GZIPCompressorOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/juce_GZIPCompressorOutputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/juce_GZIPDecompressorInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/juce_GZIPDecompressorInputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/juce_GZIPDecompressorInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/juce_GZIPDecompressorInputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/README -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/adler32.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/compress.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/crc32.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/crc32.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/deflate.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/deflate.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/infback.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inffast.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inffast.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inffixed.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inflate.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inflate.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/trees.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/trees.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/uncompr.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zconf.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zconf.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zconf.in.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zlib.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zutil.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zutil.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/juce_data_structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/juce_data_structures.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/undomanager/juce_UndoManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_data_structures/undomanager/juce_UndoManager.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/undomanager/juce_UndoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_data_structures/undomanager/juce_UndoManager.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/undomanager/juce_UndoableAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_data_structures/undomanager/juce_UndoableAction.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/values/juce_CachedValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_data_structures/values/juce_CachedValue.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/values/juce_CachedValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_data_structures/values/juce_CachedValue.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/values/juce_Value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_data_structures/values/juce_Value.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/values/juce_Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_data_structures/values/juce_Value.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/values/juce_ValueTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_data_structures/values/juce_ValueTree.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/values/juce_ValueTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_data_structures/values/juce_ValueTree.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/containers/juce_AudioBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/containers/juce_AudioBlock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/containers/juce_AudioBlock_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/containers/juce_AudioBlock_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/containers/juce_SIMDRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/containers/juce_SIMDRegister.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/containers/juce_SIMDRegister_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/containers/juce_SIMDRegister_Impl.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/containers/juce_SIMDRegister_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/containers/juce_SIMDRegister_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/filter_design/juce_FilterDesign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/filter_design/juce_FilterDesign.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/filter_design/juce_FilterDesign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/filter_design/juce_FilterDesign.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/frequency/juce_Convolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/frequency/juce_Convolution.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/frequency/juce_Convolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/frequency/juce_Convolution.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/frequency/juce_Convolution_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/frequency/juce_Convolution_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/frequency/juce_FFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/frequency/juce_FFT.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/frequency/juce_FFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/frequency/juce_FFT.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/frequency/juce_FFT_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/frequency/juce_FFT_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/frequency/juce_Windowing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/frequency/juce_Windowing.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/frequency/juce_Windowing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/frequency/juce_Windowing.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/juce_dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/juce_dsp.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/juce_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/juce_dsp.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/juce_dsp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/juce_dsp.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/maths/juce_FastMathApproximations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/maths/juce_FastMathApproximations.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/maths/juce_LogRampedValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/maths/juce_LogRampedValue.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/maths/juce_LogRampedValue_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/maths/juce_LogRampedValue_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/maths/juce_LookupTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/maths/juce_LookupTable.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/maths/juce_LookupTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/maths/juce_LookupTable.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/maths/juce_Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/maths/juce_Matrix.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/maths/juce_Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/maths/juce_Matrix.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/maths/juce_Matrix_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/maths/juce_Matrix_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/maths/juce_Phase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/maths/juce_Phase.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/maths/juce_Polynomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/maths/juce_Polynomial.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/maths/juce_SpecialFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/maths/juce_SpecialFunctions.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/maths/juce_SpecialFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/maths/juce_SpecialFunctions.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/native/juce_SIMDNativeOps_avx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/native/juce_SIMDNativeOps_avx.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/native/juce_SIMDNativeOps_avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/native/juce_SIMDNativeOps_avx.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/native/juce_SIMDNativeOps_fallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/native/juce_SIMDNativeOps_fallback.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/native/juce_SIMDNativeOps_neon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/native/juce_SIMDNativeOps_neon.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/native/juce_SIMDNativeOps_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/native/juce_SIMDNativeOps_neon.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/native/juce_SIMDNativeOps_sse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/native/juce_SIMDNativeOps_sse.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/native/juce_SIMDNativeOps_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/native/juce_SIMDNativeOps_sse.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_BallisticsFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_BallisticsFilter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_BallisticsFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_BallisticsFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_DelayLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_DelayLine.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_DelayLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_DelayLine.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_DryWetMixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_DryWetMixer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_DryWetMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_DryWetMixer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_FIRFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_FIRFilter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_FIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_FIRFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_FIRFilter_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_FIRFilter_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_FirstOrderTPTFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_FirstOrderTPTFilter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_FirstOrderTPTFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_FirstOrderTPTFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_IIRFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_IIRFilter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_IIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_IIRFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_IIRFilter_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_IIRFilter_Impl.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_LinkwitzRileyFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_LinkwitzRileyFilter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_LinkwitzRileyFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_LinkwitzRileyFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_Oversampling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_Oversampling.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_Oversampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_Oversampling.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_Panner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_Panner.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_Panner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_Panner.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_ProcessContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_ProcessContext.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_ProcessorChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_ProcessorChain.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_ProcessorChain_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_ProcessorChain_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_ProcessorDuplicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_ProcessorDuplicator.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_ProcessorWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_ProcessorWrapper.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_StateVariableFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_StateVariableFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_StateVariableTPTFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_StateVariableTPTFilter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/processors/juce_StateVariableTPTFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/processors/juce_StateVariableTPTFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/widgets/juce_Bias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/widgets/juce_Bias.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/widgets/juce_Chorus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/widgets/juce_Chorus.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/widgets/juce_Chorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/widgets/juce_Chorus.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/widgets/juce_Compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/widgets/juce_Compressor.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/widgets/juce_Compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/widgets/juce_Compressor.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/widgets/juce_Gain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/widgets/juce_Gain.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/widgets/juce_LadderFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/widgets/juce_LadderFilter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/widgets/juce_LadderFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/widgets/juce_LadderFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/widgets/juce_Limiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/widgets/juce_Limiter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/widgets/juce_Limiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/widgets/juce_Limiter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/widgets/juce_NoiseGate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/widgets/juce_NoiseGate.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/widgets/juce_NoiseGate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/widgets/juce_NoiseGate.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/widgets/juce_Oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/widgets/juce_Oscillator.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/widgets/juce_Phaser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/widgets/juce_Phaser.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/widgets/juce_Phaser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/widgets/juce_Phaser.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/widgets/juce_Reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/widgets/juce_Reverb.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_dsp/widgets/juce_WaveShaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_dsp/widgets/juce_WaveShaper.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/broadcasters/juce_ActionBroadcaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/broadcasters/juce_ActionBroadcaster.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/broadcasters/juce_ActionBroadcaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/broadcasters/juce_ActionBroadcaster.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/broadcasters/juce_ActionListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/broadcasters/juce_ActionListener.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/broadcasters/juce_AsyncUpdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/broadcasters/juce_AsyncUpdater.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/broadcasters/juce_AsyncUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/broadcasters/juce_AsyncUpdater.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/broadcasters/juce_ChangeBroadcaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/broadcasters/juce_ChangeBroadcaster.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/broadcasters/juce_ChangeBroadcaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/broadcasters/juce_ChangeBroadcaster.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/broadcasters/juce_ChangeListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/broadcasters/juce_ChangeListener.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/broadcasters/juce_LockingAsyncUpdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/broadcasters/juce_LockingAsyncUpdater.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/broadcasters/juce_LockingAsyncUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/broadcasters/juce_LockingAsyncUpdater.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/interprocess/juce_ChildProcessManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/interprocess/juce_ChildProcessManager.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/interprocess/juce_ChildProcessManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/interprocess/juce_ChildProcessManager.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/interprocess/juce_ConnectedChildProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/interprocess/juce_ConnectedChildProcess.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/interprocess/juce_InterprocessConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/interprocess/juce_InterprocessConnection.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/juce_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/juce_events.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/juce_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/juce_events.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/juce_events.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/juce_events.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_CallbackMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_CallbackMessage.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_DeletedAtShutdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_DeletedAtShutdown.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_DeletedAtShutdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_DeletedAtShutdown.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_Initialisation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_Initialisation.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_Message.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_NotificationType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_NotificationType.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_EventLoopInternal_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/native/juce_EventLoopInternal_linux.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_EventLoop_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/native/juce_EventLoop_linux.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_HiddenMessageWindow_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/native/juce_HiddenMessageWindow_windows.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_MessageManager_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/native/juce_MessageManager_ios.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_MessageManager_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/native/juce_MessageManager_mac.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_MessageQueue_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/native/juce_MessageQueue_mac.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_Messaging_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/native/juce_Messaging_android.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_Messaging_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/native/juce_Messaging_linux.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_Messaging_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/native/juce_Messaging_windows.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_RunningInUnity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/native/juce_RunningInUnity.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_ScopedLowPowerModeDisabler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/native/juce_ScopedLowPowerModeDisabler.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_ScopedLowPowerModeDisabler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/native/juce_ScopedLowPowerModeDisabler.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_WinRTWrapper_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/native/juce_WinRTWrapper_windows.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_WinRTWrapper_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/native/juce_WinRTWrapper_windows.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_TimedCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_TimedCallback.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_Timer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_Timer.h -------------------------------------------------------------------------------- /OpenShotLibrary.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/OpenShotLibrary.jucer -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/README.md -------------------------------------------------------------------------------- /cmake/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/cmake/Config.cmake.in -------------------------------------------------------------------------------- /cmake/Modules/FindASIO.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/cmake/Modules/FindASIO.cmake -------------------------------------------------------------------------------- /doc/openshot-audio-demo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/doc/openshot-audio-demo.1 -------------------------------------------------------------------------------- /doc/openshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/doc/openshot.svg -------------------------------------------------------------------------------- /include/AppConfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/include/AppConfig.h.in -------------------------------------------------------------------------------- /include/JuceHeader.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/include/JuceHeader.h.in -------------------------------------------------------------------------------- /include/OpenShotAudio.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/include/OpenShotAudio.h.in -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/hex_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/src/hex_version.cpp -------------------------------------------------------------------------------- /version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenShot/libopenshot-audio/HEAD/version.sh --------------------------------------------------------------------------------