diff options
author | Vladimir Pantelic <vladoman@gmail.com> | 2013-09-19 17:50:36 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-09-19 19:37:46 +0200 |
commit | 1eb932803037a3c9f98f66aeb80024dfa3c5c743 (patch) | |
tree | e8e44956a81f77b746a7ac46fad94e78de6b41fb /libavformat/asf.c | |
parent | c53b5dda352452e79a9e962cd4c74c813186d9ed (diff) | |
download | ffmpeg-1eb932803037a3c9f98f66aeb80024dfa3c5c743.tar.gz |
asfenc: add ASF_Reserved_4 as defined in section 10.10 of the ASF spec
Signed-off-by: Vladimir Pantelic <vladoman@gmail.com>
Signed-off-by: Anton Khirnov <anton@khirnov.net>
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 52afa097df..ec34b5010d 100644 --- a/libavformat/asf.c +++ b/libavformat/asf.c @@ -117,6 +117,10 @@ const ff_asf_guid ff_asf_marker_header = { 0x01, 0xCD, 0x87, 0xF4, 0x51, 0xA9, 0xCF, 0x11, 0x8E, 0xE6, 0x00, 0xC0, 0x0C, 0x20, 0x53, 0x65 }; +const ff_asf_guid ff_asf_reserved_4 = { + 0x20, 0xdb, 0xfe, 0x4c, 0xf6, 0x75, 0xCF, 0x11, 0x9c, 0x0f, 0x00, 0xa0, 0xc9, 0x03, 0x49, 0xcb +}; + /* 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 = { |