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
6dae92cf
Commit
6dae92cf
authored
Jan 30, 2024
by
Rémi Bernon
Committed by
Alexandre Julliard
Feb 05, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winegstreamer: Trace wg_transform input and output caps.
parent
e891073c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
wg_transform.c
dlls/winegstreamer/wg_transform.c
+8
-0
No files found.
dlls/winegstreamer/wg_transform.c
View file @
6dae92cf
...
...
@@ -324,6 +324,8 @@ NTSTATUS wg_transform_create(void *args)
if
(
!
transform
->
my_src
)
goto
out
;
GST_INFO
(
"transform %p input caps %"
GST_PTR_FORMAT
,
transform
,
src_caps
);
gst_pad_set_element_private
(
transform
->
my_src
,
transform
);
gst_pad_set_query_function
(
transform
->
my_src
,
transform_src_query_cb
);
...
...
@@ -336,6 +338,8 @@ NTSTATUS wg_transform_create(void *args)
if
(
!
transform
->
my_sink
)
goto
out
;
GST_INFO
(
"transform %p output caps %"
GST_PTR_FORMAT
,
transform
,
transform
->
output_caps
);
gst_pad_set_element_private
(
transform
->
my_sink
,
transform
);
gst_pad_set_event_function
(
transform
->
my_sink
,
transform_sink_event_cb
);
gst_pad_set_query_function
(
transform
->
my_sink
,
transform_sink_query_cb
);
...
...
@@ -505,6 +509,8 @@ NTSTATUS wg_transform_set_output_format(void *args)
}
transform
->
output_format
=
*
format
;
GST_INFO
(
"transform %p output caps %"
GST_PTR_FORMAT
,
transform
,
caps
);
if
(
gst_caps_is_always_compatible
(
transform
->
output_caps
,
caps
))
{
gst_caps_unref
(
caps
);
...
...
@@ -795,6 +801,8 @@ NTSTATUS wg_transform_read_data(void *args)
{
GST_MINI_OBJECT_FLAG_UNSET
(
transform
->
output_sample
,
GST_SAMPLE_FLAG_WG_CAPS_CHANGED
);
GST_INFO
(
"transform %p output caps %"
GST_PTR_FORMAT
,
transform
,
output_caps
);
if
(
format
)
{
gsize
plane_align
=
transform
->
attrs
.
output_plane_align
;
...
...
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