diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2002-06-03 22:18:57 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2002-06-03 22:18:57 +0000 |
commit | e47f76f8d067fd67f5f76bac9807dba0e742f698 (patch) | |
tree | b7779bf6824be5a3e4a48a4cbafbe0b94227ee67 | |
parent | 6345db2cfa7d83d08a99d6226cbeeeec15dff477 (diff) | |
download | gst-plugins-bad-e47f76f8d067fd67f5f76bac9807dba0e742f698.tar.gz gst-plugins-bad-e47f76f8d067fd67f5f76bac9807dba0e742f698.tar.bz2 gst-plugins-bad-e47f76f8d067fd67f5f76bac9807dba0e742f698.zip |
Fix the compile error
Original commit message from CVS:
Fix the compile error
-rw-r--r-- | examples/seeking/seek.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/seeking/seek.c b/examples/seeking/seek.c index 4795693b..0a72cdc7 100644 --- a/examples/seeking/seek.c +++ b/examples/seeking/seek.c @@ -93,10 +93,10 @@ make_mp3_pipeline (const gchar *location) pipeline = gst_pipeline_new ("app"); - src = gst_element_factory_make_or_warn ("filesrc", "src"); - decoder = gst_element_factory_make_or_warn ("mad", "dec"); - osssink = gst_element_factory_make_or_warn ("osssink", "sink"); - queue = gst_element_factory_make_or_warn ("queue", "queue"); + src = gst_element_factory_make ("filesrc", "src"); + decoder = gst_element_factory_make ("mad", "dec"); + osssink = gst_element_factory_make ("osssink", "sink"); + queue = gst_element_factory_make ("queue", "queue"); thread = gst_thread_new ("playback"); g_object_set (G_OBJECT (src), "location", location, NULL); |