From 3a02f0693a5c1cc71f3f37bd700452301ab7bdb0 Mon Sep 17 00:00:00 2001 From: mark Date: Tue, 24 Oct 2006 08:07:40 +0000 Subject: [PATCH] Get rid of unnecessary reffing of the pipeline container. refer to #1822 --- .../src/modules/playlistExecutor/src/GstreamerPlayer.cxx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.cxx b/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.cxx index 6406b07f0..a698604dc 100644 --- a/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.cxx +++ b/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.cxx @@ -100,11 +100,8 @@ GstreamerPlayer :: initialize(void) throw (std::exception) throw std::runtime_error("couldn't initialize the gstreamer library"); } - // initialize the pipeline + // create the pipeline container (threaded) pipeline = gst_thread_new("audio-player"); - // take ownership of the pipeline object - gst_object_ref(GST_OBJECT(pipeline)); - gst_object_sink(GST_OBJECT(pipeline)); g_signal_connect(pipeline, "error", G_CALLBACK(errorHandler), this);