summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2003-04-16 07:23:02 +0000
committerDavid Schleef <ds@schleef.org>2003-04-16 07:23:02 +0000
commitb8ef2ab70801d24932b50b22cfa78d9f1d417c94 (patch)
tree8ac2e442f67b80a89b6f8c56ccfbb81e08c819cd
parentd39ef5dabec9acbbaaaa0d48b14258f700d91cdf (diff)
downloadgst-plugins-bad-b8ef2ab70801d24932b50b22cfa78d9f1d417c94.tar.gz
gst-plugins-bad-b8ef2ab70801d24932b50b22cfa78d9f1d417c94.tar.bz2
gst-plugins-bad-b8ef2ab70801d24932b50b22cfa78d9f1d417c94.zip
Fix compilation errors
Original commit message from CVS: Fix compilation errors
-rw-r--r--examples/dynparams/filter.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/dynparams/filter.c b/examples/dynparams/filter.c
index 55b92de9..98623480 100644
--- a/examples/dynparams/filter.c
+++ b/examples/dynparams/filter.c
@@ -318,7 +318,7 @@ cb_parse_clicked (GtkButton *button, gpointer *user_data)
ui_feedback_add (fd->ui, "Error : try setting an input pipe.\n");
return;
}
- if (fd->input) gst_bin_destroy (GST_BIN (fd->input));
+ if (fd->input) gst_object_unref (GST_OBJECT (fd->input));
fd->input = GST_ELEMENT (gst_parse_launch (fd->input_pipe, &error));
if (error)
{
@@ -333,7 +333,7 @@ cb_parse_clicked (GtkButton *button, gpointer *user_data)
ui_feedback_add (fd->ui, "Error : try setting an output pipe.\n");
return;
}
- if (fd->output) gst_bin_destroy (GST_BIN (fd->output));
+ if (fd->output) gst_object_unref (GST_OBJECT (fd->output));
fd->output = GST_ELEMENT (gst_parse_launch (fd->output_pipe, &error));
if (error)
{
@@ -344,7 +344,7 @@ cb_parse_clicked (GtkButton *button, gpointer *user_data)
}
/* try to create filter */
- if (fd->filter) gst_element_destroy (GST_BIN (fd->filter));
+ if (fd->filter) gst_object_unref (GST_OBJECT (fd->filter));
fd->filter = gst_element_factory_make (fd->filter_element, "filter");
if (fd->filter == NULL)
{