From 4e27de21e49900963ffa61cc9c0a676bb028f992 Mon Sep 17 00:00:00 2001 From: jacqueline Date: Wed, 16 Aug 2023 10:57:55 +1000 Subject: clean up a bunch of obselete audio code --- src/audio/resample.cpp | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) (limited to 'src/audio/resample.cpp') diff --git a/src/audio/resample.cpp b/src/audio/resample.cpp index bc2c7c51..a3a34ee7 100644 --- a/src/audio/resample.cpp +++ b/src/audio/resample.cpp @@ -4,27 +4,18 @@ * SPDX-License-Identifier: GPL-3.0-only */ #include "resample.hpp" -/* - * This file contains the implementation for a 32-bit floating point resampler. - * It is largely based on David Bryant's ART resampler, which is BSD-licensed, - * and available at https://github.com/dbry/audio-resampler/. - * - * This resampler uses windowed sinc interpolation filters, with an additional - * lowpass filter to reduce aliasing. - */ -#include -#include -#include #include #include +#include +#include +#include #include #include "esp_log.h" +#include "speex/speex_resampler.h" #include "sample.hpp" -#include "speex/speex_resampler.h" -#include "stream_info.hpp" namespace audio { -- cgit v1.2.3