diff options
author | Daniel G. Taylor <dan@programmer-art.org> | 2009-10-11 23:09:33 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-10-11 23:09:33 +0000 |
commit | febd1c90a64c1df2d72600d0fe1f020e88d10953 (patch) | |
tree | 9a704faa90bf7b6c20c6d1b28d5b619b744d8967 /libavformat/asf.c | |
parent | 0115b3eadb16ff12ba9b10946c518c1471387093 (diff) | |
download | ffmpeg-febd1c90a64c1df2d72600d0fe1f020e88d10953.tar.gz |
Detect Windows Media DRM protected files and display warning if no key
was provided.
Patch by Daniel G. Taylor, dan programmer-art org
Originally committed as revision 20209 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/asf.c')
-rw-r--r-- | libavformat/asf.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libavformat/asf.c b/libavformat/asf.c index 79ef61444b..cf01e07326 100644 --- a/libavformat/asf.c +++ b/libavformat/asf.c @@ -116,6 +116,18 @@ const ff_asf_guid ff_asf_language_guid = { 0xa9, 0x46, 0x43, 0x7c, 0xe0, 0xef, 0xfc, 0x4b, 0xb2, 0x29, 0x39, 0x3e, 0xde, 0x41, 0x5c, 0x85 }; +const ff_asf_guid ff_asf_content_encryption = { + 0xfb, 0xb3, 0x11, 0x22, 0x23, 0xbd, 0xd2, 0x11, 0xb4, 0xb7, 0x00, 0xa0, 0xc9, 0x55, 0xfc, 0x6e +}; + +const ff_asf_guid ff_asf_ext_content_encryption = { + 0x14, 0xe6, 0x8a, 0x29, 0x22, 0x26, 0x17, 0x4c, 0xb9, 0x35, 0xda, 0xe0, 0x7e, 0xe9, 0x28, 0x9c +}; + +const ff_asf_guid ff_asf_digital_signature = { + 0xfc, 0xb3, 0x11, 0x22, 0x23, 0xbd, 0xd2, 0x11, 0xb4, 0xb7, 0x00, 0xa0, 0xc9, 0x55, 0xfc, 0x6e +}; + const AVMetadataConv ff_asf_metadata_conv[] = { { "AlbumArtist", "artist" }, { "AlbumTitle" , "album" }, |