Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
GStreamer
gst-editing-services
Commits
b8c89730
Commit
b8c89730
authored
Jul 14, 2019
by
Thibault Saunier
🌵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
asset: Handle trying to proxy an asset to itself
And avoid infinite recursion
parent
902b8ad9
Pipeline
#48857
passed with stages
in 126 minutes and 33 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
ges/ges-asset.c
ges/ges-asset.c
+3
-1
No files found.
ges/ges-asset.c
View file @
b8c89730
...
...
@@ -769,7 +769,9 @@ ges_asset_set_proxy (GESAsset * asset, GESAsset * proxy)
GST_INFO_OBJECT
(
asset
,
"%s Making sure the proxy chain is fully set."
,
ges_asset_get_id
(
entry
->
asset
));
ges_asset_set_proxy
(
NULL
,
asset
);
if
(
g_strcmp0
(
asset
->
priv
->
proxied_asset_id
,
proxy
->
priv
->
id
)
||
g_strcmp0
(
asset
->
priv
->
id
,
proxy
->
priv
->
proxied_asset_id
))
ges_asset_set_proxy
(
NULL
,
asset
);
}
if
(
proxy
->
priv
->
proxy_target
)
{
...
...
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