Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
2.2KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2013 - Raw Material Software Ltd.
  5. Permission is granted to use this software under the terms of either:
  6. a) the GPL v2 (or any later version)
  7. b) the Affero GPL v3
  8. Details of these licenses can be found at: www.gnu.org/licenses
  9. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  11. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  12. ------------------------------------------------------------------------------
  13. To release a closed-source product which uses JUCE, commercial licenses are
  14. available: visit www.juce.com for more information.
  15. ==============================================================================
  16. */
  17. #ifndef JUCE_AUDIO_BASICS_H_INCLUDED
  18. #define JUCE_AUDIO_BASICS_H_INCLUDED
  19. #include "../juce_core/juce_core.h"
  20. //=============================================================================
  21. namespace juce
  22. {
  23. #include "buffers/juce_AudioDataConverters.h"
  24. #include "buffers/juce_AudioSampleBuffer.h"
  25. #include "buffers/juce_FloatVectorOperations.h"
  26. #include "effects/juce_Decibels.h"
  27. #include "effects/juce_IIRFilter.h"
  28. #include "effects/juce_IIRFilterOld.h"
  29. #include "effects/juce_LagrangeInterpolator.h"
  30. #include "effects/juce_Reverb.h"
  31. #include "midi/juce_MidiMessage.h"
  32. #include "midi/juce_MidiBuffer.h"
  33. #include "midi/juce_MidiMessageSequence.h"
  34. #include "midi/juce_MidiFile.h"
  35. #include "midi/juce_MidiKeyboardState.h"
  36. #include "sources/juce_AudioSource.h"
  37. #include "sources/juce_PositionableAudioSource.h"
  38. #include "sources/juce_BufferingAudioSource.h"
  39. #include "sources/juce_ChannelRemappingAudioSource.h"
  40. #include "sources/juce_IIRFilterAudioSource.h"
  41. #include "sources/juce_MixerAudioSource.h"
  42. #include "sources/juce_ResamplingAudioSource.h"
  43. #include "sources/juce_ReverbAudioSource.h"
  44. #include "sources/juce_ToneGeneratorAudioSource.h"
  45. #include "synthesisers/juce_Synthesiser.h"
  46. }
  47. #endif // JUCE_AUDIO_BASICS_H_INCLUDED