diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-01-20 23:48:16 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-01-20 23:48:16 +0000 |
commit | 88141c9192549eb8adc492528568db4c45cb1f55 (patch) | |
tree | 8f313d964c960fe0ce4a08dd9bf358519b3f617a /libavformat/asf.h | |
parent | 82863d1e02bf27af6607a497104ecff4cc011963 (diff) | |
download | ffmpeg-88141c9192549eb8adc492528568db4c45cb1f55.tar.gz |
audio in dvr-ms demuxing support by (John Donaghy <johnfdonaghy gmail com<)
Originally committed as revision 4874 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/asf.h')
-rw-r--r-- | libavformat/asf.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libavformat/asf.h b/libavformat/asf.h index c9661b97a2..8dcf7716f1 100644 --- a/libavformat/asf.h +++ b/libavformat/asf.h @@ -143,6 +143,10 @@ static const GUID stream_header = { 0xB7DC0791, 0xA9B7, 0x11CF, { 0x8E, 0xE6, 0x00, 0xC0, 0x0C, 0x20, 0x53, 0x65 }, }; +static const GUID ext_stream_header = { + 0x14E6A5CB, 0xC672, 0x4332, { 0x83, 0x99, 0xA9, 0x69, 0x52, 0x06, 0x5B, 0x5A }, +}; + static const GUID audio_stream = { 0xF8699E40, 0x5B4D, 0x11CF, { 0xA8, 0xFD, 0x00, 0x80, 0x5F, 0x5C, 0x44, 0x2B }, }; @@ -200,6 +204,14 @@ static const GUID simple_index_header = { 0x33000890, 0xE5B1, 0x11CF, { 0x89, 0xF4, 0x00, 0xA0, 0xC9, 0x03, 0x49, 0xCB }, }; +static const GUID ext_stream_embed_stream_header = { + 0x3afb65e2, 0x47ef, 0x40f2, { 0xac, 0x2c, 0x70, 0xa9, 0x0d, 0x71, 0xd3, 0x43} +}; + +static const GUID ext_stream_audio_stream = { + 0x31178c9d, 0x03e1, 0x4528, { 0xb5, 0x82, 0x3d, 0xf9, 0xdb, 0x22, 0xf5, 0x03} +}; + /* I am not a number !!! This GUID is the one found on the PC used to generate the stream */ static const GUID my_guid = { |