summaryrefslogtreecommitdiffstats
path: root/gst/matroska/matroska-ids.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2004-05-01 17:27:23 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2004-05-01 17:27:23 +0000
commit129c79c841a284165ee05575e43bafeecb71cc84 (patch)
tree6a6d8b5a303baded156dfbabb5e19e79aad39b0e /gst/matroska/matroska-ids.h
parent26a94c4bb238ca028e8e1a6a2332c561177622f5 (diff)
gst/matroska/: Basic tag reading support.
Original commit message from CVS: * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_metadata): * gst/matroska/matroska-ids.h: Basic tag reading support.
Diffstat (limited to 'gst/matroska/matroska-ids.h')
-rw-r--r--gst/matroska/matroska-ids.h23
1 files changed, 22 insertions, 1 deletions
diff --git a/gst/matroska/matroska-ids.h b/gst/matroska/matroska-ids.h
index 64f25c0f..16fc475f 100644
--- a/gst/matroska/matroska-ids.h
+++ b/gst/matroska/matroska-ids.h
@@ -97,7 +97,14 @@
#define GST_MATROSKA_ID_CUECLUSTERPOSITION 0xF1
/* IDs in the tags master */
-/* TODO */
+#define GST_MATROSKA_ID_TAG 0x7373
+
+/* in the tag master */
+#define GST_MATROSKA_ID_SIMPLETAG 0x67C8
+
+/* in the simpletag master */
+#define GST_MATROSKA_ID_TAGNAME 0x45A3
+#define GST_MATROSKA_ID_TAGSTRING 0x4487
/* IDs in the seekhead master */
#define GST_MATROSKA_ID_SEEKENTRY 0x4DBB
@@ -144,6 +151,20 @@
/* TODO: AC3-9/10 (?), Real, Musepack, Quicktime */
/*
+ * Matrodka tags. Strings.
+ */
+
+#define GST_MATROSKA_TAG_ID_TITLE "TITLE"
+#define GST_MATROSKA_TAG_ID_AUTHOR "AUTHOR"
+#define GST_MATROSKA_TAG_ID_ALBUM "ALBUM"
+#define GST_MATROSKA_TAG_ID_COMMENTS "COMMENTS"
+#define GST_MATROSKA_TAG_ID_BITSPS "BITSPS"
+#define GST_MATROSKA_TAG_ID_ENCODER "ENCODER"
+#define GST_MATROSKA_TAG_ID_DATE "DATE"
+#define GST_MATROSKA_TAG_ID_ISRC "ISRC"
+#define GST_MATROSKA_TAG_ID_COPYRIGHT "COPYRIGHT"
+
+/*
* Enumerations for various types (mapping from binary
* value to what it actually means).
*/