OpenShot Library | libopenshot-audio  0.2.0
juce_IIRFilterAudioSource.cpp
1 /*
2  ==============================================================================
3 
4  This file is part of the JUCE library.
5  Copyright (c) 2017 - ROLI Ltd.
6 
7  JUCE is an open source library subject to commercial or open-source
8  licensing.
9 
10  The code included in this file is provided under the terms of the ISC license
11  http://www.isc.org/downloads/software-support-policy/isc-license. Permission
12  To use, copy, modify, and/or distribute this software for any purpose with or
13  without fee is hereby granted provided that the above copyright notice and
14  this permission notice appear in all copies.
15 
16  JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
17  EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
18  DISCLAIMED.
19 
20  ==============================================================================
21 */
22 
23 namespace juce
24 {
25 
27  const bool deleteInputWhenDeleted)
28  : input (inputSource, deleteInputWhenDeleted)
29 {
30  jassert (inputSource != nullptr);
31 
32  for (int i = 2; --i >= 0;)
33  iirFilters.add (new IIRFilter());
34 }
35 
37 
38 //==============================================================================
40 {
41  for (int i = iirFilters.size(); --i >= 0;)
42  iirFilters.getUnchecked(i)->setCoefficients (newCoefficients);
43 }
44 
46 {
47  for (int i = iirFilters.size(); --i >= 0;)
48  iirFilters.getUnchecked(i)->makeInactive();
49 }
50 
51 //==============================================================================
52 void IIRFilterAudioSource::prepareToPlay (int samplesPerBlockExpected, double sampleRate)
53 {
54  input->prepareToPlay (samplesPerBlockExpected, sampleRate);
55 
56  for (int i = iirFilters.size(); --i >= 0;)
57  iirFilters.getUnchecked(i)->reset();
58 }
59 
61 {
62  input->releaseResources();
63 }
64 
66 {
67  input->getNextAudioBlock (bufferToFill);
68 
69  const int numChannels = bufferToFill.buffer->getNumChannels();
70 
71  while (numChannels > iirFilters.size())
72  iirFilters.add (new IIRFilter (*iirFilters.getUnchecked (0)));
73 
74  for (int i = 0; i < numChannels; ++i)
75  iirFilters.getUnchecked(i)
76  ->processSamples (bufferToFill.buffer->getWritePointer (i, bufferToFill.startSample),
77  bufferToFill.numSamples);
78 }
79 
80 } // namespace juce
juce::IIRCoefficients
A set of coefficients for use in an IIRFilter object.
Definition: juce_IIRFilter.h:40
juce::AudioSource
Base class for objects that can produce a continuous stream of audio.
Definition: juce_AudioSource.h:113
juce::IIRFilterAudioSource::getNextAudioBlock
void getNextAudioBlock(const AudioSourceChannelInfo &) override
Called repeatedly to fetch subsequent blocks of audio data.
Definition: juce_IIRFilterAudioSource.cpp:65
juce::AudioBuffer::getWritePointer
Type * getWritePointer(int channelNumber) noexcept
Returns a writeable pointer to one of the buffer's channels.
Definition: juce_AudioSampleBuffer.h:277
juce::IIRFilterAudioSource::releaseResources
void releaseResources() override
Allows the source to release anything it no longer needs after playback has stopped.
Definition: juce_IIRFilterAudioSource.cpp:60
juce::AudioSourceChannelInfo::startSample
int startSample
The first sample in the buffer from which the callback is expected to write data.
Definition: juce_AudioSource.h:81
juce::IIRFilterAudioSource::~IIRFilterAudioSource
~IIRFilterAudioSource() override
Destructor.
Definition: juce_IIRFilterAudioSource.cpp:36
juce::AudioSourceChannelInfo::numSamples
int numSamples
The number of samples in the buffer which the callback is expected to fill with data.
Definition: juce_AudioSource.h:85
juce::AudioBuffer::getNumChannels
int getNumChannels() const noexcept
Returns the number of channels of audio data that this buffer contains.
Definition: juce_AudioSampleBuffer.h:237
juce::AudioSourceChannelInfo::buffer
AudioBuffer< float > * buffer
The destination buffer to fill with audio data.
Definition: juce_AudioSource.h:77
juce::AudioSourceChannelInfo
Used by AudioSource::getNextAudioBlock().
Definition: juce_AudioSource.h:36
juce::IIRFilterAudioSource::IIRFilterAudioSource
IIRFilterAudioSource(AudioSource *inputSource, bool deleteInputWhenDeleted)
Creates a IIRFilterAudioSource for a given input source.
Definition: juce_IIRFilterAudioSource.cpp:26
juce::IIRFilterAudioSource::setCoefficients
void setCoefficients(const IIRCoefficients &newCoefficients)
Changes the filter to use the same parameters as the one being passed in.
Definition: juce_IIRFilterAudioSource.cpp:39
juce::IIRFilterAudioSource::prepareToPlay
void prepareToPlay(int samplesPerBlockExpected, double sampleRate) override
Tells the source to prepare for playing.
Definition: juce_IIRFilterAudioSource.cpp:52
juce::IIRFilter
An IIR filter that can perform low, high, or band-pass filtering on an audio signal.
Definition: juce_IIRFilter.h:160
juce::IIRFilterAudioSource::makeInactive
void makeInactive()
Calls IIRFilter::makeInactive() on all the filters being used internally.
Definition: juce_IIRFilterAudioSource.cpp:45