diff options
| author | jacqueline <me@jacqueline.id.au> | 2023-08-03 16:16:46 +1000 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2023-08-03 16:16:46 +1000 |
| commit | 3b240d1cd5c52caf189ca036a1a841f7e6d84ccd (patch) | |
| tree | 2897228a44ef1854795d711bc2ef65ae1fd006c8 /src/codecs/codec.cpp | |
| parent | 31f6123b7b7b21c005267ca98a64ef6d492d553e (diff) | |
| download | tangara-fw-3b240d1cd5c52caf189ca036a1a841f7e6d84ccd.tar.gz | |
remove stb_vorbis
it doesnt work very well
Diffstat (limited to 'src/codecs/codec.cpp')
| -rw-r--r-- | src/codecs/codec.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/codecs/codec.cpp b/src/codecs/codec.cpp index e23b8702..404ea214 100644 --- a/src/codecs/codec.cpp +++ b/src/codecs/codec.cpp @@ -11,7 +11,6 @@ #include "foxenflac.hpp" #include "mad.hpp" -#include "stbvorbis.hpp" #include "types.hpp" namespace codecs { @@ -22,8 +21,6 @@ auto CreateCodecForType(StreamType type) -> std::optional<ICodec*> { return new MadMp3Decoder(); case StreamType::kFlac: return new FoxenFlacDecoder(); - case StreamType::kVorbis: - return new StbVorbisDecoder(); default: return {}; } |
