Title: [269286] trunk/Source/WebCore
Revision
269286
Author
[email protected]
Date
2020-11-02 22:56:54 -0800 (Mon, 02 Nov 2020)

Log Message

[GStreamer] Fix GStreamerCommon.cpp debug category
https://bugs.webkit.org/show_bug.cgi?id=218392

Reviewed by Adrian Perez de Castro.

GStreamerCommon.cpp lacked a default debug category so debug from
that file was not appearing under the WebKit category but empty.

* platform/graphics/gstreamer/GStreamerCommon.cpp:
(WebCore::initializeGStreamer):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (269285 => 269286)


--- trunk/Source/WebCore/ChangeLog	2020-11-03 04:20:38 UTC (rev 269285)
+++ trunk/Source/WebCore/ChangeLog	2020-11-03 06:56:54 UTC (rev 269286)
@@ -1,3 +1,16 @@
+2020-11-02  Xabier Rodriguez Calvar  <[email protected]>
+
+        [GStreamer] Fix GStreamerCommon.cpp debug category
+        https://bugs.webkit.org/show_bug.cgi?id=218392
+
+        Reviewed by Adrian Perez de Castro.
+
+        GStreamerCommon.cpp lacked a default debug category so debug from
+        that file was not appearing under the WebKit category but empty.
+
+        * platform/graphics/gstreamer/GStreamerCommon.cpp:
+        (WebCore::initializeGStreamer):
+
 2020-11-02  Chris Dumez  <[email protected]>
 
         Crash under WebGLRenderingContextBase::scheduleTaskToDispatchContextLostEvent()

Modified: trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerCommon.cpp (269285 => 269286)


--- trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerCommon.cpp	2020-11-03 04:20:38 UTC (rev 269285)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerCommon.cpp	2020-11-03 06:56:54 UTC (rev 269286)
@@ -65,6 +65,9 @@
 #include "WebKitWebSourceGStreamer.h"
 #endif
 
+GST_DEBUG_CATEGORY_EXTERN(webkit_media_player_debug);
+#define GST_CAT_DEFAULT webkit_media_player_debug
+
 namespace WebCore {
 
 GstPad* webkitGstGhostPadFromStaticTemplate(GstStaticPadTemplate* staticPadTemplate, const gchar* name, GstPad* target)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to