[FFmpeg-devel] [PATCH 1/6] MOV: Fix writing \251wrt metadata (r20453 only fixed the demuxer)
David Conrad
lessen42
Mon Nov 23 05:14:40 CET 2009
---
libavformat/movenc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
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);
--
1.6.4.4
More information about the ffmpeg-devel
mailing list