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>
This commit is contained in:
Zebediah Figura 2021-01-23 12:43:42 -06:00 committed by Alexandre Julliard
parent 852c9c69de
commit 7875d8dd87
1 changed files with 2 additions and 1 deletions

View File

@ -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;