/* * Copyright 2023 jacqueline * * SPDX-License-Identifier: GPL-3.0-only */ #include "opus.hpp" #include #include #include #include #include #include "esp_heap_caps.h" #include "mad.h" #include "codec.hpp" #include "esp_log.h" #include "ogg/ogg.h" #include "opus.h" #include "opus_types.h" #include "result.hpp" #include "sample.hpp" #include "types.hpp" namespace codecs { static constexpr char kTag[] = "opus"; // "If this is less than the maximum packet duration (120ms; 5760 for 48kHz), // this function will not be capable of decoding some packets" static constexpr size_t kSampleBufferSize = 5760; XiphOpusDecoder::XiphOpusDecoder() : opus_(nullptr) { pos_in_buffer_ = 0; sample_buffer_ = {reinterpret_cast( heap_caps_calloc(kSampleBufferSize, sizeof(opus_int16), MALLOC_CAP_8BIT | MALLOC_CAP_SPIRAM)), kSampleBufferSize}; } XiphOpusDecoder::~XiphOpusDecoder() { if (opus_ != nullptr) { opus_decoder_destroy(opus_); } heap_caps_free(sample_buffer_.data()); } auto XiphOpusDecoder::BeginStream(const cpp::span input) -> Result { ogg_.AddBytes(input); if (!ogg_.HasNextPacket()) { return {input.size(), cpp::fail(Error::kOutOfInput)}; } auto packet = ogg_.NextPacket(); int num_channels = opus_packet_get_nb_channels(packet.data()); if (num_channels > 2) { // Too many channels; we can't handle this. // TODO: better error return {input.size(), cpp::fail(Error::kMalformedData)}; } int err; opus_ = opus_decoder_create(48000, num_channels, &err); if (err != OPUS_OK) { return {input.size(), cpp::fail(Error::kInternalError)}; } return {input.size(), OutputFormat{ .num_channels = static_cast(num_channels), .sample_rate_hz = 48000, }}; } auto XiphOpusDecoder::ContinueStream(cpp::span input, cpp::span output) -> Result { size_t bytes_used = 0; if (pos_in_buffer_ >= samples_in_buffer_) { ESP_LOGI(kTag, "sample buffer is empty. parsing more."); if (!ogg_.HasNextPacket()) { bytes_used = input.size(); ogg_.AddBytes(input); } if (!ogg_.HasNextPacket()) { return {bytes_used, cpp::fail(Error::kOutOfInput)}; } auto packet = ogg_.NextPacket(); pos_in_buffer_ = 0; samples_in_buffer_ = opus_decode(opus_, packet.data(), packet.size_bytes(), sample_buffer_.data(), sample_buffer_.size(), 0); if (samples_in_buffer_ < 0) { ESP_LOGE(kTag, "error decoding stream"); return {bytes_used, cpp::fail(Error::kMalformedData)}; } } size_t samples_written = 0; while (pos_in_buffer_ < samples_in_buffer_ && samples_written < output.size()) { output[samples_written++] = sample::FromSigned(sample_buffer_[pos_in_buffer_++], 16); } return {bytes_used, OutputInfo{ .samples_written = samples_written, .is_finished_writing = pos_in_buffer_ >= samples_in_buffer_, }}; } auto XiphOpusDecoder::SeekStream(cpp::span input, std::size_t target_sample) -> Result { return {}; } } // namespace codecs