diff options
Diffstat (limited to 'src/codecs/codec.cpp')
| -rw-r--r-- | src/codecs/codec.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/codecs/codec.cpp b/src/codecs/codec.cpp index 3610dea8..d81d4b05 100644 --- a/src/codecs/codec.cpp +++ b/src/codecs/codec.cpp @@ -9,8 +9,8 @@ #include <memory> #include <optional> -#include "foxenflac.hpp" #include "mad.hpp" +#include "miniflac.hpp" #include "opus.hpp" #include "types.hpp" #include "vorbis.hpp" @@ -41,7 +41,7 @@ auto CreateCodecForType(StreamType type) -> std::optional<ICodec*> { case StreamType::kVorbis: return new TremorVorbisDecoder(); case StreamType::kFlac: - return new FoxenFlacDecoder(); + return new MiniFlacDecoder(); case StreamType::kOpus: return new XiphOpusDecoder(); default: |
