diff options
author | David Conrad <lessen42@gmail.com> | 2009-11-23 08:47:40 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2009-11-23 08:47:40 +0000 |
commit | 620af1a17a7cc8de54f8ff0eaa537cd5b9ba34b9 (patch) | |
tree | 394174824e2bb22ebbb9ec00bf8ed4dd10a8f670 /libavformat | |
parent | 419b2be813e3391e046858b7e3d5f07a81f3d263 (diff) | |
download | ffmpeg-620af1a17a7cc8de54f8ff0eaa537cd5b9ba34b9.tar.gz |
MOV: Fix writing \251wrt metadata (r20453 only fixed the demuxer)
Originally committed as revision 20585 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/movenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 92a6f3016e..eb57d1433c 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -1370,7 +1370,7 @@ static int mov_write_ilst_tag(ByteIOContext *pb, MOVMuxContext *mov, put_tag(pb, "ilst"); mov_write_string_metadata(s, pb, "\251nam", "title" , 1); mov_write_string_metadata(s, pb, "\251ART", "author" , 1); - mov_write_string_metadata(s, pb, "\251wrt", "author" , 1); + mov_write_string_metadata(s, pb, "\251wrt", "composer" , 1); mov_write_string_metadata(s, pb, "\251alb", "album" , 1); mov_write_string_metadata(s, pb, "\251day", "year" , 1); mov_write_string_tag(pb, "\251too", LIBAVFORMAT_IDENT, 0, 1); |