Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created September 20, 2018 18:14
Show Gist options
  • Save ryantm/2de21b76545cab622fc32c34298c8dcf to your computer and use it in GitHub Desktop.
Save ryantm/2de21b76545cab622fc32c34298c8dcf to your computer and use it in GitHub Desktop.
/nix/store/xp70ja1p7gf8zgr66a9yypy46dn7n1zj-libopenshot-audio-0.1.7
├── bin
│   └── openshot-audio-test-sound
├── include
│   └── libopenshot-audio
│   ├── JuceHeader.h
│   └── JuceLibraryCode
│   ├── AppConfig.h
│   ├── JuceHeader.h
│   └── modules
│   ├── juce_audio_basics
│   │   ├── buffers
│   │   │   ├── juce_AudioDataConverters.h
│   │   │   ├── juce_AudioSampleBuffer.h
│   │   │   └── juce_FloatVectorOperations.h
│   │   ├── effects
│   │   │   ├── juce_Decibels.h
│   │   │   ├── juce_FFT.h
│   │   │   ├── juce_IIRFilter.h
│   │   │   ├── juce_LagrangeInterpolator.h
│   │   │   └── juce_Reverb.h
│   │   ├── juce_audio_basics.h
│   │   ├── midi
│   │   │   ├── juce_MidiBuffer.h
│   │   │   ├── juce_MidiFile.h
│   │   │   ├── juce_MidiKeyboardState.h
│   │   │   ├── juce_MidiMessage.h
│   │   │   └── juce_MidiMessageSequence.h
│   │   ├── sources
│   │   │   ├── juce_AudioSource.h
│   │   │   ├── juce_BufferingAudioSource.h
│   │   │   ├── juce_ChannelRemappingAudioSource.h
│   │   │   ├── juce_IIRFilterAudioSource.h
│   │   │   ├── juce_MixerAudioSource.h
│   │   │   ├── juce_PositionableAudioSource.h
│   │   │   ├── juce_ResamplingAudioSource.h
│   │   │   ├── juce_ReverbAudioSource.h
│   │   │   └── juce_ToneGeneratorAudioSource.h
│   │   └── synthesisers
│   │   └── juce_Synthesiser.h
│   ├── juce_audio_devices
│   │   ├── audio_cd
│   │   │   ├── juce_AudioCDBurner.h
│   │   │   └── juce_AudioCDReader.h
│   │   ├── audio_io
│   │   │   ├── juce_AudioDeviceManager.h
│   │   │   ├── juce_AudioIODevice.h
│   │   │   ├── juce_AudioIODeviceType.h
│   │   │   └── juce_SystemAudioVolume.h
│   │   ├── juce_audio_devices.h
│   │   ├── midi_io
│   │   │   ├── juce_MidiInput.h
│   │   │   ├── juce_MidiMessageCollector.h
│   │   │   └── juce_MidiOutput.h
│   │   ├── native
│   │   │   └── juce_MidiDataConcatenator.h
│   │   └── sources
│   │   ├── juce_AudioSourcePlayer.h
│   │   └── juce_AudioTransportSource.h
│   ├── juce_audio_formats
│   │   ├── codecs
│   │   │   ├── flac
│   │   │   │   ├── all.h
│   │   │   │   ├── alloc.h
│   │   │   │   ├── assert.h
│   │   │   │   ├── callback.h
│   │   │   │   ├── compat.h
│   │   │   │   ├── endswap.h
│   │   │   │   ├── export.h
│   │   │   │   ├── format.h
│   │   │   │   ├── libFLAC
│   │   │   │   │   └── include
│   │   │   │   │   ├── private
│   │   │   │   │   │   ├── all.h
│   │   │   │   │   │   ├── bitmath.h
│   │   │   │   │   │   ├── bitreader.h
│   │   │   │   │   │   ├── bitwriter.h
│   │   │   │   │   │   ├── cpu.h
│   │   │   │   │   │   ├── crc.h
│   │   │   │   │   │   ├── fixed.h
│   │   │   │   │   │   ├── float.h
│   │   │   │   │   │   ├── format.h
│   │   │   │   │   │   ├── lpc.h
│   │   │   │   │   │   ├── md5.h
│   │   │   │   │   │   ├── memory.h
│   │   │   │   │   │   ├── metadata.h
│   │   │   │   │   │   ├── stream_encoder_framing.h
│   │   │   │   │   │   ├── stream_encoder.h
│   │   │   │   │   │   └── window.h
│   │   │   │   │   └── protected
│   │   │   │   │   ├── all.h
│   │   │   │   │   ├── stream_decoder.h
│   │   │   │   │   └── stream_encoder.h
│   │   │   │   ├── metadata.h
│   │   │   │   ├── ordinals.h
│   │   │   │   ├── stream_decoder.h
│   │   │   │   ├── stream_encoder.h
│   │   │   │   └── win_utf8_io.h
│   │   │   ├── juce_AiffAudioFormat.h
│   │   │   ├── juce_CoreAudioFormat.h
│   │   │   ├── juce_FlacAudioFormat.h
│   │   │   ├── juce_LAMEEncoderAudioFormat.h
│   │   │   ├── juce_MP3AudioFormat.h
│   │   │   ├── juce_OggVorbisAudioFormat.h
│   │   │   ├── juce_QuickTimeAudioFormat.h
│   │   │   ├── juce_WavAudioFormat.h
│   │   │   ├── juce_WindowsMediaAudioFormat.h
│   │   │   └── oggvorbis
│   │   │   ├── codec.h
│   │   │   ├── config_types.h
│   │   │   ├── libvorbis-1.3.2
│   │   │   │   └── lib
│   │   │   │   ├── backends.h
│   │   │   │   ├── bitrate.h
│   │   │   │   ├── books
│   │   │   │   │   ├── coupled
│   │   │   │   │   │   ├── res_books_51.h
│   │   │   │   │   │   └── res_books_stereo.h
│   │   │   │   │   ├── floor
│   │   │   │   │   │   └── floor_books.h
│   │   │   │   │   └── uncoupled
│   │   │   │   │   └── res_books_uncoupled.h
│   │   │   │   ├── codebook.h
│   │   │   │   ├── codec_internal.h
│   │   │   │   ├── envelope.h
│   │   │   │   ├── highlevel.h
│   │   │   │   ├── lookup_data.h
│   │   │   │   ├── lookup.h
│   │   │   │   ├── lpc.h
│   │   │   │   ├── lsp.h
│   │   │   │   ├── masking.h
│   │   │   │   ├── mdct.h
│   │   │   │   ├── misc.h
│   │   │   │   ├── modes
│   │   │   │   │   ├── floor_all.h
│   │   │   │   │   ├── psych_11.h
│   │   │   │   │   ├── psych_16.h
│   │   │   │   │   ├── psych_44.h
│   │   │   │   │   ├── psych_8.h
│   │   │   │   │   ├── residue_16.h
│   │   │   │   │   ├── residue_44.h
│   │   │   │   │   ├── residue_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.h
│   │   │   │   ├── registry.h
│   │   │   │   ├── scales.h
│   │   │   │   ├── smallft.h
│   │   │   │   └── window.h
│   │   │   ├── ogg.h
│   │   │   ├── os_types.h
│   │   │   ├── vorbisenc.h
│   │   │   └── vorbisfile.h
│   │   ├── format
│   │   │   ├── juce_AudioFormat.h
│   │   │   ├── juce_AudioFormatManager.h
│   │   │   ├── juce_AudioFormatReader.h
│   │   │   ├── juce_AudioFormatReaderSource.h
│   │   │   ├── juce_AudioFormatWriter.h
│   │   │   ├── juce_AudioSubsectionReader.h
│   │   │   ├── juce_BufferingAudioFormatReader.h
│   │   │   └── juce_MemoryMappedAudioFormatReader.h
│   │   ├── juce_audio_formats.h
│   │   └── sampler
│   │   └── juce_Sampler.h
│   ├── juce_audio_processors
│   │   ├── format
│   │   │   ├── juce_AudioPluginFormat.h
│   │   │   └── juce_AudioPluginFormatManager.h
│   │   ├── format_types
│   │   │   ├── juce_AudioUnitPluginFormat.h
│   │   │   ├── juce_LADSPAPluginFormat.h
│   │   │   ├── juce_VST3Common.h
│   │   │   ├── juce_VST3Headers.h
│   │   │   ├── juce_VST3PluginFormat.h
│   │   │   ├── juce_VSTMidiEventList.h
│   │   │   └── juce_VSTPluginFormat.h
│   │   ├── juce_audio_processors.h
│   │   ├── processors
│   │   │   ├── juce_AudioPlayHead.h
│   │   │   ├── juce_AudioPluginInstance.h
│   │   │   ├── juce_AudioProcessorEditor.h
│   │   │   ├── juce_AudioProcessorGraph.h
│   │   │   ├── juce_AudioProcessor.h
│   │   │   ├── juce_AudioProcessorListener.h
│   │   │   ├── juce_AudioProcessorParameter.h
│   │   │   ├── juce_GenericAudioProcessorEditor.h
│   │   │   └── juce_PluginDescription.h
│   │   └── scanning
│   │   ├── juce_KnownPluginList.h
│   │   ├── juce_PluginDirectoryScanner.h
│   │   └── juce_PluginListComponent.h
│   ├── juce_core
│   │   ├── containers
│   │   │   ├── juce_AbstractFifo.h
│   │   │   ├── juce_ArrayAllocationBase.h
│   │   │   ├── juce_Array.h
│   │   │   ├── juce_DynamicObject.h
│   │   │   ├── juce_ElementComparator.h
│   │   │   ├── juce_HashMap.h
│   │   │   ├── juce_LinkedListPointer.h
│   │   │   ├── juce_NamedValueSet.h
│   │   │   ├── juce_OwnedArray.h
│   │   │   ├── juce_PropertySet.h
│   │   │   ├── juce_ReferenceCountedArray.h
│   │   │   ├── juce_ScopedValueSetter.h
│   │   │   ├── juce_SortedSet.h
│   │   │   ├── juce_SparseSet.h
│   │   │   └── juce_Variant.h
│   │   ├── files
│   │   │   ├── juce_DirectoryIterator.h
│   │   │   ├── juce_FileFilter.h
│   │   │   ├── juce_File.h
│   │   │   ├── juce_FileInputStream.h
│   │   │   ├── juce_FileOutputStream.h
│   │   │   ├── juce_FileSearchPath.h
│   │   │   ├── juce_MemoryMappedFile.h
│   │   │   ├── juce_TemporaryFile.h
│   │   │   └── juce_WildcardFileFilter.h
│   │   ├── javascript
│   │   │   ├── juce_Javascript.h
│   │   │   └── juce_JSON.h
│   │   ├── juce_core.h
│   │   ├── logging
│   │   │   ├── juce_FileLogger.h
│   │   │   └── juce_Logger.h
│   │   ├── maths
│   │   │   ├── juce_BigInteger.h
│   │   │   ├── juce_Expression.h
│   │   │   ├── juce_MathsFunctions.h
│   │   │   ├── juce_NormalisableRange.h
│   │   │   ├── juce_Random.h
│   │   │   └── juce_Range.h
│   │   ├── memory
│   │   │   ├── juce_Atomic.h
│   │   │   ├── juce_ByteOrder.h
│   │   │   ├── juce_ContainerDeletePolicy.h
│   │   │   ├── juce_HeapBlock.h
│   │   │   ├── juce_LeakedObjectDetector.h
│   │   │   ├── juce_MemoryBlock.h
│   │   │   ├── juce_Memory.h
│   │   │   ├── juce_OptionalScopedPointer.h
│   │   │   ├── juce_ReferenceCountedObject.h
│   │   │   ├── juce_ScopedPointer.h
│   │   │   ├── juce_SharedResourcePointer.h
│   │   │   ├── juce_Singleton.h
│   │   │   └── juce_WeakReference.h
│   │   ├── misc
│   │   │   ├── juce_Result.h
│   │   │   ├── juce_Uuid.h
│   │   │   └── juce_WindowsRegistry.h
│   │   ├── native
│   │   │   ├── java
│   │   │   ├── juce_android_JNIHelpers.h
│   │   │   ├── juce_BasicNativeHeaders.h
│   │   │   ├── juce_osx_ObjCHelpers.h
│   │   │   ├── juce_posix_SharedCode.h
│   │   │   └── juce_win32_ComSmartPtr.h
│   │   ├── network
│   │   │   ├── juce_IPAddress.h
│   │   │   ├── juce_MACAddress.h
│   │   │   ├── juce_NamedPipe.h
│   │   │   ├── juce_Socket.h
│   │   │   └── juce_URL.h
│   │   ├── streams
│   │   │   ├── juce_BufferedInputStream.h
│   │   │   ├── juce_FileInputSource.h
│   │   │   ├── juce_InputSource.h
│   │   │   ├── juce_InputStream.h
│   │   │   ├── juce_MemoryInputStream.h
│   │   │   ├── juce_MemoryOutputStream.h
│   │   │   ├── juce_OutputStream.h
│   │   │   └── juce_SubregionStream.h
│   │   ├── system
│   │   │   ├── juce_CompilerSupport.h
│   │   │   ├── juce_PlatformDefs.h
│   │   │   ├── juce_StandardHeader.h
│   │   │   ├── juce_SystemStats.h
│   │   │   └── juce_TargetPlatform.h
│   │   ├── text
│   │   │   ├── juce_CharacterFunctions.h
│   │   │   ├── juce_CharPointer_ASCII.h
│   │   │   ├── juce_CharPointer_UTF16.h
│   │   │   ├── juce_CharPointer_UTF32.h
│   │   │   ├── juce_CharPointer_UTF8.h
│   │   │   ├── juce_Identifier.h
│   │   │   ├── juce_LocalisedStrings.h
│   │   │   ├── juce_NewLine.h
│   │   │   ├── juce_StringArray.h
│   │   │   ├── juce_String.h
│   │   │   ├── juce_StringPairArray.h
│   │   │   ├── juce_StringPool.h
│   │   │   ├── juce_StringRef.h
│   │   │   └── juce_TextDiff.h
│   │   ├── threads
│   │   │   ├── juce_ChildProcess.h
│   │   │   ├── juce_CriticalSection.h
│   │   │   ├── juce_DynamicLibrary.h
│   │   │   ├── juce_HighResolutionTimer.h
│   │   │   ├── juce_InterProcessLock.h
│   │   │   ├── juce_Process.h
│   │   │   ├── juce_ReadWriteLock.h
│   │   │   ├── juce_ScopedLock.h
│   │   │   ├── juce_ScopedReadLock.h
│   │   │   ├── juce_ScopedWriteLock.h
│   │   │   ├── juce_SpinLock.h
│   │   │   ├── juce_Thread.h
│   │   │   ├── juce_ThreadLocalValue.h
│   │   │   ├── juce_ThreadPool.h
│   │   │   ├── juce_TimeSliceThread.h
│   │   │   └── juce_WaitableEvent.h
│   │   ├── time
│   │   │   ├── juce_PerformanceCounter.h
│   │   │   ├── juce_RelativeTime.h
│   │   │   └── juce_Time.h
│   │   ├── unit_tests
│   │   │   └── juce_UnitTest.h
│   │   ├── xml
│   │   │   ├── juce_XmlDocument.h
│   │   │   └── juce_XmlElement.h
│   │   └── zip
│   │   ├── juce_GZIPCompressorOutputStream.h
│   │   ├── juce_GZIPDecompressorInputStream.h
│   │   ├── juce_ZipFile.h
│   │   └── zlib
│   │   ├── crc32.h
│   │   ├── deflate.h
│   │   ├── inffast.h
│   │   ├── inffixed.h
│   │   ├── inflate.h
│   │   ├── inftrees.h
│   │   ├── trees.h
│   │   ├── zconf.h
│   │   ├── zconf.in.h
│   │   ├── zlib.h
│   │   └── zutil.h
│   ├── juce_data_structures
│   │   ├── app_properties
│   │   │   ├── juce_ApplicationProperties.h
│   │   │   └── juce_PropertiesFile.h
│   │   ├── juce_data_structures.h
│   │   ├── undomanager
│   │   │   ├── juce_UndoableAction.h
│   │   │   └── juce_UndoManager.h
│   │   └── values
│   │   ├── juce_Value.h
│   │   ├── juce_ValueTree.h
│   │   └── juce_ValueTreeSynchroniser.h
│   ├── juce_events
│   │   ├── broadcasters
│   │   │   ├── juce_ActionBroadcaster.h
│   │   │   ├── juce_ActionListener.h
│   │   │   ├── juce_AsyncUpdater.h
│   │   │   ├── juce_ChangeBroadcaster.h
│   │   │   ├── juce_ChangeListener.h
│   │   │   └── juce_ListenerList.h
│   │   ├── interprocess
│   │   │   ├── juce_ConnectedChildProcess.h
│   │   │   ├── juce_InterprocessConnection.h
│   │   │   └── juce_InterprocessConnectionServer.h
│   │   ├── juce_events.h
│   │   ├── messages
│   │   │   ├── juce_ApplicationBase.h
│   │   │   ├── juce_CallbackMessage.h
│   │   │   ├── juce_DeletedAtShutdown.h
│   │   │   ├── juce_Initialisation.h
│   │   │   ├── juce_Message.h
│   │   │   ├── juce_MessageListener.h
│   │   │   ├── juce_MessageManager.h
│   │   │   ├── juce_MountedVolumeListChangeDetector.h
│   │   │   └── juce_NotificationType.h
│   │   ├── native
│   │   │   ├── juce_osx_MessageQueue.h
│   │   │   ├── juce_ScopedXLock.h
│   │   │   └── juce_win32_HiddenMessageWindow.h
│   │   └── timers
│   │   ├── juce_MultiTimer.h
│   │   └── juce_Timer.h
│   ├── juce_graphics
│   │   ├── colour
│   │   │   ├── juce_ColourGradient.h
│   │   │   ├── juce_Colour.h
│   │   │   ├── juce_Colours.h
│   │   │   ├── juce_FillType.h
│   │   │   └── juce_PixelFormats.h
│   │   ├── contexts
│   │   │   ├── juce_GraphicsContext.h
│   │   │   ├── juce_LowLevelGraphicsContext.h
│   │   │   ├── juce_LowLevelGraphicsPostScriptRenderer.h
│   │   │   └── juce_LowLevelGraphicsSoftwareRenderer.h
│   │   ├── effects
│   │   │   ├── juce_DropShadowEffect.h
│   │   │   ├── juce_GlowEffect.h
│   │   │   └── juce_ImageEffectFilter.h
│   │   ├── fonts
│   │   │   ├── juce_AttributedString.h
│   │   │   ├── juce_CustomTypeface.h
│   │   │   ├── juce_Font.h
│   │   │   ├── juce_GlyphArrangement.h
│   │   │   ├── juce_TextLayout.h
│   │   │   └── juce_Typeface.h
│   │   ├── geometry
│   │   │   ├── juce_AffineTransform.h
│   │   │   ├── juce_BorderSize.h
│   │   │   ├── juce_EdgeTable.h
│   │   │   ├── juce_Line.h
│   │   │   ├── juce_Path.h
│   │   │   ├── juce_PathIterator.h
│   │   │   ├── juce_PathStrokeType.h
│   │   │   ├── juce_Point.h
│   │   │   ├── juce_Rectangle.h
│   │   │   └── juce_RectangleList.h
│   │   ├── image_formats
│   │   │   ├── jpglib
│   │   │   │   ├── cderror.h
│   │   │   │   ├── jchuff.h
│   │   │   │   ├── jconfig.h
│   │   │   │   ├── jdct.h
│   │   │   │   ├── jdhuff.h
│   │   │   │   ├── jerror.h
│   │   │   │   ├── jinclude.h
│   │   │   │   ├── jmemsys.h
│   │   │   │   ├── jmorecfg.h
│   │   │   │   ├── jpegint.h
│   │   │   │   ├── jpeglib.h
│   │   │   │   ├── jversion.h
│   │   │   │   └── transupp.h
│   │   │   └── pnglib
│   │   │   ├── pngconf.h
│   │   │   ├── png.h
│   │   │   ├── pnginfo.h
│   │   │   ├── pngpriv.h
│   │   │   └── pngstruct.h
│   │   ├── images
│   │   │   ├── juce_ImageCache.h
│   │   │   ├── juce_ImageConvolutionKernel.h
│   │   │   ├── juce_ImageFileFormat.h
│   │   │   └── juce_Image.h
│   │   ├── juce_graphics.h
│   │   ├── native
│   │   │   ├── juce_mac_CoreGraphicsContext.h
│   │   │   ├── juce_mac_CoreGraphicsHelpers.h
│   │   │   └── juce_RenderingHelpers.h
│   │   └── placement
│   │   ├── juce_Justification.h
│   │   └── juce_RectanglePlacement.h
│   ├── juce_gui_basics
│   │   ├── application
│   │   │   └── juce_Application.h
│   │   ├── buttons
│   │   │   ├── juce_ArrowButton.h
│   │   │   ├── juce_Button.h
│   │   │   ├── juce_DrawableButton.h
│   │   │   ├── juce_HyperlinkButton.h
│   │   │   ├── juce_ImageButton.h
│   │   │   ├── juce_ShapeButton.h
│   │   │   ├── juce_TextButton.h
│   │   │   ├── juce_ToggleButton.h
│   │   │   └── juce_ToolbarButton.h
│   │   ├── commands
│   │   │   ├── juce_ApplicationCommandID.h
│   │   │   ├── juce_ApplicationCommandInfo.h
│   │   │   ├── juce_ApplicationCommandManager.h
│   │   │   ├── juce_ApplicationCommandTarget.h
│   │   │   └── juce_KeyPressMappingSet.h
│   │   ├── components
│   │   │   ├── juce_CachedComponentImage.h
│   │   │   ├── juce_Component.h
│   │   │   ├── juce_ComponentListener.h
│   │   │   ├── juce_Desktop.h
│   │   │   └── juce_ModalComponentManager.h
│   │   ├── drawables
│   │   │   ├── juce_DrawableComposite.h
│   │   │   ├── juce_Drawable.h
│   │   │   ├── juce_DrawableImage.h
│   │   │   ├── juce_DrawablePath.h
│   │   │   ├── juce_DrawableRectangle.h
│   │   │   ├── juce_DrawableShape.h
│   │   │   └── juce_DrawableText.h
│   │   ├── filebrowser
│   │   │   ├── juce_DirectoryContentsDisplayComponent.h
│   │   │   ├── juce_DirectoryContentsList.h
│   │   │   ├── juce_FileBrowserComponent.h
│   │   │   ├── juce_FileBrowserListener.h
│   │   │   ├── juce_FileChooserDialogBox.h
│   │   │   ├── juce_FileChooser.h
│   │   │   ├── juce_FileListComponent.h
│   │   │   ├── juce_FilenameComponent.h
│   │   │   ├── juce_FilePreviewComponent.h
│   │   │   ├── juce_FileSearchPathListComponent.h
│   │   │   ├── juce_FileTreeComponent.h
│   │   │   └── juce_ImagePreviewComponent.h
│   │   ├── juce_gui_basics.h
│   │   ├── keyboard
│   │   │   ├── juce_CaretComponent.h
│   │   │   ├── juce_KeyboardFocusTraverser.h
│   │   │   ├── juce_KeyListener.h
│   │   │   ├── juce_KeyPress.h
│   │   │   ├── juce_ModifierKeys.h
│   │   │   ├── juce_SystemClipboard.h
│   │   │   ├── juce_TextEditorKeyMapper.h
│   │   │   └── juce_TextInputTarget.h
│   │   ├── layout
│   │   │   ├── juce_AnimatedPositionBehaviours.h
│   │   │   ├── juce_AnimatedPosition.h
│   │   │   ├── juce_ComponentAnimator.h
│   │   │   ├── juce_ComponentBoundsConstrainer.h
│   │   │   ├── juce_ComponentBuilder.h
│   │   │   ├── juce_ComponentMovementWatcher.h
│   │   │   ├── juce_ConcertinaPanel.h
│   │   │   ├── juce_GroupComponent.h
│   │   │   ├── juce_MultiDocumentPanel.h
│   │   │   ├── juce_ResizableBorderComponent.h
│   │   │   ├── juce_ResizableCornerComponent.h
│   │   │   ├── juce_ResizableEdgeComponent.h
│   │   │   ├── juce_ScrollBar.h
│   │   │   ├── juce_StretchableLayoutManager.h
│   │   │   ├── juce_StretchableLayoutResizerBar.h
│   │   │   ├── juce_StretchableObjectResizer.h
│   │   │   ├── juce_TabbedButtonBar.h
│   │   │   ├── juce_TabbedComponent.h
│   │   │   └── juce_Viewport.h
│   │   ├── lookandfeel
│   │   │   ├── juce_LookAndFeel.h
│   │   │   ├── juce_LookAndFeel_V1.h
│   │   │   ├── juce_LookAndFeel_V2.h
│   │   │   └── juce_LookAndFeel_V3.h
│   │   ├── menus
│   │   │   ├── juce_MenuBarComponent.h
│   │   │   ├── juce_MenuBarModel.h
│   │   │   └── juce_PopupMenu.h
│   │   ├── misc
│   │   │   ├── juce_BubbleComponent.h
│   │   │   └── juce_DropShadower.h
│   │   ├── mouse
│   │   │   ├── juce_ComponentDragger.h
│   │   │   ├── juce_DragAndDropContainer.h
│   │   │   ├── juce_DragAndDropTarget.h
│   │   │   ├── juce_FileDragAndDropTarget.h
│   │   │   ├── juce_LassoComponent.h
│   │   │   ├── juce_MouseCursor.h
│   │   │   ├── juce_MouseEvent.h
│   │   │   ├── juce_MouseInactivityDetector.h
│   │   │   ├── juce_MouseInputSource.h
│   │   │   ├── juce_MouseListener.h
│   │   │   ├── juce_SelectedItemSet.h
│   │   │   ├── juce_TextDragAndDropTarget.h
│   │   │   └── juce_TooltipClient.h
│   │   ├── native
│   │   │   └── juce_MultiTouchMapper.h
│   │   ├── positioning
│   │   │   ├── juce_MarkerList.h
│   │   │   ├── juce_RelativeCoordinate.h
│   │   │   ├── juce_RelativeCoordinatePositioner.h
│   │   │   ├── juce_RelativeParallelogram.h
│   │   │   ├── juce_RelativePoint.h
│   │   │   ├── juce_RelativePointPath.h
│   │   │   └── juce_RelativeRectangle.h
│   │   ├── properties
│   │   │   ├── juce_BooleanPropertyComponent.h
│   │   │   ├── juce_ButtonPropertyComponent.h
│   │   │   ├── juce_ChoicePropertyComponent.h
│   │   │   ├── juce_PropertyComponent.h
│   │   │   ├── juce_PropertyPanel.h
│   │   │   ├── juce_SliderPropertyComponent.h
│   │   │   └── juce_TextPropertyComponent.h
│   │   ├── widgets
│   │   │   ├── juce_ComboBox.h
│   │   │   ├── juce_ImageComponent.h
│   │   │   ├── juce_Label.h
│   │   │   ├── juce_ListBox.h
│   │   │   ├── juce_ProgressBar.h
│   │   │   ├── juce_Slider.h
│   │   │   ├── juce_TableHeaderComponent.h
│   │   │   ├── juce_TableListBox.h
│   │   │   ├── juce_TextEditor.h
│   │   │   ├── juce_Toolbar.h
│   │   │   ├── juce_ToolbarItemComponent.h
│   │   │   ├── juce_ToolbarItemFactory.h
│   │   │   ├── juce_ToolbarItemPalette.h
│   │   │   └── juce_TreeView.h
│   │   └── windows
│   │   ├── juce_AlertWindow.h
│   │   ├── juce_CallOutBox.h
│   │   ├── juce_ComponentPeer.h
│   │   ├── juce_DialogWindow.h
│   │   ├── juce_DocumentWindow.h
│   │   ├── juce_NativeMessageBox.h
│   │   ├── juce_ResizableWindow.h
│   │   ├── juce_ThreadWithProgressWindow.h
│   │   ├── juce_TooltipWindow.h
│   │   └── juce_TopLevelWindow.h
│   └── juce_gui_extra
│   ├── code_editor
│   │   ├── juce_CodeDocument.h
│   │   ├── juce_CodeEditorComponent.h
│   │   ├── juce_CodeTokeniser.h
│   │   ├── juce_CPlusPlusCodeTokeniserFunctions.h
│   │   ├── juce_CPlusPlusCodeTokeniser.h
│   │   ├── juce_LuaCodeTokeniser.h
│   │   └── juce_XMLCodeTokeniser.h
│   ├── documents
│   │   └── juce_FileBasedDocument.h
│   ├── embedding
│   │   ├── juce_ActiveXControlComponent.h
│   │   ├── juce_NSViewComponent.h
│   │   └── juce_UIViewComponent.h
│   ├── juce_gui_extra.h
│   ├── misc
│   │   ├── juce_AnimatedAppComponent.h
│   │   ├── juce_AppleRemote.h
│   │   ├── juce_BubbleMessageComponent.h
│   │   ├── juce_ColourSelector.h
│   │   ├── juce_KeyMappingEditorComponent.h
│   │   ├── juce_LiveConstantEditor.h
│   │   ├── juce_PreferencesPanel.h
│   │   ├── juce_RecentlyOpenedFilesList.h
│   │   ├── juce_SplashScreen.h
│   │   ├── juce_SystemTrayIconComponent.h
│   │   └── juce_WebBrowserComponent.h
│   └── native
│   └── juce_mac_CarbonViewWrapperComponent.h
├── lib
│   ├── libopenshot-audio.so -> libopenshot-audio.so.6
│   ├── libopenshot-audio.so.0.1.7
│   └── libopenshot-audio.so.6 -> libopenshot-audio.so.0.1.7
└── share
└── man
└── man1
└── openshot-audio-test-sound.1.gz
109 directories, 530 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment