Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
29cea50d
Commit
29cea50d
authored
Feb 09, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Feb 10, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winegstreamer: Avoid using Wine debug functions in query_sink().
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d028217a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
gstdemux.c
dlls/winegstreamer/gstdemux.c
+2
-2
No files found.
dlls/winegstreamer/gstdemux.c
View file @
29cea50d
...
...
@@ -920,7 +920,7 @@ static gboolean query_sink(GstPad *pad, GstObject *parent, GstQuery *query)
struct
parser_source
*
pin
=
gst_pad_get_element_private
(
pad
);
struct
wg_parser_stream
*
stream
=
pin
->
wg_stream
;
TRACE
(
"pin %p, type
\"
%s
\"
.
\n
"
,
pin
,
gst_query_type_get_name
(
query
->
type
));
GST_LOG
(
"pin %p, type
\"
%s
\"
.
"
,
pin
,
gst_query_type_get_name
(
query
->
type
));
switch
(
query
->
type
)
{
...
...
@@ -966,7 +966,7 @@ static gboolean query_sink(GstPad *pad, GstObject *parent, GstQuery *query)
if
(
!
ret
&&
WARN_ON
(
gstreamer
))
{
gchar
*
str
=
gst_caps_to_string
(
caps
);
WARN
(
"Rejecting caps
\"
%s
\"
.
\n
"
,
debugstr_a
(
str
)
);
GST_WARNING
(
"Rejecting caps
\"
%s
\"
."
,
str
);
g_free
(
str
);
}
gst_query_set_accept_caps_result
(
query
,
ret
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment