changeset 5381:b54fa3ff2f61 libavformat

MOV: Fix writing \251wrt metadata (r20453 only fixed the demuxer)
author conrad
date Mon, 23 Nov 2009 08:47:40 +0000
parents 7a06194c23af
children 45d0832f48b6
files movenc.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/movenc.c	Sun Nov 22 21:04:18 2009 +0000
+++ b/movenc.c	Mon Nov 23 08:47:40 2009 +0000
@@ -1370,7 +1370,7 @@
     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);