From 9176ef187227ffb56c249c5f321cd1bf50d4cfcc Mon Sep 17 00:00:00 2001 From: jacqueline Date: Tue, 22 Nov 2022 17:05:02 +1100 Subject: Add cbor wrapper, and chunk streaming util --- src/codecs/include/types.hpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/codecs/include/types.hpp (limited to 'src/codecs/include') 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 + +namespace codecs { + + enum StreamType { + STREAM_MP3, + }; + + auto GetStreamTypeFromFilename(std::string filename); +} -- cgit v1.2.3