From 578c3737f8c07e543b90f964da0e89db1c18bb9a Mon Sep 17 00:00:00 2001 From: jacqueline Date: Wed, 9 Aug 2023 11:22:08 +1000 Subject: Add vorbis support whilst we're here --- src/codecs/include/vorbis.hpp | 58 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 src/codecs/include/vorbis.hpp (limited to 'src/codecs/include/vorbis.hpp') diff --git a/src/codecs/include/vorbis.hpp b/src/codecs/include/vorbis.hpp new file mode 100644 index 00000000..2804bb7c --- /dev/null +++ b/src/codecs/include/vorbis.hpp @@ -0,0 +1,58 @@ +/* + * Copyright 2023 jacqueline + * + * SPDX-License-Identifier: GPL-3.0-only + */ + +#pragma once + +#include +#include +#include +#include +#include +#include + +#include "ivorbisfile.h" +#include "ogg.hpp" +#include "ogg/ogg.h" +#include "opus.h" +#include "sample.hpp" +#include "span.hpp" + +#include "codec.hpp" + +namespace codecs { + +class TremorVorbisDecoder : public ICodec { + public: + TremorVorbisDecoder(); + ~TremorVorbisDecoder(); + + /* + * Returns the output format for the next frame in the stream. MP3 streams + * may represent multiple distinct tracks, with different bitrates, and so we + * handle the stream only on a frame-by-frame basis. + */ + auto BeginStream(cpp::span) -> Result override; + + /* + * Writes samples for the current frame. + */ + auto ContinueStream(cpp::span input, + cpp::span output) + -> Result override; + + auto SeekStream(cpp::span input, std::size_t target_sample) + -> Result override; + + auto ReadCallback() -> cpp::span; + auto AfterReadCallback(size_t bytes_read) -> void; + + private: + OggVorbis_File vorbis_; + cpp::span input_; + size_t pos_in_input_; +}; + +} // namespace codecs -- cgit v1.2.3