File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -249,9 +249,9 @@ struct ParabolicInterpolator : public BaseInterpolator {
249
249
* @brief Multi-channel resampler that applies a BaseInterpolator-derived algorithm
250
250
* to each channel.
251
251
*
252
- * @tparam TResampler The resampler type (must derive from BaseInterpolator).
252
+ * @tparam TInterpolator The resampler type (must derive from BaseInterpolator).
253
253
*/
254
- template <class TResampler >
254
+ template <class TInterpolator >
255
255
class MultiChannelResampler {
256
256
public:
257
257
void setChannels (int channels) {
@@ -318,15 +318,15 @@ class MultiChannelResampler {
318
318
319
319
protected:
320
320
int _channels = 0 ;
321
- Vector<TResampler > _resamplers;
321
+ Vector<TInterpolator > _resamplers;
322
322
};
323
323
324
324
/* *
325
325
* @brief A Stream implementation for resamping using a specified interpolation
326
326
* algorithm.
327
- * @tparam TResampler The resampler type (must derive from BaseInterpolator).
327
+ * @tparam TInterpolator The resampler type (must derive from BaseInterpolator).
328
328
*/
329
- template <class TResampler >
329
+ template <class TInterpolator >
330
330
class ResampleStreamT : public ReformatBaseStream {
331
331
public:
332
332
/* *
@@ -463,7 +463,7 @@ class ResampleStreamT : public ReformatBaseStream {
463
463
}
464
464
465
465
protected:
466
- MultiChannelResampler<TResampler > _resampler;
466
+ MultiChannelResampler<TInterpolator > _resampler;
467
467
ResampleConfig cfg;
468
468
469
469
// / Writes the buffer to defined output after resampling
You can’t perform that action at this time.
0 commit comments