From 42fc963acc81860b7cc794550e13e8920e547d93 Mon Sep 17 00:00:00 2001 From: ailurux Date: Tue, 1 Jul 2025 14:22:37 +1000 Subject: Increase size of sample count fields in MP3 decoder (fixes #408) --- src/codecs/include/codec.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/codecs/include/codec.hpp') diff --git a/src/codecs/include/codec.hpp b/src/codecs/include/codec.hpp index 6ff7a267..42ce9844 100644 --- a/src/codecs/include/codec.hpp +++ b/src/codecs/include/codec.hpp @@ -105,7 +105,7 @@ class ICodec { struct OutputFormat { uint8_t num_channels; uint32_t sample_rate_hz; - std::optional total_samples; + std::optional total_samples; std::optional bitrate_kbps; bool operator==(const OutputFormat&) const = default; -- cgit v1.2.3