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.

juce_ReverbAudioSource.h 2.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2020 - Raw Material Software Limited
  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. namespace juce
  18. {
  19. //==============================================================================
  20. /**
  21. An AudioSource that uses the Reverb class to apply a reverb to another AudioSource.
  22. @see Reverb
  23. @tags{Audio}
  24. */
  25. class JUCE_API ReverbAudioSource : public AudioSource
  26. {
  27. public:
  28. /** Creates a ReverbAudioSource to process a given input source.
  29. @param inputSource the input source to read from - this must not be null
  30. @param deleteInputWhenDeleted if true, the input source will be deleted when
  31. this object is deleted
  32. */
  33. ReverbAudioSource (AudioSource* inputSource,
  34. bool deleteInputWhenDeleted);
  35. /** Destructor. */
  36. ~ReverbAudioSource() override;
  37. //==============================================================================
  38. /** Returns the parameters from the reverb. */
  39. const Reverb::Parameters& getParameters() const noexcept { return reverb.getParameters(); }
  40. /** Changes the reverb's parameters. */
  41. void setParameters (const Reverb::Parameters& newParams);
  42. void setBypassed (bool isBypassed) noexcept;
  43. bool isBypassed() const noexcept { return bypass; }
  44. //==============================================================================
  45. void prepareToPlay (int samplesPerBlockExpected, double sampleRate) override;
  46. void releaseResources() override;
  47. void getNextAudioBlock (const AudioSourceChannelInfo&) override;
  48. private:
  49. //==============================================================================
  50. CriticalSection lock;
  51. OptionalScopedPointer<AudioSource> input;
  52. Reverb reverb;
  53. std::atomic<bool> bypass;
  54. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (ReverbAudioSource)
  55. };
  56. } // namespace juce