diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2008-08-08 23:50:38 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2008-08-08 23:50:38 +0000 |
commit | 44015c56a698b3285d186ccb80310cb0b625e12b (patch) | |
tree | 077246cc3d4a28560f2b16688c131610f0116c0f /libavformat/matroska.h | |
parent | 4f5c72e85744304cc41ba430a8dfd005d18a06b3 (diff) | |
download | ffmpeg-44015c56a698b3285d186ccb80310cb0b625e12b.tar.gz |
matroskadec: add basic tags support (metadata)
Originally committed as revision 14672 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/matroska.h')
-rw-r--r-- | libavformat/matroska.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libavformat/matroska.h b/libavformat/matroska.h index 5587c01787..8930e16d3c 100644 --- a/libavformat/matroska.h +++ b/libavformat/matroska.h @@ -133,7 +133,13 @@ #define MATROSKA_ID_CUECLUSTERPOSITION 0xF1 /* IDs in the tags master */ -/* TODO */ +#define MATROSKA_ID_TAG 0x7373 +#define MATROSKA_ID_SIMPLETAG 0x67C8 +#define MATROSKA_ID_TAGNAME 0x45A3 +#define MATROSKA_ID_TAGSTRING 0x4487 +#define MATROSKA_ID_TAGLANG 0x447A +#define MATROSKA_ID_TAGDEFAULT 0x44B4 +#define MATROSKA_ID_TAGTARGETS 0x63C0 /* IDs in the seekhead master */ #define MATROSKA_ID_SEEKENTRY 0x4DBB |