# HG changeset patch # User benoit # Date 1267115903 0 # Node ID db8bae1284618fdbb0d996a0a9eb6573760b7f4a # Parent da72d7a765987c9180da4f7a087b223460190e9e asfdec: don't strip the "WM/" prefix, this should be done during conversion. Patch by Anton Khirnov wyskas gmail com diff -r da72d7a76598 -r db8bae128461 asfdec.c --- 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); }