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/audio/audio_decoder.cpp

104 lines
3.0 KiB

#include "audio_decoder.hpp"
2 years ago
#include <string.h>
2 years ago
#include <cstddef>
#include <cstdint>
2 years ago
#include "freertos/FreeRTOS.h"
#include "esp_heap_caps.h"
2 years ago
#include "freertos/message_buffer.h"
#include "freertos/portmacro.h"
2 years ago
#include "audio_element.hpp"
#include "chunk.hpp"
#include "fatfs_audio_input.hpp"
static const char* kTag = "DEC";
namespace audio {
AudioDecoder::AudioDecoder() : IAudioElement(), stream_info_({}) {}
2 years ago
AudioDecoder::~AudioDecoder() {}
auto AudioDecoder::ProcessStreamInfo(const StreamInfo& info)
-> cpp::result<void, AudioProcessingError> {
stream_info_ = info;
// Reuse the existing codec if we can. This will help with gapless playback,
// since we can potentially just continue to decode as we were before,
// without any setup overhead.
2 years ago
if (current_codec_->CanHandleFile(info.Path().value_or(""))) {
current_codec_->ResetForNewStream();
return {};
}
2 years ago
auto result = codecs::CreateCodecForFile(info.Path().value());
if (result.has_value()) {
current_codec_ = std::move(result.value());
} else {
return cpp::fail(UNSUPPORTED_STREAM);
}
return {};
}
auto AudioDecoder::ProcessChunk(const cpp::span<std::byte>& chunk)
-> cpp::result<size_t, AudioProcessingError> {
if (current_codec_ == nullptr) {
// Should never happen, but fail explicitly anyway.
return cpp::fail(UNSUPPORTED_STREAM);
}
current_codec_->SetInput(chunk);
2 years ago
bool has_samples_to_send = false;
bool needs_more_input = false;
std::optional<codecs::ICodec::ProcessingError> error = std::nullopt;
WriteChunksToStream(
output_buffer_,
[&](cpp::span<std::byte> buffer) -> std::size_t {
2 years ago
std::size_t bytes_written = 0;
// Continue filling up the output buffer so long as we have samples
// leftover, or are able to synthesize more samples from the input.
while (has_samples_to_send || !needs_more_input) {
if (!has_samples_to_send) {
auto result = current_codec_->ProcessNextFrame();
has_samples_to_send = true;
if (result.has_error()) {
error = result.error();
// End our output stream immediately if the codec barfed.
return 0;
} else {
needs_more_input = result.value();
}
} else {
auto result = current_codec_->WriteOutputSamples(
buffer.last(buffer.size() - bytes_written));
2 years ago
bytes_written += result.first;
has_samples_to_send = !result.second;
}
}
2 years ago
return bytes_written;
},
// This element doesn't support any kind of out of band commands, so we
// can just suspend the whole task if the output buffer fills up.
portMAX_DELAY);
2 years ago
if (error) {
ESP_LOGE(kTag, "Codec encountered error %d", error.value());
return cpp::fail(IO_ERROR);
}
2 years ago
return current_codec_->GetInputPosition();
}
auto AudioDecoder::ProcessIdle() -> cpp::result<void, AudioProcessingError> {
// Not used; we delay forever when waiting on IO.
return {};
}
} // namespace audio