@@ -327,37 +327,37 @@ class MultiChannelResampler {
327
327
* @tparam TResampler The resampler type (must derive from BaseInterpolator).
328
328
*/
329
329
template <class TResampler >
330
- class ResamplerStreamT : public ReformatBaseStream {
330
+ class ResampleStreamT : public ReformatBaseStream {
331
331
public:
332
332
/* *
333
333
* @brief Default constructor.
334
334
*/
335
- ResamplerStreamT () = default ;
335
+ ResampleStreamT () = default ;
336
336
/* *
337
337
* @brief Constructor for output to a Print interface.
338
338
* @param out The Print interface to write resampled data to.
339
339
*/
340
340
341
- ResamplerStreamT (Print& out) { setOutput (out); }
341
+ ResampleStreamT (Print& out) { setOutput (out); }
342
342
/* *
343
343
* @brief Constructor for output to an AudioOutput interface.
344
344
* @param out The AudioOutput interface to write resampled data to.
345
345
*/
346
346
347
- ResamplerStreamT (AudioOutput& out) {
347
+ ResampleStreamT (AudioOutput& out) {
348
348
setAudioInfo (out.audioInfo ());
349
349
setOutput (out);
350
350
}
351
351
/* *
352
352
* @brief Constructor for input/output via a Stream interface.
353
353
* @param io The Stream interface to read/write data.
354
354
*/
355
- ResamplerStreamT (Stream& io) { setStream (io); }
355
+ ResampleStreamT (Stream& io) { setStream (io); }
356
356
/* *
357
357
* @brief Constructor for input/output via an AudioStream interface.
358
358
* @param io The AudioStream interface to read/write data.
359
359
*/
360
- ResamplerStreamT (AudioStream& io) {
360
+ ResampleStreamT (AudioStream& io) {
361
361
setAudioInfo (io.audioInfo ());
362
362
setStream (io);
363
363
}
@@ -425,7 +425,7 @@ class ResamplerStreamT : public ReformatBaseStream {
425
425
* @brief Write interleaved samples to the stream
426
426
*/
427
427
size_t write (const uint8_t * data, size_t len) override {
428
- LOGD (" ResamplerStreamT ::write: %d" , (int )len);
428
+ LOGD (" ResampleStreamT ::write: %d" , (int )len);
429
429
// addNotifyOnFirstWrite();
430
430
size_t written = 0 ;
431
431
switch (info.bits_per_sample ) {
0 commit comments