summaryrefslogtreecommitdiff
path: root/src/codecs/native.cpp
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2024-05-16 12:20:50 +1000
committerjacqueline <me@jacqueline.id.au>2024-05-16 12:20:50 +1000
commitc1f7adf22700a268ce16ebcdda49aee6e71b53ff (patch)
tree54505c4b9472de4dd490a925831eb8ec670a2d7b /src/codecs/native.cpp
parente8f5e73b1a83a4d4742d60fb8cbb3a5642c8c8d5 (diff)
downloadtangara-fw-c1f7adf22700a268ce16ebcdda49aee6e71b53ff.tar.gz
Add a 'decoder' for streams already in our native format
Diffstat (limited to 'src/codecs/native.cpp')
-rw-r--r--src/codecs/native.cpp48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/codecs/native.cpp b/src/codecs/native.cpp
new file mode 100644
index 00000000..124434e8
--- /dev/null
+++ b/src/codecs/native.cpp
@@ -0,0 +1,48 @@
+/*
+ * Copyright 2023 jacqueline <me@jacqueline.id.au>
+ *
+ * SPDX-License-Identifier: GPL-3.0-only
+ */
+
+#include "native.hpp"
+
+#include <cstdint>
+#include <cstring>
+#include <optional>
+
+#include "esp_heap_caps.h"
+#include "mad.h"
+
+#include "codec.hpp"
+#include "esp_log.h"
+#include "result.hpp"
+#include "sample.hpp"
+#include "types.hpp"
+
+namespace codecs {
+
+NativeDecoder::NativeDecoder() : input_() {}
+
+auto NativeDecoder::OpenStream(std::shared_ptr<IStream> input, uint32_t offset)
+ -> cpp::result<OutputFormat, ICodec::Error> {
+ input_ = input;
+ return OutputFormat{
+ .num_channels = 1,
+ .sample_rate_hz = 48000,
+ .total_samples = {},
+ };
+}
+
+auto NativeDecoder::DecodeTo(std::span<sample::Sample> output)
+ -> cpp::result<OutputInfo, Error> {
+ size_t bytes = input_->Read({
+ reinterpret_cast<std::byte*>(output.data()),
+ output.size_bytes(),
+ });
+ return OutputInfo{
+ .samples_written = bytes / sizeof(sample::Sample),
+ .is_stream_finished = false,
+ };
+}
+
+} // namespace codecs