summaryrefslogtreecommitdiff
path: root/src/codecs/include
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2022-11-22 17:05:02 +1100
committerjacqueline <me@jacqueline.id.au>2022-11-22 17:05:02 +1100
commit9176ef187227ffb56c249c5f321cd1bf50d4cfcc (patch)
treea846c8fc4e5788e97d6fca43c2807c4bf0ae0214 /src/codecs/include
parent9f8cfaa7a8abd885785830e03d7c417e856b8a22 (diff)
downloadtangara-fw-9176ef187227ffb56c249c5f321cd1bf50d4cfcc.tar.gz
Add cbor wrapper, and chunk streaming util
Diffstat (limited to 'src/codecs/include')
-rw-r--r--src/codecs/include/types.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/codecs/include/types.hpp b/src/codecs/include/types.hpp
new file mode 100644
index 00000000..8525a136
--- /dev/null
+++ b/src/codecs/include/types.hpp
@@ -0,0 +1,12 @@
+#pragma once
+
+#include <string>
+
+namespace codecs {
+
+ enum StreamType {
+ STREAM_MP3,
+ };
+
+ auto GetStreamTypeFromFilename(std::string filename);
+}