-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathPluginProcessor.cpp
More file actions
180 lines (147 loc) · 4.55 KB
/
PluginProcessor.cpp
File metadata and controls
180 lines (147 loc) · 4.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
#include "PluginProcessor.h"
#include "PluginEditor.h"
PhaseVocoderAudioProcessor::PhaseVocoderAudioProcessor() :
state (*this, nullptr, "Params", {
std::make_unique<juce::AudioParameterFloat> ("Pitch", "Pitch Multiplier",
juce::NormalisableRange<float> (0.5f, 2.f), 1.0f)
})
#ifndef JucePlugin_PreferredChannelConfigurations
,AudioProcessor (BusesProperties()
#if ! JucePlugin_IsMidiEffect
#if ! JucePlugin_IsSynth
.withInput ("Input", juce::AudioChannelSet::stereo(), true)
#endif
.withOutput ("Output", juce::AudioChannelSet::stereo(), true)
#endif
)
#endif
{
const auto window = pitchShifter.getLatencyInSamples ();
#ifdef DEBUG
history[0].setSize (3 * window, true);
history[1].setSize (3 * window, true);
#endif
pitchParam = state.getRawParameterValue ("Pitch");
// Must be set by the phasevocoder class
setLatencySamples (window);
}
PhaseVocoderAudioProcessor::~PhaseVocoderAudioProcessor()
{
}
const juce::String PhaseVocoderAudioProcessor::getName() const
{
return JucePlugin_Name;
}
bool PhaseVocoderAudioProcessor::acceptsMidi() const
{
#if JucePlugin_WantsMidiInput
return true;
#else
return false;
#endif
}
bool PhaseVocoderAudioProcessor::producesMidi() const
{
#if JucePlugin_ProducesMidiOutput
return true;
#else
return false;
#endif
}
bool PhaseVocoderAudioProcessor::isMidiEffect () const
{
#ifdef JucePlugin_IsMidiEffect
return false;
#else
return false;
#endif
}
double PhaseVocoderAudioProcessor::getTailLengthSeconds() const
{
return 0.0;
}
int PhaseVocoderAudioProcessor::getNumPrograms()
{
return 1;
}
int PhaseVocoderAudioProcessor::getCurrentProgram()
{
return 0;
}
void PhaseVocoderAudioProcessor::setCurrentProgram (int index)
{
}
const juce::String PhaseVocoderAudioProcessor::getProgramName (int index)
{
return {};
}
void PhaseVocoderAudioProcessor::changeProgramName (int index, const juce::String& newName)
{
}
void PhaseVocoderAudioProcessor::prepareToPlay (double sampleRate, int samplesPerBlock)
{
}
void PhaseVocoderAudioProcessor::releaseResources()
{
}
#ifndef JucePlugin_PreferredChannelConfigurations
bool PhaseVocoderAudioProcessor::isBusesLayoutSupported (const BusesLayout& layouts) const
{
#if JucePlugin_IsMidiEffect
ignoreUnused (layouts);
return true;
#else
// This is the place where you check if the layout is supported.
// In this template code we only support mono or stereo.
if (layouts.getMainOutputChannelSet() != juce::AudioChannelSet::mono() &&
layouts.getMainOutputChannelSet() != juce::AudioChannelSet::stereo())
return false;
// This checks if the input layout matches the output layout
#if ! JucePlugin_IsSynth
if (layouts.getMainOutputChannelSet() != layouts.getMainInputChannelSet())
return false;
#endif
return true;
#endif
}
#endif
void PhaseVocoderAudioProcessor::processBlock (juce::AudioSampleBuffer& buffer, juce::MidiBuffer& midiMessages)
{
const auto numSamples = buffer.getNumSamples ();
const auto totalNumInputChannels = getTotalNumInputChannels();
const auto totalNumOutputChannels = getTotalNumOutputChannels();
// Need 2 input and output channels at least, further channels will be ignored
jassert (totalNumInputChannels >= 2);
jassert (totalNumOutputChannels >= 2);
// Clear unused output channels
for (auto i = totalNumInputChannels; i < totalNumOutputChannels; ++i)
buffer.clear (i, 0, numSamples);
pitchShifter.setPitchRatio (pitchParam->load());
pitchShifter.process (buffer.getWritePointer (0), numSamples);
//peakShifter.process (buffer.getWritePointer (0), numSamples);
buffer.copyFrom (1, 0, buffer.getWritePointer (0), numSamples);
#ifdef DEBUG
// Store output in history buffer
history[0].write (buffer.getReadPointer (0), numSamples);
#endif
}
bool PhaseVocoderAudioProcessor::hasEditor() const
{
return true;
}
juce::AudioProcessorEditor* PhaseVocoderAudioProcessor::createEditor()
{
return new PhaseVocoderAudioProcessorEditor (this);
}
//==============================================================================
void PhaseVocoderAudioProcessor::getStateInformation (juce::MemoryBlock& destData)
{
}
void PhaseVocoderAudioProcessor::setStateInformation (const void* data, int sizeInBytes)
{
}
// This creates new instances of the plugin..
juce::AudioProcessor* JUCE_CALLTYPE createPluginFilter()
{
return new PhaseVocoderAudioProcessor();
}