comparison vamp-sdk/hostext/PluginChannelAdapter.h @ 70:fd58037b4a7b

* use m_impl for channel and input domain adapters as well
author cannam
date Wed, 06 Jun 2007 10:00:36 +0000
parents 9d3272c7db60
children 64697dca0d48
comparison
equal deleted inserted replaced
69:3456fe86d385 70:fd58037b4a7b
111 bool initialise(size_t channels, size_t stepSize, size_t blockSize); 111 bool initialise(size_t channels, size_t stepSize, size_t blockSize);
112 112
113 FeatureSet process(const float *const *inputBuffers, RealTime timestamp); 113 FeatureSet process(const float *const *inputBuffers, RealTime timestamp);
114 114
115 protected: 115 protected:
116 size_t m_blockSize; 116 class Impl;
117 size_t m_inputChannels; 117 Impl *m_impl;
118 size_t m_pluginChannels;
119 float **m_buffer;
120 const float **m_forwardPtrs;
121 }; 118 };
122 119
123 } 120 }
124 121
125 } 122 }