Zebediah Figura : winegstreamer: Avoid using Wine debugging functions in event_src().

Alexandre Julliard julliard at winehq.org
Tue Jan 26 15:54:06 CST 2021


Module: wine
Branch: master
Commit: 3ed270206a918a4fc15fc80c0d4807e0d635d112
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=3ed270206a918a4fc15fc80c0d4807e0d635d112

Author: Zebediah Figura <z.figura12 at gmail.com>
Date:   Mon Jan 25 23:29:04 2021 -0600

winegstreamer: Avoid using Wine debugging functions in event_src().

Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/winegstreamer/gstdemux.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/winegstreamer/gstdemux.c b/dlls/winegstreamer/gstdemux.c
index 68459a5133c..3efec0f5295 100644
--- a/dlls/winegstreamer/gstdemux.c
+++ b/dlls/winegstreamer/gstdemux.c
@@ -622,7 +622,7 @@ static gboolean gst_base_src_perform_seek(struct parser *This, GstEvent *event)
 
     if (seek_format != GST_FORMAT_BYTES)
     {
-        FIXME("Unhandled format \"%s\".\n", gst_format_get_name(seek_format));
+        GST_FIXME("Unhandled format \"%s\".", gst_format_get_name(seek_format));
         return FALSE;
     }
 
@@ -657,7 +657,7 @@ static gboolean event_src(GstPad *pad, GstObject *parent, GstEvent *event)
     struct parser *This = gst_pad_get_element_private(pad);
     gboolean ret = TRUE;
 
-    TRACE("filter %p, type \"%s\".\n", This, GST_EVENT_TYPE_NAME(event));
+    GST_LOG("filter %p, type \"%s\".", This, GST_EVENT_TYPE_NAME(event));
 
     switch (event->type)
     {
@@ -672,7 +672,7 @@ static gboolean event_src(GstPad *pad, GstObject *parent, GstEvent *event)
             break;
 
         default:
-            WARN("Ignoring \"%s\" event.\n", GST_EVENT_TYPE_NAME(event));
+            GST_WARNING("Ignoring \"%s\" event.", GST_EVENT_TYPE_NAME(event));
             ret = FALSE;
             break;
     }




More information about the wine-cvs mailing list