-
Notifications
You must be signed in to change notification settings - Fork 12
/
FilterEngine.h
123 lines (107 loc) · 4.39 KB
/
FilterEngine.h
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
/*
This file is part of EqualizerAPO, a system-wide equalizer.
Copyright (C) 2014 Jonas Thedering
This program 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 2 of the License, or
(at your option) any later version.
This program 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 program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#pragma once
#include <string>
#include <vector>
#include <unordered_set>
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include "IFilterFactory.h"
#include "FilterConfiguration.h"
#include "helpers/PrecisionTimer.h"
#include "helpers/MemoryHelper.h"
namespace mup {
class ParserX;
}
#pragma AVRT_VTABLES_BEGIN
class FilterEngine
{
public:
FilterEngine();
~FilterEngine();
void setPreMix(bool preMix);
void setDeviceInfo(bool capture, bool postMixInstalled, const std::wstring& deviceName, const std::wstring& connectionName, const std::wstring& deviceGuid, const std::wstring& deviceString);
void initialize(float sampleRate, unsigned inputChannelCount, unsigned realChannelCount, unsigned outputChannelCount, unsigned channelMask, unsigned maxFrameCount, const std::wstring& customPath = L"");
void loadConfig(const std::wstring& customPath = L"");
void loadConfigFile(const std::wstring& path);
void watchRegistryKey(const std::wstring& key);
void process(float* output, float* input, unsigned frameCount);
void process(float** output, float** input, unsigned frameCount);
bool isPreMix() const {return preMix;}
bool isCapture() const {return capture;}
bool isPostMixInstalled() const {return postMixInstalled;}
std::wstring getDeviceName() const {return deviceName;}
std::wstring getConnectionName() const {return connectionName;}
std::wstring getDeviceGuid() const {return deviceGuid;}
std::wstring getDeviceString() const {return deviceString;}
unsigned getInputChannelCount() const {return inputChannelCount;}
unsigned getRealChannelCount() const {return realChannelCount;}
unsigned getOutputChannelCount() const {return outputChannelCount;}
unsigned getChannelMask() const {return channelMask;}
float getSampleRate() const {return sampleRate;}
unsigned getMaxFrameCount() const {return maxFrameCount;}
mup::ParserX* getParser() {return parser;}
private:
void addFilters(std::vector<IFilter*> filters);
void cleanupConfigurations();
static unsigned long __stdcall notificationThread(void* parameter);
void deleteBuffers2D();
void deleteBuffers1D();
void allocateBuffers2D(unsigned frameCount);
void allocateBuffers1D(unsigned inputFrameCount, unsigned outputFrameCount);
std::vector<IFilterFactory*> factories;
double **inputBuf2D, **outputBuf2D;
unsigned doubleBufLen2D, inputBuf2DChannelCount, outputBuf2DChannelCount;
double *inputBuf1D, *outputBuf1D;
unsigned inputBuf1DLen, outputBuf1DLen;
bool preMix;
bool capture;
bool postMixInstalled;
std::wstring deviceName;
std::wstring connectionName;
std::wstring deviceGuid;
std::wstring deviceString;
std::wstring configPath;
float sampleRate;
// number of input channels that originally existed before child APO processing
unsigned inputChannelCount;
// number of input channels in process (including channels coming from child APO output)
unsigned realChannelCount;
unsigned outputChannelCount;
unsigned channelMask;
unsigned maxFrameCount;
// only used during loading
std::vector<FilterInfo*> filterInfos;
std::vector<std::wstring> currentChannelNames;
std::vector<std::wstring> lastChannelNames;
std::vector<std::wstring> lastNewChannelNames;
std::vector<std::wstring> allChannelNames;
bool lastInPlace;
mup::ParserX* parser;
FilterConfiguration* currentConfig;
FilterConfiguration* nextConfig;
FilterConfiguration* previousConfig;
unsigned transitionCounter;
unsigned transitionLength;
HANDLE loadSemaphore;
CRITICAL_SECTION loadSection;
PrecisionTimer timer;
void* threadHandle;
void* shutdownEvent;
std::unordered_set<std::wstring> watchRegistryKeys;
bool lastInputWasSilent;
};
#pragma AVRT_VTABLES_END