summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2010-11-16 05:55:09 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2010-11-16 05:55:09 +0000
commit2b91d83ef31f8003b8068bbf31e0b9bed1f0aa24 (patch)
tree6e04e447b73db03496ef2c58e5aeabdb43dfe5e7 /libavformat/mov.c
parent9d9c3e1a70207e28bf81a4026902582ddfd60058 (diff)
In mov demuxer, export .mov encoder metadata tag
Originally committed as revision 25757 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 4eea795637..fcf7d94daf 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -154,6 +154,7 @@ static int mov_read_udta_string(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
case MKTAG(0xa9,'d','a','y'): key = "date"; break;
case MKTAG(0xa9,'g','e','n'): key = "genre"; break;
case MKTAG(0xa9,'t','o','o'):
+ case MKTAG(0xa9,'s','w','r'): key = "encoder"; break;
case MKTAG(0xa9,'e','n','c'): key = "encoder"; break;
case MKTAG( 'd','e','s','c'): key = "description";break;
case MKTAG( 'l','d','e','s'): key = "synopsis"; break;