[FFmpeg-cvslog] r20453 - trunk/libavformat/mov.c

bcoudurier subversion
Thu Nov 5 02:40:13 CET 2009


Author: bcoudurier
Date: Thu Nov  5 02:40:13 2009
New Revision: 20453

Log:
fix \0xa9wrt metadata, to composer, fix issue #1501

Modified:
   trunk/libavformat/mov.c

Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c	Thu Nov  5 02:10:27 2009	(r20452)
+++ trunk/libavformat/mov.c	Thu Nov  5 02:40:13 2009	(r20453)
@@ -106,8 +106,8 @@ static int mov_read_udta_string(MOVConte
     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;



More information about the ffmpeg-cvslog mailing list