diff options
author | Anton Khirnov <wyskas@gmail.com> | 2010-02-25 16:38:23 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2010-02-25 16:38:23 +0000 |
commit | e4ea625ab03c766945a16e30d689fcaabb2416b7 (patch) | |
tree | c219f2bebae755343576976794f61b1b303e194c /libavformat/asfdec.c | |
parent | 36b54927fd789841cf40866230fc847cb1fab766 (diff) | |
download | ffmpeg-e4ea625ab03c766945a16e30d689fcaabb2416b7.tar.gz |
asfdec: don't strip the "WM/" prefix, this should be done during conversion.
Patch by Anton Khirnov wyskas gmail com
Originally committed as revision 22057 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/asfdec.c')
-rw-r--r-- | libavformat/asfdec.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c index bbc2be0ba1..3a2f0e0916 100644 --- a/libavformat/asfdec.c +++ b/libavformat/asfdec.c @@ -175,8 +175,6 @@ static void get_tag(AVFormatContext *s, const char *key, int type, int len) 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); } |