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
16898714
Commit
16898714
authored
Jan 25, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Jan 26, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winegstreamer: Avoid using Wine debug functions in event_sink().
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c681a073
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gstdemux.c
dlls/winegstreamer/gstdemux.c
+3
-3
No files found.
dlls/winegstreamer/gstdemux.c
View file @
16898714
...
...
@@ -705,7 +705,7 @@ static gboolean event_sink(GstPad *pad, GstObject *parent, GstEvent *event)
struct
parser_source
*
pin
=
gst_pad_get_element_private
(
pad
);
struct
parser
*
filter
=
impl_from_strmbase_filter
(
pin
->
pin
.
pin
.
filter
);
TRACE
(
"pin %p, type
\"
%s
\"
.
\n
"
,
pin
,
GST_EVENT_TYPE_NAME
(
event
));
GST_LOG
(
"pin %p, type
\"
%s
\"
.
"
,
pin
,
GST_EVENT_TYPE_NAME
(
event
));
switch
(
event
->
type
)
{
...
...
@@ -719,7 +719,7 @@ static gboolean event_sink(GstPad *pad, GstObject *parent, GstEvent *event)
if
(
segment
->
format
!=
GST_FORMAT_TIME
)
{
FIXME
(
"Unhandled format
\"
%s
\"
.
\n
"
,
gst_format_get_name
(
segment
->
format
));
GST_FIXME
(
"Unhandled format
\"
%s
\"
.
"
,
gst_format_get_name
(
segment
->
format
));
break
;
}
...
...
@@ -798,7 +798,7 @@ static gboolean event_sink(GstPad *pad, GstObject *parent, GstEvent *event)
}
default:
WARN
(
"Ignoring
\"
%s
\"
event.
\n
"
,
GST_EVENT_TYPE_NAME
(
event
));
GST_WARNING
(
"Ignoring
\"
%s
\"
event.
"
,
GST_EVENT_TYPE_NAME
(
event
));
}
gst_event_unref
(
event
);
return
TRUE
;
...
...
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