RESOLVED FIXED 19299
QTMovieWin should not hard code supported MIME types
https://bugs.webkit.org/show_bug.cgi?id=19299
Summary QTMovieWin should not hard code supported MIME types
Eric Carlson
Reported 2008-05-28 15:04:44 PDT
QTMovieWin currently has a hard coded list of MIME types. The list doesn't include many common types supported by a default QuickTime install (eg. "audio/mp3" or the many other MP3 synonyms), but it also means that WebKit won't list types added by third party movie importers (eg. the ogg importers).
Attachments
proposed fix (5.73 KB, patch)
2008-05-28 15:41 PDT, Eric Carlson
koivisto: review+
Revised patch (5.40 KB, patch)
2008-05-30 14:15 PDT, Eric Carlson
koivisto: review+
Mark Rowe (bdash)
Comment 1 2008-05-28 15:06:33 PDT
Eric Carlson
Comment 2 2008-05-28 15:41:32 PDT
Created attachment 21405 [details] proposed fix
Antti Koivisto
Comment 3 2008-05-29 09:51:20 PDT
Looks good. Some style comments, I guess this was adapted from existing code. + ComponentDescription findCD; + QTAtom mimeTag; + Component comp; + char *atomData; + int index; + long componentCount; + OSErr err = noErr; + QTAtomContainer mimeList = NULL; + ComponentDescription infoCD; + int typeIndex, typeCount; + long typeLength; WebKit code doesn't usually align variable names like this. + // grab every type from the container + QTLockContainer(mimeList); + typeCount = QTCountChildrenOfType(mimeList, kParentAtomIsContainer, kMimeInfoMimeTypeTag); + for (typeIndex = 1; typeIndex <= typeCount; typeIndex++) { + if ( 0 != (mimeTag = QTFindChildByIndex(mimeList, 0, kMimeInfoMimeTypeTag, typeIndex, NULL))) { Extra space after ( It would be better to do assignment separately from comparison. This and the next if could use continue instead, reducing code nesting. + if (0 != strncmp(typeBuffer, "audio/", 6) && 0 != strncmp(typeBuffer, "video/", 6)) 0 != is unnecessary + for ( int addedIndex = 0; addedIndex < gSupportedTypes->size(); addedIndex++ ) { extra space after ( and before )
Eric Carlson
Comment 4 2008-05-30 14:15:17 PDT
Created attachment 21437 [details] Revised patch
Darin Adler
Comment 5 2008-06-08 11:23:42 PDT
Committed revision 34444.
Note You need to log in before you can comment on or make changes to this bug.