From 0e9c31a973e6978d7bb6c45e4afd4a2aa33802e5 Mon Sep 17 00:00:00 2001 From: mark Date: Mon, 23 Oct 2006 20:45:53 +0000 Subject: [PATCH] Get rid of unnecessary reffing of the pipeline container. refer to #1822 --- .../src/modules/playlistExecutor/src/GstreamerPlayer.cxx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/livesupport/src/modules/playlistExecutor/src/GstreamerPlayer.cxx b/livesupport/src/modules/playlistExecutor/src/GstreamerPlayer.cxx index 82e13c735..a44940199 100644 --- a/livesupport/src/modules/playlistExecutor/src/GstreamerPlayer.cxx +++ b/livesupport/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 - pipeline = gst_thread_new("audio-player"); - // take ownership of the pipeline object - gst_object_ref(GST_OBJECT(pipeline)); - gst_object_sink(GST_OBJECT(pipeline)); + // create the pipeline container + pipeline = gst_thread_new("audio-player"); g_signal_connect(pipeline, "error", G_CALLBACK(errorHandler), this);