summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2010-05-23 21:03:14 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2010-05-23 21:03:14 +0000
commitea4c4d7fe395c6202a83ad36547e58abdfe8263e (patch)
tree7a52d525b6c8ace92992c1c68d6abfc5bc0949b8 /libavformat/mov.c
parente53ca636d90e4484361dfea7e3017b9697725a00 (diff)
change author metadata to artist in mov de/muxer
Originally committed as revision 23266 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index e37bcf5f57..2edd27e440 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -144,7 +144,7 @@ static int mov_read_udta_string(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
switch (atom.type) {
case MKTAG(0xa9,'n','a','m'): key = "title"; break;
case MKTAG(0xa9,'a','u','t'):
- case MKTAG(0xa9,'A','R','T'): key = "author"; break;
+ case MKTAG(0xa9,'A','R','T'): key = "artist"; break;
case MKTAG(0xa9,'w','r','t'): key = "composer"; break;
case MKTAG( 'c','p','r','t'):
case MKTAG(0xa9,'c','p','y'): key = "copyright"; break;