1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
/**
* Copyright © 2017-2025 Wellington Wallace
*
* This file is part of Easy Effects.
*
* Easy Effects is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Easy Effects is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Easy Effects. If not, see <https://www.gnu.org/licenses/>.
*/
#include "resampler.hpp"
#include <speex/speex_resampler.h>
#include <format>
#include "util.hpp"
Resampler::Resampler(const int& input_rate, const int& output_rate)
: resample_ratio(static_cast<double>(output_rate) / static_cast<double>(input_rate)) {
int err = 0;
state = speex_resampler_init(1, input_rate, output_rate,
SPEEX_RESAMPLER_QUALITY_DESKTOP, // quality: 0–10
&err);
if (!state || err != RESAMPLER_ERR_SUCCESS) {
util::warning(std::format("error while initializing speex resampler: {}", speex_resampler_strerror(err)));
}
}
Resampler::~Resampler() {
if (state) {
speex_resampler_destroy(state);
}
}
void Resampler::set_quality(const int& value) {
speex_resampler_set_quality(state, value);
}
|