summaryrefslogtreecommitdiff
path: root/src/codecs/include/vorbis.hpp
blob: 2f93c37e37a8624092d1fa6d05756c0b5e789339 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
 * Copyright 2023 jacqueline <me@jacqueline.id.au>
 *
 * SPDX-License-Identifier: GPL-3.0-only
 */

#pragma once

#include <cstddef>
#include <cstdint>
#include <memory>
#include <optional>
#include <string>
#include <utility>

#include "ivorbisfile.h"
#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();

  auto OpenStream(std::shared_ptr<IStream> input)
      -> cpp::result<OutputFormat, Error> override;

  auto DecodeTo(cpp::span<sample::Sample> destination)
      -> cpp::result<OutputInfo, Error> override;

  auto SeekTo(std::size_t target_sample) -> cpp::result<void, Error> override;

  TremorVorbisDecoder(const TremorVorbisDecoder&) = delete;
  TremorVorbisDecoder& operator=(const TremorVorbisDecoder&) = delete;

 private:
  std::shared_ptr<IStream> input_;
  OggVorbis_File vorbis_;
};

}  // namespace codecs