[FFmpeg-cvslog] r25497 - trunk/libavformat/movenc.c
bcoudurier
subversion
Sat Oct 16 01:16:11 CEST 2010
Author: bcoudurier
Date: Sat Oct 16 01:16:11 2010
New Revision: 25497
Log:
In mov muxer, use correct metadata tag for encoder, and use the generic metadata api name
Modified:
trunk/libavformat/movenc.c
Modified: trunk/libavformat/movenc.c
==============================================================================
--- trunk/libavformat/movenc.c Fri Oct 15 23:32:21 2010 (r25496)
+++ trunk/libavformat/movenc.c Sat Oct 16 01:16:11 2010 (r25497)
@@ -1614,7 +1614,7 @@ static int mov_write_udta_tag(ByteIOCont
mov_write_string_metadata(s, pb_buf, "\251aut", "author" , 0);
mov_write_string_metadata(s, pb_buf, "\251alb", "album" , 0);
mov_write_string_metadata(s, pb_buf, "\251day", "date" , 0);
- mov_write_string_tag(pb_buf, "\251enc", LIBAVFORMAT_IDENT, 0, 0);
+ mov_write_string_metadata(s, pb_buf, "\251swr", "encoder" , 0);
mov_write_string_metadata(s, pb_buf, "\251des", "comment" , 0);
mov_write_string_metadata(s, pb_buf, "\251gen", "genre" , 0);
mov_write_string_metadata(s, pb_buf, "\251cpy", "copyright" , 0);
More information about the ffmpeg-cvslog
mailing list