summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2009-11-23 08:47:47 +0000
committerDavid Conrad <lessen42@gmail.com>2009-11-23 08:47:47 +0000
commitb9c78bca269d75eb633f5cee494e2030e0064811 (patch)
treeca40d1cee24c497b1c707996f97e5a7bf5398092 /libavformat/mov.c
parent7382902b8654356248cc5d1887a361d7febd878c (diff)
MOV: cprt is another tag used for copyright
Originally committed as revision 20587 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 21ef770f82..7ba92ff8cc 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -108,6 +108,7 @@ static int mov_read_udta_string(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
case MKTAG(0xa9,'a','u','t'):
case MKTAG(0xa9,'A','R','T'): key = "author"; 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;
case MKTAG(0xa9,'c','m','t'):
case MKTAG(0xa9,'i','n','f'): key = "comment"; break;