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.

AppConfig.h 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. ==============================================================================
  3. Build options for juce_audio_formats static library
  4. ==============================================================================
  5. */
  6. #ifndef CARLA_JUCE_AUDIO_FORMATS_APPCONFIG_H_INCLUDED
  7. #define CARLA_JUCE_AUDIO_FORMATS_APPCONFIG_H_INCLUDED
  8. #include "../juce_audio_basics/AppConfig.h"
  9. //=============================================================================
  10. /** Config: JUCE_USE_FLAC
  11. Enables the FLAC audio codec classes (available on all platforms).
  12. If your app doesn't need to read FLAC files, you might want to disable this to
  13. reduce the size of your codebase and build time.
  14. */
  15. #define JUCE_USE_FLAC 0
  16. /** Config: JUCE_USE_OGGVORBIS
  17. Enables the Ogg-Vorbis audio codec classes (available on all platforms).
  18. If your app doesn't need to read Ogg-Vorbis files, you might want to disable this to
  19. reduce the size of your codebase and build time.
  20. */
  21. #define JUCE_USE_OGGVORBIS 0
  22. /** Config: JUCE_USE_MP3AUDIOFORMAT
  23. Enables the software-based MP3AudioFormat class.
  24. IMPORTANT DISCLAIMER: By choosing to enable the JUCE_USE_MP3AUDIOFORMAT flag and to compile
  25. this MP3 code into your software, you do so AT YOUR OWN RISK! By doing so, you are agreeing
  26. that Raw Material Software is in no way responsible for any patent, copyright, or other
  27. legal issues that you may suffer as a result.
  28. The code in juce_MP3AudioFormat.cpp is NOT guaranteed to be free from infringements of 3rd-party
  29. intellectual property. If you wish to use it, please seek your own independent advice about the
  30. legality of doing so. If you are not willing to accept full responsibility for the consequences
  31. of using this code, then do not enable this setting.
  32. */
  33. #define JUCE_USE_MP3AUDIOFORMAT 0
  34. /** Config: JUCE_USE_LAME_AUDIO_FORMAT
  35. Enables the LameEncoderAudioFormat class.
  36. */
  37. #define JUCE_USE_LAME_AUDIO_FORMAT 0
  38. /** Config: JUCE_USE_WINDOWS_MEDIA_FORMAT
  39. Enables the Windows Media SDK codecs.
  40. */
  41. #define JUCE_USE_WINDOWS_MEDIA_FORMAT 0
  42. #endif // CARLA_JUCE_AUDIO_FORMATS_APPCONFIG_H_INCLUDED