Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
resonance_audio.h
Go to the documentation of this file.
1// Copyright (C) 2022 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-3.0-only
3#ifndef RESONANCE_AUDIO_H
4#define RESONANCE_AUDIO_H
5
6#include <api/resonance_audio_api.h>
7
8#include <memory>
9
10namespace vraudio
11{
12
13class EXPORT_API ResonanceAudio
14{
15public:
17
18 // reverb is only calculated in stereo. We get it here as well, and our ambisonic
19 // decoder will then add it to the generated surround signal.
20 int getAmbisonicOutput(const float *buffers[], const float *reverb[], int nChannels);
21
23 bool roomEffectsEnabled = true;
24};
25
26
27
28}
29
30#endif