diff options
| author | jacqueline <me@jacqueline.id.au> | 2024-02-14 12:21:33 +1100 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2024-02-14 12:21:33 +1100 |
| commit | 7ec0ff2589ffd5774e78f9e6b436ea55be45deb1 (patch) | |
| tree | 4bc335bf6474bff2babbcbd4690231320b52520f /src/codecs/include | |
| parent | b31bc07555fdd862181d8d6ed551163cea89bc62 (diff) | |
| download | tangara-fw-7ec0ff2589ffd5774e78f9e6b436ea55be45deb1.tar.gz | |
Switch to the lowmem tremor branch
in addition to using slightly less memory, this branch also doesn't seem
to have the same issues with `-O2` builds that the main branch has.
Diffstat (limited to 'src/codecs/include')
| -rw-r--r-- | src/codecs/include/vorbis.hpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/codecs/include/vorbis.hpp b/src/codecs/include/vorbis.hpp index 673b67a0..b96a0407 100644 --- a/src/codecs/include/vorbis.hpp +++ b/src/codecs/include/vorbis.hpp @@ -14,8 +14,6 @@ #include <utility> #include "ivorbisfile.h" -#include "ogg/ogg.h" -#include "opus.h" #include "sample.hpp" #include "span.hpp" @@ -41,7 +39,7 @@ class TremorVorbisDecoder : public ICodec { private: std::shared_ptr<IStream> input_; - std::unique_ptr<OggVorbis_File> vorbis_; + std::unique_ptr<TremorOggVorbis_File> vorbis_; }; } // namespace codecs |
