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.

96 lines
3.6KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2017 - ROLI Ltd.
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. The code included in this file is provided under the terms of the ISC license
  8. http://www.isc.org/downloads/software-support-policy/isc-license. Permission
  9. To use, copy, modify, and/or distribute this software for any purpose with or
  10. without fee is hereby granted provided that the above copyright notice and
  11. this permission notice appear in all copies.
  12. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  13. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  14. DISCLAIMED.
  15. ==============================================================================
  16. */
  17. /*******************************************************************************
  18. The block below describes the properties of this module, and is read by
  19. the Projucer to automatically generate project code that uses it.
  20. For details about the syntax and how to create or use a module, see the
  21. JUCE Module Format.txt file.
  22. BEGIN_JUCE_MODULE_DECLARATION
  23. ID: juce_audio_basics
  24. vendor: juce
  25. version: 5.1.2
  26. name: JUCE audio and MIDI data classes
  27. description: Classes for audio buffer manipulation, midi message handling, synthesis, etc.
  28. website: http://www.juce.com/juce
  29. license: ISC
  30. dependencies: juce_core
  31. OSXFrameworks: Accelerate
  32. iOSFrameworks: Accelerate
  33. END_JUCE_MODULE_DECLARATION
  34. *******************************************************************************/
  35. #pragma once
  36. #define JUCE_AUDIO_BASICS_H_INCLUDED
  37. #include <juce_core/juce_core.h>
  38. //==============================================================================
  39. #undef Complex // apparently some C libraries actually define these symbols (!)
  40. #undef Factor
  41. #include "buffers/juce_AudioDataConverters.h"
  42. #include "buffers/juce_FloatVectorOperations.h"
  43. #include "buffers/juce_AudioSampleBuffer.h"
  44. #include "buffers/juce_AudioChannelSet.h"
  45. #include "effects/juce_Decibels.h"
  46. #include "effects/juce_IIRFilter.h"
  47. #include "effects/juce_IIRFilterOld.h"
  48. #include "effects/juce_LagrangeInterpolator.h"
  49. #include "effects/juce_CatmullRomInterpolator.h"
  50. #include "effects/juce_LinearSmoothedValue.h"
  51. #include "effects/juce_Reverb.h"
  52. #include "midi/juce_MidiMessage.h"
  53. #include "midi/juce_MidiBuffer.h"
  54. #include "midi/juce_MidiMessageSequence.h"
  55. #include "midi/juce_MidiFile.h"
  56. #include "midi/juce_MidiKeyboardState.h"
  57. #include "midi/juce_MidiRPN.h"
  58. #include "mpe/juce_MPEValue.h"
  59. #include "mpe/juce_MPENote.h"
  60. #include "mpe/juce_MPEZone.h"
  61. #include "mpe/juce_MPEZoneLayout.h"
  62. #include "mpe/juce_MPEInstrument.h"
  63. #include "mpe/juce_MPEMessages.h"
  64. #include "mpe/juce_MPESynthesiserBase.h"
  65. #include "mpe/juce_MPESynthesiserVoice.h"
  66. #include "mpe/juce_MPESynthesiser.h"
  67. #include "sources/juce_AudioSource.h"
  68. #include "sources/juce_PositionableAudioSource.h"
  69. #include "sources/juce_BufferingAudioSource.h"
  70. #include "sources/juce_ChannelRemappingAudioSource.h"
  71. #include "sources/juce_IIRFilterAudioSource.h"
  72. #include "sources/juce_MemoryAudioSource.h"
  73. #include "sources/juce_MixerAudioSource.h"
  74. #include "sources/juce_ResamplingAudioSource.h"
  75. #include "sources/juce_ReverbAudioSource.h"
  76. #include "sources/juce_ToneGeneratorAudioSource.h"
  77. #include "synthesisers/juce_Synthesiser.h"
  78. #include "audio_play_head/juce_AudioPlayHead.h"