2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2013-11-11 22:31:46 +01:00
|
|
|
|
|
|
|
#ifndef MPD_PCM_FALLBACK_RESAMPLER_HXX
|
|
|
|
#define MPD_PCM_FALLBACK_RESAMPLER_HXX
|
|
|
|
|
|
|
|
#include "Resampler.hxx"
|
2019-06-17 11:10:33 +02:00
|
|
|
#include "Buffer.hxx"
|
2013-11-11 22:31:46 +01:00
|
|
|
#include "AudioFormat.hxx"
|
|
|
|
|
2022-07-04 15:27:03 +02:00
|
|
|
#include <cstddef>
|
|
|
|
#include <span>
|
|
|
|
|
2013-11-11 22:31:46 +01:00
|
|
|
/**
|
|
|
|
* A naive resampler that is used when no external library was found
|
|
|
|
* (or when the user explicitly asks for bad quality).
|
|
|
|
*/
|
|
|
|
class FallbackPcmResampler final : public PcmResampler {
|
|
|
|
AudioFormat format;
|
|
|
|
unsigned out_rate;
|
|
|
|
|
|
|
|
PcmBuffer buffer;
|
|
|
|
|
|
|
|
public:
|
2016-09-05 12:19:20 +02:00
|
|
|
AudioFormat Open(AudioFormat &af, unsigned new_sample_rate) override;
|
2018-01-01 19:07:33 +01:00
|
|
|
void Close() noexcept override;
|
2022-07-04 15:27:03 +02:00
|
|
|
std::span<const std::byte> Resample(std::span<const std::byte> src) override;
|
2013-11-11 22:31:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|