Commit 130b97a2 authored by Brendan McGrath's avatar Brendan McGrath Committed by Alexandre Julliard

winegstreamer: Log query after setting the URI.

parent 87eaf899
...@@ -1247,8 +1247,8 @@ static gboolean src_query_cb(GstPad *pad, GstObject *parent, GstQuery *query) ...@@ -1247,8 +1247,8 @@ static gboolean src_query_cb(GstPad *pad, GstObject *parent, GstQuery *query)
case GST_QUERY_URI: case GST_QUERY_URI:
if (parser->uri) if (parser->uri)
{ {
GST_LOG_OBJECT(pad, "Responding with %" GST_PTR_FORMAT, query);
gst_query_set_uri(query, parser->uri); gst_query_set_uri(query, parser->uri);
GST_LOG_OBJECT(pad, "Responding with %" GST_PTR_FORMAT, query);
return TRUE; return TRUE;
} }
return FALSE; return FALSE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment