21#ifndef CHANNELCONVERTER_P_H
22#define CHANNELCONVERTER_P_H
29class ChannelConverter :
public Effect
32 ChannelConverter(ChannelMap out_map);
34 void configure(quint32 srate, ChannelMap in_map)
override;
35 void applyEffect(Buffer *b)
override;
38 bool m_disabled =
true;
39 int m_reorder_array[9] = { 0 };
40 float *m_tmp_buf =
nullptr;
41 size_t m_tmp_size = 0;
42 ChannelMap m_out_map, m_in_map;
The Effect class provides the base interface class of audio effects.
Definition effect.h:36