mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
Fix the compile error
Original commit message from CVS: Fix the compile error
This commit is contained in:
parent
db9249cf46
commit
a87c48901f
1 changed files with 4 additions and 4 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue