diff options
| author | jacqueline <me@jacqueline.id.au> | 2023-12-19 18:11:23 +1100 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2023-12-19 18:11:23 +1100 |
| commit | 62d51a304eb02f0eab0645488c0b922b4a45e1c9 (patch) | |
| tree | d6dc7013e7db41315fff79807f1e95a996829297 /src/codecs/codec.cpp | |
| parent | b5d86a9497cdd6b3a27a5c3c9d68993c956143cd (diff) | |
| download | tangara-fw-62d51a304eb02f0eab0645488c0b922b4a45e1c9.tar.gz | |
replace foxenflac with miniflac
it's better!
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: |
