diff options
author | Vladimir Pantelic <pan@nt.tu-darmstadt.de> | 2010-03-08 13:13:18 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2010-03-08 13:13:18 +0000 |
commit | 88b51ea9483bca1fa21795d07677d733e1f6a042 (patch) | |
tree | 374e0f15ed0737ef8819bf9366578013d5105ab8 /libavformat/asf.c | |
parent | 9b066ecbf01362fb3e7596604301f3c492c3b893 (diff) | |
download | ffmpeg-88b51ea9483bca1fa21795d07677d733e1f6a042.tar.gz |
Use ASF supports "markers" which are a name and a time stamp to create
lavf chapters.
Patch by Vladimir Pantelic pan (arobase) nt tu (dash) darmstadt de
Originally committed as revision 22326 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/asf.c')
-rw-r--r-- | libavformat/asf.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/asf.c b/libavformat/asf.c index 4ce1f7f718..20bfd8de1e 100644 --- a/libavformat/asf.c +++ b/libavformat/asf.c @@ -106,6 +106,10 @@ const ff_asf_guid ff_asf_metadata_header = { 0xea, 0xcb, 0xf8, 0xc5, 0xaf, 0x5b, 0x77, 0x48, 0x84, 0x67, 0xaa, 0x8c, 0x44, 0xfa, 0x4c, 0xca }; +const ff_asf_guid ff_asf_marker_header = { + 0x01, 0xCD, 0x87, 0xF4, 0x51, 0xA9, 0xCF, 0x11, 0x8E, 0xE6, 0x00, 0xC0, 0x0C, 0x20, 0x53, 0x65 +}; + /* I am not a number !!! This GUID is the one found on the PC used to generate the stream */ const ff_asf_guid ff_asf_my_guid = { |