[SCM] libav/experimental: fix \0xa9wrt metadata, to composer, fix issue #1501

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:54:04 UTC 2013


The following commit has been merged in the experimental branch:
commit 55d2e32a409e62f19af0e0032a2b1f8f201465fb
Author: Baptiste Coudurier <baptiste.coudurier at gmail.com>
Date:   Thu Nov 5 01:40:13 2009 +0000

    fix \0xa9wrt metadata, to composer, fix issue #1501
    
    Originally committed as revision 20453 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/mov.c b/libavformat/mov.c
index 7957518..26f516b 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -106,8 +106,8 @@ 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'):
-    case MKTAG(0xa9,'w','r','t'): key = "author";    break;
+    case MKTAG(0xa9,'A','R','T'): key = "author";    break;
+    case MKTAG(0xa9,'w','r','t'): key = "composer";  break;
     case MKTAG(0xa9,'c','p','y'): key = "copyright"; break;
     case MKTAG(0xa9,'c','m','t'):
     case MKTAG(0xa9,'i','n','f'): key = "comment";   break;

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list