Module: wine Branch: master Commit: 7875d8dd878b31b70d9bc537f5ce08b511287ffa URL: https://source.winehq.org/git/wine.git/?a=commit;h=7875d8dd878b31b70d9bc537f...
Author: Zebediah Figura z.figura12@gmail.com Date: Sat Jan 23 12:43:42 2021 -0600
winegstreamer: Avoid using Wine debug functions in no_more_pads().
Signed-off-by: Zebediah Figura z.figura12@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/winegstreamer/gstdemux.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dlls/winegstreamer/gstdemux.c b/dlls/winegstreamer/gstdemux.c index e85e54c2e34..56b8225c3df 100644 --- a/dlls/winegstreamer/gstdemux.c +++ b/dlls/winegstreamer/gstdemux.c @@ -1398,7 +1398,8 @@ static gboolean activate_mode(GstPad *pad, GstObject *parent, GstPadMode mode, g static void no_more_pads(GstElement *decodebin, gpointer user) { struct parser *filter = user; - TRACE("filter %p.\n", filter); + + GST_DEBUG("filter %p.", filter);
pthread_mutex_lock(&filter->mutex); filter->no_more_pads = true;