diff asf.c @ 5273:f292b3e34823 libavformat

Detect Windows Media DRM protected files and display warning if no key was provided. Patch by Daniel G. Taylor, dan programmer-art org
author cehoyos
date Sun, 11 Oct 2009 23:09:33 +0000
parents c090f960fc8a
children 27fd77f20a89
line wrap: on
line diff
--- a/asf.c	Sun Oct 11 11:56:53 2009 +0000
+++ b/asf.c	Sun Oct 11 23:09:33 2009 +0000
@@ -116,6 +116,18 @@
     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"     },