summaryrefslogtreecommitdiffstats
path: root/libavformat/movenc.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2010-10-15 23:16:11 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2010-10-15 23:16:11 +0000
commitedd33cb6faa78bf1cc533ccd283719b2c9224756 (patch)
tree8a326cd5ab01508b8130a95b4d955bb6f3d476a4 /libavformat/movenc.c
parent946df0598bcd9edd7a3d4f3197cadab421b712ea (diff)
downloadffmpeg-streaming-edd33cb6faa78bf1cc533ccd283719b2c9224756.zip
ffmpeg-streaming-edd33cb6faa78bf1cc533ccd283719b2c9224756.tar.gz
In mov muxer, use correct metadata tag for encoder, and use the generic metadata api name
Originally committed as revision 25497 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r--libavformat/movenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 7961d44..d98d0c1 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -1614,7 +1614,7 @@ static int mov_write_udta_tag(ByteIOContext *pb, MOVMuxContext *mov,
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);
OpenPOWER on IntegriCloud