diff options
| author | jacqueline <me@jacqueline.id.au> | 2023-08-01 10:15:03 +1000 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2023-08-01 10:15:03 +1000 |
| commit | c3f40a8cc37114365ef3ec6f2888df64e5206b39 (patch) | |
| tree | caa43cc105ef8768dfc9767b6a4d86bcef215c5c /src/codecs/opus.cpp | |
| parent | 23393312b7183fa61d4a6ba9e97af21f2337a8af (diff) | |
| download | tangara-fw-c3f40a8cc37114365ef3ec6f2888df64e5206b39.tar.gz | |
Start on opus decoder structure
Diffstat (limited to 'src/codecs/opus.cpp')
| -rw-r--r-- | src/codecs/opus.cpp | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/codecs/opus.cpp b/src/codecs/opus.cpp new file mode 100644 index 00000000..2c4291c2 --- /dev/null +++ b/src/codecs/opus.cpp @@ -0,0 +1,52 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + +#include "opus.hpp" +#include <stdint.h> +#include <sys/_stdint.h> + +#include <cstdint> +#include <cstring> +#include <optional> + +#include "mad.h" + +#include "codec.hpp" +#include "esp_log.h" +#include "opus.h" +#include "result.hpp" +#include "types.hpp" + +namespace codecs { + + static constexpr std::size_t kSampleBufferSize = 5760 * sizeof(float); + +XiphOpusDecoder::XiphOpusDecoder() { + int err; + opus_ = opus_decoder_create(48000, 2, &err); + assert(err == OPUS_OK); +} +XiphOpusDecoder::~XiphOpusDecoder() { + opus_decoder_destroy(opus_); +} + +auto XiphOpusDecoder::BeginStream(const cpp::span<const std::byte> input) + -> Result<OutputFormat> {} + +auto XiphOpusDecoder::ContinueStream(cpp::span<const std::byte> input, + cpp::span<std::byte> output) + -> Result<OutputInfo> { + int samples_decoded = opus_decode_float( + opus_, reinterpret_cast<const unsigned char*>(input.data()), + input.size_bytes(), sample_buffer_, sample_buffer_len_, 0); +} + +auto XiphOpusDecoder::SeekStream(cpp::span<const std::byte> input, + std::size_t target_sample) -> Result<void> { + return {}; +} + +} // namespace codecs |
