summaryrefslogtreecommitdiff
path: root/src/codecs
diff options
context:
space:
mode:
Diffstat (limited to 'src/codecs')
-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);
+}