Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
fd6315eb
Commit
fd6315eb
authored
Oct 06, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Oct 06, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winegstreamer: Trace the unfiltered caps in sink_query_cb().
Signed-off-by:
Zebediah Figura
<
zfigura@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3efb72de
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
wg_parser.c
dlls/winegstreamer/wg_parser.c
+5
-0
No files found.
dlls/winegstreamer/wg_parser.c
View file @
fd6315eb
...
...
@@ -1006,6 +1006,7 @@ static gboolean sink_query_cb(GstPad *pad, GstObject *parent, GstQuery *query)
case
GST_QUERY_CAPS
:
{
GstCaps
*
caps
,
*
filter
,
*
temp
;
gchar
*
str
;
gst_query_parse_caps
(
query
,
&
filter
);
...
...
@@ -1016,6 +1017,10 @@ static gboolean sink_query_cb(GstPad *pad, GstObject *parent, GstQuery *query)
if
(
!
caps
)
return
FALSE
;
str
=
gst_caps_to_string
(
caps
);
GST_LOG
(
"Stream caps are
\"
%s
\"
."
,
str
);
g_free
(
str
);
if
(
filter
)
{
temp
=
gst_caps_intersect
(
caps
,
filter
);
...
...
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