diff options
author | Anton Khirnov <wyskas@gmail.com> | 2010-02-24 18:17:32 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2010-02-24 18:17:32 +0000 |
commit | a106d4112d4a4c437ee07679e6d165356e316a87 (patch) | |
tree | 76980d429332b55c8cfa642d33093b58df839737 /libavformat/asf.c | |
parent | 855a1ba5e8a477cc07f6d804a95f2ba9c74dec8c (diff) | |
download | ffmpeg-a106d4112d4a4c437ee07679e6d165356e316a87.tar.gz |
Don't add WM prefixes to all written ASF tags.
Patch by Anton Khirnov <wyskas gmail com>.
Originally committed as revision 22033 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/asf.c')
-rw-r--r-- | libavformat/asf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/asf.c b/libavformat/asf.c index e8b37d4268..484a58defe 100644 --- a/libavformat/asf.c +++ b/libavformat/asf.c @@ -129,10 +129,10 @@ const ff_asf_guid ff_asf_digital_signature = { }; const AVMetadataConv ff_asf_metadata_conv[] = { - { "AlbumArtist", "album_artist"}, - { "AlbumTitle" , "album" }, + { "WM/AlbumArtist", "album_artist"}, + { "WM/AlbumTitle" , "album" }, { "Author" , "artist" }, - { "TrackNumber", "track" }, + { "WM/TrackNumber", "track" }, // { "Year" , "date" }, TODO: conversion year<->date { 0 } }; |