Mercurial > libavformat.hg
comparison mov.c @ 5383:79b48fe3d753 libavformat
MOV: cprt is another tag used for copyright
author | conrad |
---|---|
date | Mon, 23 Nov 2009 08:47:47 +0000 |
parents | 45d0832f48b6 |
children | 8737044ce5c3 |
comparison
equal
deleted
inserted
replaced
5382:45d0832f48b6 | 5383:79b48fe3d753 |
---|---|
106 switch (atom.type) { | 106 switch (atom.type) { |
107 case MKTAG(0xa9,'n','a','m'): key = "title"; break; | 107 case MKTAG(0xa9,'n','a','m'): key = "title"; break; |
108 case MKTAG(0xa9,'a','u','t'): | 108 case MKTAG(0xa9,'a','u','t'): |
109 case MKTAG(0xa9,'A','R','T'): key = "author"; break; | 109 case MKTAG(0xa9,'A','R','T'): key = "author"; break; |
110 case MKTAG(0xa9,'w','r','t'): key = "composer"; break; | 110 case MKTAG(0xa9,'w','r','t'): key = "composer"; break; |
111 case MKTAG( 'c','p','r','t'): | |
111 case MKTAG(0xa9,'c','p','y'): key = "copyright"; break; | 112 case MKTAG(0xa9,'c','p','y'): key = "copyright"; break; |
112 case MKTAG(0xa9,'c','m','t'): | 113 case MKTAG(0xa9,'c','m','t'): |
113 case MKTAG(0xa9,'i','n','f'): key = "comment"; break; | 114 case MKTAG(0xa9,'i','n','f'): key = "comment"; break; |
114 case MKTAG(0xa9,'a','l','b'): key = "album"; break; | 115 case MKTAG(0xa9,'a','l','b'): key = "album"; break; |
115 case MKTAG(0xa9,'d','a','y'): key = "year"; break; | 116 case MKTAG(0xa9,'d','a','y'): key = "year"; break; |