LMMS
Loading...
Searching...
No Matches
StereoMatrix.h
Go to the documentation of this file.
1/*
2 * StereoMatrix.h - stereo-matrix-effect-plugin
3 *
4 * Copyright (c) 2008 Paul Giblock <drfaygo/at/gmail/dot/com>
5 *
6 * This file is part of LMMS - https://lmms.io
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public
19 * License along with this program (see COPYING); if not, write to the
20 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 * Boston, MA 02110-1301 USA.
22 *
23 */
24
25
26#ifndef _STEREO_MATRIX_H
27#define _STEREO_MATRIX_H
28
29#include "Effect.h"
31
32namespace lmms
33{
34
35
37{
38public:
40 const Descriptor::SubPluginFeatures::Key * _key );
41 ~StereoMatrixEffect() override = default;
42
43 ProcessStatus processImpl(SampleFrame* buf, const f_cnt_t frames) override;
44
46 {
47 return( &m_smControls );
48 }
49
50
51private:
53
55} ;
56
57
58} // namespace lmms
59
60#endif
Definition EffectControls.h:44
Effect(const Plugin::Descriptor *_desc, Model *_parent, const Descriptor::SubPluginFeatures::Key *_key)
Definition Effect.cpp:41
ProcessStatus
Definition Effect.h:147
Definition Model.h:37
Definition SampleFrame.h:41
friend class StereoMatrixControls
Definition StereoMatrix.h:54
StereoMatrixControls m_smControls
Definition StereoMatrix.h:52
ProcessStatus processImpl(SampleFrame *buf, const f_cnt_t frames) override
Definition StereoMatrix.cpp:67
EffectControls * controls() override
Definition StereoMatrix.h:45
~StereoMatrixEffect() override=default
StereoMatrixEffect(Model *parent, const Descriptor::SubPluginFeatures::Key *_key)
Definition StereoMatrix.cpp:56
static uintptr_t parent
Definition pugl.h:1644
Definition AudioAlsa.cpp:35
std::uint64_t f_cnt_t
Definition LmmsTypes.h:43