Fork of Tangara with customizations
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tangara-fw/src/codecs/include/codec.hpp

71 lines
1.8 KiB

/*
* Copyright 2023 jacqueline <me@jacqueline.id.au>
*
* SPDX-License-Identifier: GPL-3.0-only
*/
2 years ago
#pragma once
#include <stdint.h>
2 years ago
2 years ago
#include <cstddef>
#include <cstdint>
2 years ago
#include <memory>
#include <optional>
2 years ago
#include <string>
#include <utility>
2 years ago
#include "result.hpp"
#include "span.hpp"
#include "types.hpp"
2 years ago
namespace codecs {
class ICodec {
public:
virtual ~ICodec() {}
struct OutputFormat {
uint8_t num_channels;
uint8_t bits_per_sample;
2 years ago
uint32_t sample_rate_hz;
};
2 years ago
virtual auto GetOutputFormat() -> std::optional<OutputFormat> = 0;
2 years ago
enum ProcessingError { MALFORMED_DATA };
2 years ago
virtual auto SetInput(cpp::span<const std::byte> input) -> void = 0;
2 years ago
/*
* Returns the codec's next read position within the input buffer. If the
* codec is out of usable data, but there is still some data left in the
* stream, that data should be prepended to the next input buffer.
*/
virtual auto GetInputPosition() -> std::size_t = 0;
/*
* Read one frame (or equivalent discrete chunk) from the input, and
* synthesize output samples for it.
*
* Returns true if we are out of usable data from the input stream, or false
* otherwise.
*/
virtual auto ProcessNextFrame() -> cpp::result<bool, ProcessingError> = 0;
/*
* Writes PCM samples to the given output buffer.
*
* Returns the number of bytes that were written, and true if all of the
* samples synthesized from the last call to `ProcessNextFrame` have been
* written. If this returns false, then this method should be called again
* after flushing the output buffer.
*/
virtual auto WriteOutputSamples(cpp::span<std::byte> output)
2 years ago
-> std::pair<std::size_t, bool> = 0;
};
auto CreateCodecForType(StreamType type) -> std::optional<ICodec*>;
2 years ago
} // namespace codecs