[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.17-1283-gcf603cf
kov at webkit.org
kov at webkit.org
Tue Jan 5 23:43:32 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 685321c28d68316a07d19d2f7cc4969f0b27a8b9
Author: kov at webkit.org <kov at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Mon Dec 7 17:07:53 2009 +0000
2009-12-07 Philippe Normand <pnormand at igalia.com>
Reviewed by Gustavo Noronha.
Fixed whitelist comment and removed useless (tags, sdp) mimetypes
from it. Also, GStreamer doesn't handle directly SMIL.
* platform/graphics/gtk/MediaPlayerPrivateGStreamer.cpp:
(WebCore::mimeTypeCache):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51769 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index c55f927..6d39adf 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2009-12-07 Philippe Normand <pnormand at igalia.com>
+
+ Reviewed by Gustavo Noronha.
+
+ Fixed whitelist comment and removed useless (tags, sdp) mimetypes
+ from it. Also, GStreamer doesn't handle directly SMIL.
+
+ * platform/graphics/gtk/MediaPlayerPrivateGStreamer.cpp:
+ (WebCore::mimeTypeCache):
+
2009-12-07 Joanmarie Diggs <joanmarie.diggs at gmail.com>
Reviewed by Xan Lopez.
diff --git a/WebCore/platform/graphics/gtk/MediaPlayerPrivateGStreamer.cpp b/WebCore/platform/graphics/gtk/MediaPlayerPrivateGStreamer.cpp
index 195026d..a023dae 100644
--- a/WebCore/platform/graphics/gtk/MediaPlayerPrivateGStreamer.cpp
+++ b/WebCore/platform/graphics/gtk/MediaPlayerPrivateGStreamer.cpp
@@ -757,17 +757,13 @@ static HashSet<String> mimeTypeCache()
static bool typeListInitialized = false;
if (!typeListInitialized) {
- // These subtypes are already beeing supported by WebKit itself
+ // Build a whitelist of mime-types known to be supported by
+ // GStreamer.
HashSet<String> handledApplicationSubtypes;
- handledApplicationSubtypes.add(String("x-id3v2"));
- handledApplicationSubtypes.add(String("x-id3v1"));
- handledApplicationSubtypes.add(String("x-apetag"));
handledApplicationSubtypes.add(String("ogg"));
handledApplicationSubtypes.add(String("x-3gp"));
handledApplicationSubtypes.add(String("vnd.rn-realmedia"));
handledApplicationSubtypes.add(String("x-pn-realaudio"));
- handledApplicationSubtypes.add(String("sdp"));
- handledApplicationSubtypes.add(String("smil"));
GList* factories = gst_type_find_factory_get_list();
for (GList* iterator = factories; iterator; iterator = iterator->next) {
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list