Title: [123346] trunk
Revision
123346
Author
[email protected]
Date
2012-07-23 09:25:01 -0700 (Mon, 23 Jul 2012)

Log Message

Unreviewed, rolling out r123339.
http://trac.webkit.org/changeset/123339
https://bugs.webkit.org/show_bug.cgi?id=92006

massive media tests failure (Requested by philn on #webkit).

Patch by Sheriff Bot <[email protected]> on 2012-07-23

Source/WebCore:

* platform/graphics/gstreamer/GRefPtrGStreamer.cpp:
(WTF::adoptGRef):
* platform/graphics/gstreamer/GStreamerVersioning.cpp:
(setGstElementClassMetadata):
* platform/graphics/gstreamer/GStreamerVersioning.h:

Tools:

* Scripts/webkitdirs.pm:
(buildAutotoolsProject):
* gtk/jhbuild.modules:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (123345 => 123346)


--- trunk/Source/WebCore/ChangeLog	2012-07-23 16:15:25 UTC (rev 123345)
+++ trunk/Source/WebCore/ChangeLog	2012-07-23 16:25:01 UTC (rev 123346)
@@ -1,3 +1,17 @@
+2012-07-23  Sheriff Bot  <[email protected]>
+
+        Unreviewed, rolling out r123339.
+        http://trac.webkit.org/changeset/123339
+        https://bugs.webkit.org/show_bug.cgi?id=92006
+
+        massive media tests failure (Requested by philn on #webkit).
+
+        * platform/graphics/gstreamer/GRefPtrGStreamer.cpp:
+        (WTF::adoptGRef):
+        * platform/graphics/gstreamer/GStreamerVersioning.cpp:
+        (setGstElementClassMetadata):
+        * platform/graphics/gstreamer/GStreamerVersioning.h:
+
 2012-07-21  Vincent Scheib  <[email protected]>
 
         webkitFullscreenElement, webkitCurrentFullScreenElement, webkitPointerLockElement block cross origin access.

Modified: trunk/Source/WebCore/platform/graphics/gstreamer/GRefPtrGStreamer.cpp (123345 => 123346)


--- trunk/Source/WebCore/platform/graphics/gstreamer/GRefPtrGStreamer.cpp	2012-07-23 16:15:25 UTC (rev 123345)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/GRefPtrGStreamer.cpp	2012-07-23 16:25:01 UTC (rev 123346)
@@ -28,7 +28,7 @@
 
 template <> GRefPtr<GstElement> adoptGRef(GstElement* ptr)
 {
-    ASSERT(!ptr || !gstObjectIsFloating(GST_OBJECT(ptr)));
+    ASSERT(!ptr || !GST_OBJECT_IS_FLOATING(GST_OBJECT(ptr)));
     return GRefPtr<GstElement>(ptr, GRefPtrAdopt);
 }
 
@@ -48,7 +48,7 @@
 
 template <> GRefPtr<GstPad> adoptGRef(GstPad* ptr)
 {
-    ASSERT(!ptr || !gstObjectIsFloating(GST_OBJECT(ptr)));
+    ASSERT(!ptr || !GST_OBJECT_IS_FLOATING(GST_OBJECT(ptr)));
     return GRefPtr<GstPad>(ptr, GRefPtrAdopt);
 }
 
@@ -68,7 +68,7 @@
 
 template <> GRefPtr<GstPadTemplate> adoptGRef(GstPadTemplate* ptr)
 {
-    ASSERT(!ptr || !gstObjectIsFloating(GST_OBJECT(ptr)));
+    ASSERT(!ptr || !GST_OBJECT_IS_FLOATING(GST_OBJECT(ptr)));
     return GRefPtr<GstPadTemplate>(ptr, GRefPtrAdopt);
 }
 
@@ -102,7 +102,7 @@
 
 template <> GRefPtr<GstTask> adoptGRef(GstTask* ptr)
 {
-    ASSERT(!gstObjectIsFloating(GST_OBJECT(ptr)));
+    ASSERT(!GST_OBJECT_IS_FLOATING(GST_OBJECT(ptr)));
     return GRefPtr<GstTask>(ptr, GRefPtrAdopt);
 }
 
@@ -122,7 +122,7 @@
 
 template <> GRefPtr<GstBus> adoptGRef(GstBus* ptr)
 {
-    ASSERT(!gstObjectIsFloating(GST_OBJECT(ptr)));
+    ASSERT(!GST_OBJECT_IS_FLOATING(GST_OBJECT(ptr)));
     return GRefPtr<GstBus>(ptr, GRefPtrAdopt);
 }
 
@@ -142,7 +142,7 @@
 
 template <> GRefPtr<GstElementFactory> adoptGRef(GstElementFactory* ptr)
 {
-    ASSERT(!gstObjectIsFloating(GST_OBJECT(ptr)));
+    ASSERT(!GST_OBJECT_IS_FLOATING(GST_OBJECT(ptr)));
     return GRefPtr<GstElementFactory>(ptr, GRefPtrAdopt);
 }
 

Modified: trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerVersioning.cpp (123345 => 123346)


--- trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerVersioning.cpp	2012-07-23 16:15:25 UTC (rev 123345)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerVersioning.cpp	2012-07-23 16:25:01 UTC (rev 123346)
@@ -105,12 +105,3 @@
     gst_element_class_set_details_simple(elementClass, name, longName, description, author);
 #endif
 }
-
-bool gstObjectIsFloating(GstObject* gstObject)
-{
-#ifdef GST_API_VERSION_1
-    return g_object_is_floating(G_OBJECT(gstObject));
-#else
-    return GST_OBJECT_IS_FLOATING(gstObject);
-#endif
-}

Modified: trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerVersioning.h (123345 => 123346)


--- trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerVersioning.h	2012-07-23 16:15:25 UTC (rev 123345)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerVersioning.h	2012-07-23 16:25:01 UTC (rev 123346)
@@ -32,5 +32,4 @@
 bool getVideoSizeAndFormatFromCaps(GstCaps*, WebCore::IntSize&, GstVideoFormat&, int& pixelAspectRatioNumerator, int& pixelAspectRatioDenominator, int& stride);
 GstBuffer* createGstBuffer(GstBuffer*);
 void setGstElementClassMetadata(GstElementClass*, const char* name, const char* longName, const char* description, const char* author);
-bool gstObjectIsFloating(GstObject*);
 #endif // GStreamerVersioning_h

Modified: trunk/Tools/ChangeLog (123345 => 123346)


--- trunk/Tools/ChangeLog	2012-07-23 16:15:25 UTC (rev 123345)
+++ trunk/Tools/ChangeLog	2012-07-23 16:25:01 UTC (rev 123346)
@@ -1,3 +1,15 @@
+2012-07-23  Sheriff Bot  <[email protected]>
+
+        Unreviewed, rolling out r123339.
+        http://trac.webkit.org/changeset/123339
+        https://bugs.webkit.org/show_bug.cgi?id=92006
+
+        massive media tests failure (Requested by philn on #webkit).
+
+        * Scripts/webkitdirs.pm:
+        (buildAutotoolsProject):
+        * gtk/jhbuild.modules:
+
 2012-07-23  Tommy Widenflycht  <[email protected]>
 
         [chromium] MediaStream API: Clean up the MockWebKitPlatformSupport object at shutdown

Modified: trunk/Tools/Scripts/webkitdirs.pm (123345 => 123346)


--- trunk/Tools/Scripts/webkitdirs.pm	2012-07-23 16:15:25 UTC (rev 123345)
+++ trunk/Tools/Scripts/webkitdirs.pm	2012-07-23 16:25:01 UTC (rev 123346)
@@ -2090,11 +2090,6 @@
     # Enable unstable features when building through build-webkit.
     push @buildArgs, "--enable-unstable-features";
 
-    # Enable upcoming GStreamer 1.0 build support through build-webkit.
-    if ($project eq 'WebKit') {
-        push @buildArgs, "--with-gstreamer=1.0";
-    }
-
     # We might need to update jhbuild dependencies.
     my $needUpdate = 0;
     if (jhbuildConfigurationChanged()) {

Modified: trunk/Tools/gtk/jhbuild.modules (123345 => 123346)


--- trunk/Tools/gtk/jhbuild.modules	2012-07-23 16:15:25 UTC (rev 123345)
+++ trunk/Tools/gtk/jhbuild.modules	2012-07-23 16:25:01 UTC (rev 123346)
@@ -18,11 +18,6 @@
       <dep package="libsoup"/>
       <dep package="at-spi2-core"/>
       <dep package="at-spi2-atk"/>
-      <dep package="gstreamer"/>
-      <dep package="gst-plugins-base"/>
-      <dep package="gst-plugins-good"/>
-      <dep package="gst-plugins-bad"/>
-      <dep package="gst-ffmpeg"/>
     </dependencies>
   </metamodule>
 
@@ -42,12 +37,6 @@
       href=""
   <repository type="tarball" name="freedesktop.org"
       href=""
-  <repository type="git" name="gstreamer"
-      href=""
-  <repository type="git" name="entropywave"
-      href=""
-  <repository type="tarball" name="xiph"
-              href=""
 
   <autotools id="make" autogen-sh="configure">
     <branch repo="ftp.gnu.org"
@@ -221,67 +210,4 @@
     </dependencies>
   </autotools>
 
-  <autotools id="orc">
-    <branch repo="entropywave" module="orc.git" checkoutdir="orc" tag="orc-0.4.16" />
-  </autotools>
-
-  <autotools id="gstreamer">
-    <branch repo="gstreamer" module="gstreamer" checkoutdir="gstreamer" revision="80f94703f985d8f125196dec1baa08d46657923f"/>
-  </autotools>
-
-  <autotools id="libogg" autogen-sh="configure" >
-     <branch repo="xiph" module="ogg/libogg-1.3.0.tar.gz"
-             hash="sha256:a8de807631014615549d2356fd36641833b8288221cea214f8a72750efe93780"
-             md5sum="0a7eb40b86ac050db3a789ab65fe21c2"
-             version="1.3.0"/>
-  </autotools>
-  <autotools id="libvorbis" autogen-sh="configure" autogenargs="--disable-examples" >
-     <branch repo="xiph" module="vorbis/libvorbis-1.3.3.tar.gz"
-             hash="sha256:6d747efe7ac4ad249bf711527882cef79fb61d9194c45b5ca5498aa60f290762"
-             md5sum="6b1a36f0d72332fae5130688e65efe1f"
-             version="1.3.3"/>
-  </autotools>
-  <autotools id="libtheora" autogen-sh="configure" autogenargs="--disable-examples">
-     <branch repo="xiph" module="theora/libtheora-1.1.1.tar.gz"
-             hash="sha256:40952956c47811928d1e7922cda3bc1f427eb75680c3c37249c91e949054916b"
-             md5sum="bb4dc37f0dc97db98333e7160bfbb52b"
-             version="1.1.1"/>
-    <dependencies>
-      <dep package="libogg"/>
-      <dep package="libvorbis"/>
-    </dependencies>
-  </autotools>
-
-  <autotools id="gst-plugins-base" autogenargs="--disable-examples">
-    <dependencies>
-      <dep package="gstreamer"/>
-      <dep package="libogg"/>
-      <dep package="libvorbis"/>
-      <dep package="libtheora"/>
-      <dep package="orc"/>
-    </dependencies>
-    <branch repo="gstreamer" module="gst-plugins-base" checkoutdir="gst-plugins-base" revision="4b56b731d26eca35967075c34f375788f4a531b3"/>
-  </autotools>
-
-  <autotools id="gst-plugins-good" autogenargs="--disable-examples">
-    <dependencies>
-      <dep package="gst-plugins-base"/>
-    </dependencies>
-    <branch repo="gstreamer" module="gst-plugins-good" checkoutdir="gst-plugins-good" revision="cc6d533521841bc949136e969d96230ad7a30bd2"/>
-  </autotools>
-
-  <autotools id="gst-plugins-bad" autogenargs="--disable-examples">
-    <dependencies>
-      <dep package="gst-plugins-base"/>
-    </dependencies>
-    <branch repo="gstreamer" module="gst-plugins-bad" checkoutdir="gst-plugins-bad" revision="62e5afb95e3e11c4269664c2d782d4e4e7bc803e"/>
-  </autotools>
-
-  <autotools id="gst-ffmpeg" autogenargs="--with-libav-extra-configure='--disable-yasm'">
-    <dependencies>
-      <dep package="gst-plugins-base"/>
-    </dependencies>
-    <branch repo="gstreamer" module="gst-ffmpeg" checkoutdir="gst-ffmpeg" revision="c77db02d6e8a0e5a5190f01d1fe334e13d192766"/>
-  </autotools>
-
 </moduleset>
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to