changeset 5718:db8bae128461 libavformat

asfdec: don't strip the "WM/" prefix, this should be done during conversion. Patch by Anton Khirnov wyskas gmail com
author benoit
date Thu, 25 Feb 2010 16:38:23 +0000
parents da72d7a76598
children 65b13165daaf
files asfdec.c
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/asfdec.c	Thu Feb 25 09:10:37 2010 +0000
+++ b/asfdec.c	Thu Feb 25 16:38:23 2010 +0000
@@ -175,8 +175,6 @@
         av_log(s, AV_LOG_DEBUG, "Unsupported value type %d in tag %s.\n", type, key);
         return;
     }
-    if (!strncmp(key, "WM/", 3))
-        key += 3;
     av_metadata_set2(&s->metadata, key, value, 0);
     av_freep(&value);
 }