File: Grain.h

package info (click to toggle)
iem-plugin-suite 1.15.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,080 kB
  • sloc: cpp: 58,973; python: 269; sh: 79; makefile: 41
file content (54 lines) | stat: -rw-r--r-- 1,787 bytes parent folder | download | duplicates (2)
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
/*
 ==============================================================================
 This file is part of the IEM plug-in suite.
 Author: Stefan Riedel
 Copyright (c) 2022 - Institute of Electronic Music and Acoustics (IEM)
 https://iem.at

 The IEM plug-in suite is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.

 The IEM plug-in suite is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with this software.  If not, see <https://www.gnu.org/licenses/>.
 ==============================================================================
 */

#include "JuceHeader.h"

class Grain
{
public:
    struct GrainJobParameters
    {
        int startPositionCircBuffer = 0;
        int startOffsetInBlock = 0;
        int grainLengthSamples = 0;
        float pitchReadFactor = 1.0f;
        std::array<float, 64> channelWeights;
        float gainFactor = 1.0f;
        bool seedFromLeftCircBuffer = true;
        juce::AudioBuffer<float> windowBuffer;
    };

    Grain();

    void setBlockSize (int numSampOutBuffer);
    void startGrain (const GrainJobParameters& grainParameters);
    void processBlock (juce::AudioBuffer<float>& buffer, juce::AudioBuffer<float>& circularBuffer);

    bool isActive() const;

private:
    GrainJobParameters _params;
    int _currentIndex;
    bool _isActive;
    int _blockCounter;
    juce::AudioBuffer<float> _outputBuffer;
};