summaryrefslogtreecommitdiffstats
path: root/gst-libs/gst/play
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2004-07-28 16:22:53 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2004-07-28 16:22:53 +0000
commit5313fb986a5d32a4c31603af68766bf04f3f88d3 (patch)
tree17ae1f7b856676193c33fde78406553a5448cd6a /gst-libs/gst/play
parentfe6c0dd55f3206da297796217973997031fed678 (diff)
downloadgst-plugins-bad-5313fb986a5d32a4c31603af68766bf04f3f88d3.tar.gz
gst-plugins-bad-5313fb986a5d32a4c31603af68766bf04f3f88d3.tar.bz2
gst-plugins-bad-5313fb986a5d32a4c31603af68766bf04f3f88d3.zip
no need to link in setup stage
Original commit message from CVS: no need to link in setup stage
Diffstat (limited to 'gst-libs/gst/play')
-rw-r--r--gst-libs/gst/play/play.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst-libs/gst/play/play.c b/gst-libs/gst/play/play.c
index 5b3d03ed..bb41bd24 100644
--- a/gst-libs/gst/play/play.c
+++ b/gst-libs/gst/play/play.c
@@ -235,7 +235,7 @@ gst_play_pipeline_setup (GstPlay * play, GError ** error)
}
g_hash_table_insert (play->priv->elements, "identity_cs", identity_cs);
gst_bin_add_many (GST_BIN (output_bin), identity, identity_cs, NULL);
- if (!gst_element_link_many (autoplugger, identity, identity_cs, NULL))
+ if (!gst_element_link (identity, identity_cs))
GST_PLAY_ERROR_RETURN (error, "Could not link work thread elements");
/* we ref the output bin so we can put it in and out the work_thread
* whenever we want */