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 {
249249 * @brief Multi-channel resampler that applies a BaseInterpolator-derived algorithm
250250 * to each channel.
251251 *
252- * @tparam TResampler The resampler type (must derive from BaseInterpolator).
252+ * @tparam TInterpolator The resampler type (must derive from BaseInterpolator).
253253 */
254- template <class TResampler >
254+ template <class TInterpolator >
255255class MultiChannelResampler {
256256 public:
257257 void setChannels (int channels) {
@@ -318,15 +318,15 @@ class MultiChannelResampler {
318318
319319 protected:
320320 int _channels = 0 ;
321- Vector<TResampler > _resamplers;
321+ Vector<TInterpolator > _resamplers;
322322};
323323
324324/* *
325325 * @brief A Stream implementation for resamping using a specified interpolation
326326 * algorithm.
327- * @tparam TResampler The resampler type (must derive from BaseInterpolator).
327+ * @tparam TInterpolator The resampler type (must derive from BaseInterpolator).
328328 */
329- template <class TResampler >
329+ template <class TInterpolator >
330330class ResampleStreamT : public ReformatBaseStream {
331331 public:
332332 /* *
@@ -463,7 +463,7 @@ class ResampleStreamT : public ReformatBaseStream {
463463 }
464464
465465 protected:
466- MultiChannelResampler<TResampler > _resampler;
466+ MultiChannelResampler<TInterpolator > _resampler;
467467 ResampleConfig cfg;
468468
469469 // / Writes the buffer to defined output after resampling
You can’t perform that action at this time.
0 commit comments