[FFmpeg-cvslog] r22057 - trunk/libavformat/asfdec.c

benoit subversion
Thu Feb 25 17:38:23 CET 2010


Author: benoit
Date: Thu Feb 25 17:38:23 2010
New Revision: 22057

Log:
asfdec: don't strip the "WM/" prefix, this should be done during conversion.
Patch by Anton Khirnov wyskas gmail com

Modified:
   trunk/libavformat/asfdec.c

Modified: trunk/libavformat/asfdec.c
==============================================================================
--- trunk/libavformat/asfdec.c	Thu Feb 25 16:29:12 2010	(r22056)
+++ trunk/libavformat/asfdec.c	Thu Feb 25 17:38:23 2010	(r22057)
@@ -175,8 +175,6 @@ static void get_tag(AVFormatContext *s, 
         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);
 }



More information about the ffmpeg-cvslog mailing list