summaryrefslogtreecommitdiffstats
path: root/libmpdemux/matroska.h
diff options
context:
space:
mode:
Diffstat (limited to 'libmpdemux/matroska.h')
-rw-r--r--libmpdemux/matroska.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/libmpdemux/matroska.h b/libmpdemux/matroska.h
new file mode 100644
index 0000000000..5e68301784
--- /dev/null
+++ b/libmpdemux/matroska.h
@@ -0,0 +1,21 @@
+/*
+ * CodecID definitions for Matroska files
+ *
+ * see http://cvs.corecodec.org/cgi-bin/cvsweb.cgi/~checkout~/matroska/doc/website/specs/codex.html?rev=HEAD&content-type=text/html
+ */
+
+#ifndef __MATROSKA_H
+#define __MATROSKA_H
+
+#define MKV_A_MP3 "A_MPEG/L3"
+#define MKV_A_AC3 "A_AC3"
+#define MKV_A_PCM "A_PCM/INT/LIT"
+#define MKV_A_VORBIS "A_VORBIS"
+#define MKV_A_ACM "A_MS/ACM"
+
+#define MKV_V_MSCOMP "V_MS/VFW/FOURCC"
+
+#define MKV_S_TEXTASCII "S_TEXT/ASCII"
+#define MKV_S_TEXTUTF8 "S_TEXT/UTF8"
+
+#endif /* __MATROSKA_H */