[SCM] libav/experimental: MOV: Fix writing \251wrt metadata (r20453 only fixed the demuxer)
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 16:54:46 UTC 2013
The following commit has been merged in the experimental branch:
commit 620af1a17a7cc8de54f8ff0eaa537cd5b9ba34b9
Author: David Conrad <lessen42 at gmail.com>
Date: Mon Nov 23 08:47:40 2009 +0000
MOV: Fix writing \251wrt metadata (r20453 only fixed the demuxer)
Originally committed as revision 20585 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 92a6f30..eb57d14 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);
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list