Renamed func params to something more natural

This commit is contained in:
emeric
2026-02-17 23:15:44 +01:00
parent 6742c99ed8
commit cea3cad6e1
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -28,7 +28,7 @@ namespace lms::audio::ffmpeg
class PcmDecoder : public IPcmDecoder
{
public:
PcmDecoder(const std::filesystem::path& filePath, const PcmDecoderParameters& parameters);
PcmDecoder(const std::filesystem::path& filePath, const PcmOutputParameters& parameters);
~PcmDecoder() override;
PcmDecoder(const PcmDecoder&) = delete;
@@ -43,7 +43,7 @@ namespace lms::audio::ffmpeg
std::size_t drainResampler(std::span<WritableBuffer> outputChannelBuffers, std::size_t maxSamplesPerChannel);
std::size_t getEstimatedResamplerAvailableSamples() const;
const PcmDecoderParameters _parameters;
const PcmOutputParameters _parameters;
bool _finished{};
bool _eof{};