[PATCH 5/6] winegstreamer: Avoid using Wine debug functions in got_data_sink().

Zebediah Figura z.figura12 at gmail.com
Sat Jan 23 12:43:46 CST 2021


Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
---
 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 ea1268ef0dd..f51137344f9 100644
--- a/dlls/winegstreamer/gstdemux.c
+++ b/dlls/winegstreamer/gstdemux.c
@@ -690,13 +690,13 @@ static GstFlowReturn queue_stream_event(struct parser_source *pin, const struct
     if (pin->flushing)
     {
         pthread_mutex_unlock(&filter->mutex);
-        TRACE("Filter is flushing; discarding event.\n");
+        GST_DEBUG("Filter is flushing; discarding event.");
         return GST_FLOW_FLUSHING;
     }
     pin->event = *event;
     pthread_mutex_unlock(&filter->mutex);
     pthread_cond_signal(&pin->event_cond);
-    TRACE("Event queued.\n");
+    GST_LOG("Event queued.");
     return GST_FLOW_OK;
 }
 
@@ -880,7 +880,7 @@ static GstFlowReturn got_data_sink(GstPad *pad, GstObject *parent, GstBuffer *bu
     struct parser_event stream_event;
     GstFlowReturn ret;
 
-    TRACE("pad %p, pin %p, buffer %p.\n", pad, pin, buffer);
+    GST_LOG("pin %p, buffer %p.", pin, buffer);
 
     if (!pin->pin.pin.peer)
     {
-- 
2.30.0




More information about the wine-devel mailing list