mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 16:51:10 +00:00
pipeline: Dot not check for chain->tee twice
This commit is contained in:
parent
c7cceae128
commit
068c20ff60
1 changed files with 7 additions and 7 deletions
|
@ -684,8 +684,11 @@ _link_track (GESPipeline * self, GESTrack * track)
|
||||||
if (!(chain = get_output_chain_for_track (self, track)))
|
if (!(chain = get_output_chain_for_track (self, track)))
|
||||||
chain = new_output_chain_for_track (self, track);
|
chain = new_output_chain_for_track (self, track);
|
||||||
|
|
||||||
if (chain->tee)
|
if (chain->tee) {
|
||||||
|
GST_INFO_OBJECT (self, "Chain is already built");
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
chain->query_position_id =
|
chain->query_position_id =
|
||||||
g_signal_connect (ges_track_get_composition (track), "query-position",
|
g_signal_connect (ges_track_get_composition (track), "query-position",
|
||||||
|
@ -695,12 +698,9 @@ _link_track (GESPipeline * self, GESTrack * track)
|
||||||
gst_object_unref (pad);
|
gst_object_unref (pad);
|
||||||
|
|
||||||
/* Adding tee */
|
/* Adding tee */
|
||||||
|
|
||||||
if (!chain->tee) {
|
|
||||||
chain->tee = gst_element_factory_make ("tee", NULL);
|
chain->tee = gst_element_factory_make ("tee", NULL);
|
||||||
gst_bin_add (GST_BIN_CAST (self), chain->tee);
|
gst_bin_add (GST_BIN_CAST (self), chain->tee);
|
||||||
gst_element_sync_state_with_parent (chain->tee);
|
gst_element_sync_state_with_parent (chain->tee);
|
||||||
}
|
|
||||||
|
|
||||||
/* Linking pad to tee */
|
/* Linking pad to tee */
|
||||||
sinkpad = gst_element_get_static_pad (chain->tee, "sink");
|
sinkpad = gst_element_get_static_pad (chain->tee, "sink");
|
||||||
|
|
Loading…
Reference in a new issue