Zebediah Figura : winegstreamer: Avoid using Wine debug functions in removed_decoded_pad().

Alexandre Julliard julliard at winehq.org
Wed Jan 27 15:35:03 CST 2021


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

Author: Zebediah Figura <z.figura12 at gmail.com>
Date:   Tue Jan 26 17:45:29 2021 -0600

winegstreamer: Avoid using Wine debug functions in removed_decoded_pad().

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

---

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

diff --git a/dlls/winegstreamer/gstdemux.c b/dlls/winegstreamer/gstdemux.c
index 5181d0951d5..5c13d5e06f3 100644
--- a/dlls/winegstreamer/gstdemux.c
+++ b/dlls/winegstreamer/gstdemux.c
@@ -1136,7 +1136,7 @@ static void removed_decoded_pad(GstElement *bin, GstPad *pad, gpointer user)
     unsigned int i;
     char *name;
 
-    TRACE("filter %p, bin %p, pad %p.\n", filter, bin, pad);
+    GST_LOG("filter %p, bin %p, pad %p.", filter, bin, pad);
 
     for (i = 0; i < filter->source_count; ++i)
     {
@@ -1155,7 +1155,7 @@ static void removed_decoded_pad(GstElement *bin, GstPad *pad, gpointer user)
     }
 
     name = gst_pad_get_name(pad);
-    WARN("No pin matching pad %s found.\n", debugstr_a(name));
+    GST_LOG("No pin matching pad \"%s\" found.", name);
     g_free(name);
 }
 




More information about the wine-cvs mailing list