summaryrefslogtreecommitdiff
path: root/src/codecs/include/opus.hpp
blob: a5a7d78c07026145dd21948def41cfa1c4bf3979 (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
48
49
/*
 * 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 "opus.h"
#include "span.hpp"

#include "codec.hpp"

namespace codecs {

class XiphOpusDecoder : public ICodec {
 public:
  XiphOpusDecoder();
  ~XiphOpusDecoder();

  /*
   * 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<const std::byte>) -> Result<OutputFormat> override;

  /*
   * Writes samples for the current frame.
   */
  auto ContinueStream(cpp::span<const std::byte> input,
                      cpp::span<std::byte> output)
      -> Result<OutputInfo> override;

  auto SeekStream(cpp::span<const std::byte> input, std::size_t target_sample)
      -> Result<void> override;

 private:
  OpusDecoder *opus_;
  float *sample_buffer_;
  std::size_t sample_buffer_len_;
}  // namespace codecs