Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
GStreamer
gst-editing-services
Commits
10f1b355
Commit
10f1b355
authored
Jul 31, 2020
by
Thibault Saunier
🌵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ges:source: Handle missing elements in converters
Part-of: <
!204
>
parent
6acee384
Pipeline
#190300
waiting for manual action with stages
in 41 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
ges/ges-source.c
ges/ges-source.c
+6
-1
No files found.
ges/ges-source.c
View file @
10f1b355
...
...
@@ -153,7 +153,12 @@ ges_source_create_topbin (GESSource * source, const gchar * bin_name,
priv
->
topbin
=
gst_object_ref
(
bin
);
last
=
link_elements
(
bin
,
elements
);
if
(
last
)
{
priv
->
first_converter
=
gst_object_ref
(
elements
->
pdata
[
0
]);
gint
i
=
0
;
while
(
!
elements
->
pdata
[
i
])
i
++
;
priv
->
first_converter
=
gst_object_ref
(
elements
->
pdata
[
i
]);
priv
->
last_converter
=
gst_object_ref
(
last
);
}
...
...
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