Title: [151681] trunk/Source/WebCore
Revision
151681
Author
[email protected]
Date
2013-06-18 05:24:02 -0700 (Tue, 18 Jun 2013)

Log Message

Fix after r151673
https://bugs.webkit.org/show_bug.cgi?id=116042

Patch by Víctor Manuel Jáquez Leal <[email protected]> on 2013-06-18
Reviewed by Philippe Normand.

Removed a spurious semicolon in the video sink caps definition.

No new tests, no behavior change.

* platform/graphics/gstreamer/VideoSinkGStreamer.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (151680 => 151681)


--- trunk/Source/WebCore/ChangeLog	2013-06-18 11:23:37 UTC (rev 151680)
+++ trunk/Source/WebCore/ChangeLog	2013-06-18 12:24:02 UTC (rev 151681)
@@ -1,3 +1,16 @@
+2013-06-18  Víctor Manuel Jáquez Leal  <[email protected]>
+
+        Fix after r151673
+        https://bugs.webkit.org/show_bug.cgi?id=116042
+
+        Reviewed by Philippe Normand.
+
+        Removed a spurious semicolon in the video sink caps definition.
+
+        No new tests, no behavior change.
+
+        * platform/graphics/gstreamer/VideoSinkGStreamer.cpp:
+
 2013-06-18  Praveen R Jadhav  <[email protected]>
 
         [WebSpeech] Speech Recognition requires convertValue support in JSDictionary

Modified: trunk/Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp (151680 => 151681)


--- trunk/Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp	2013-06-18 11:23:37 UTC (rev 151680)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp	2013-06-18 12:24:02 UTC (rev 151681)
@@ -48,14 +48,14 @@
 #define GST_CAPS_FORMAT "{ xRGB, ARGB }"
 #endif
 #if GST_CHECK_VERSION(1, 1, 0)
-#define GST_FEATURED_CAPS GST_VIDEO_CAPS_MAKE_WITH_FEATURES(GST_CAPS_FEATURE_META_GST_VIDEO_GL_TEXTURE_UPLOAD_META, GST_CAPS_FORMAT)
+#define GST_FEATURED_CAPS GST_VIDEO_CAPS_MAKE_WITH_FEATURES(GST_CAPS_FEATURE_META_GST_VIDEO_GL_TEXTURE_UPLOAD_META, GST_CAPS_FORMAT) ";"
 #else
 #define GST_FEATURED_CAPS
 #endif
 #endif // GST_API_VERSION_1
 
 #ifdef GST_API_VERSION_1
-#define WEBKIT_VIDEO_SINK_PAD_CAPS GST_FEATURED_CAPS ";" GST_VIDEO_CAPS_MAKE(GST_CAPS_FORMAT)
+#define WEBKIT_VIDEO_SINK_PAD_CAPS GST_FEATURED_CAPS GST_VIDEO_CAPS_MAKE(GST_CAPS_FORMAT)
 #else
 #if G_BYTE_ORDER == G_LITTLE_ENDIAN
 #define WEBKIT_VIDEO_SINK_PAD_CAPS GST_VIDEO_CAPS_BGRx ";" GST_VIDEO_CAPS_BGRA
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to