2001-01-01 00:42:10 +00:00
|
|
|
#include <stdlib.h>
|
2000-09-22 23:35:14 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
gboolean playing;
|
|
|
|
|
|
|
|
/* eos will be called when the src element has an end of stream */
|
2004-03-13 15:27:01 +00:00
|
|
|
void
|
|
|
|
eos (GstElement * element, gpointer data)
|
2000-09-22 23:35:14 +00:00
|
|
|
{
|
2004-03-13 15:27:01 +00:00
|
|
|
g_print ("have eos, quitting\n");
|
2000-09-22 23:35:14 +00:00
|
|
|
|
|
|
|
playing = FALSE;
|
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
int
|
|
|
|
main (int argc, char *argv[])
|
2000-09-22 23:35:14 +00:00
|
|
|
{
|
examples/: Update a couple of the examples to work again.
Original commit message from CVS:
* examples/Makefile.am:
* examples/helloworld/helloworld.c: (event_loop), (main):
* examples/queue/queue.c: (event_loop), (main):
* examples/queue2/queue2.c: (main):
Update a couple of the examples to work again.
* gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
(gst_base_sink_preroll_queue_flush), (gst_base_sink_handle_event):
Spelling corrections and extra debug.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init), (is_eos),
(gst_bin_add_func), (bin_element_is_sink), (gst_bin_get_state),
(gst_bin_change_state), (gst_bin_dispose), (bin_bus_handler):
* gst/gstbin.h:
* gst/gstpipeline.c: (gst_pipeline_init), (gst_pipeline_dispose),
(gst_pipeline_change_state):
* gst/gstpipeline.h:
Move the bus handler for children to the GstBin, and create a
separate bus for receiving messages from children to the one the
bus sends 'upwards' on.
2005-07-06 16:22:47 +00:00
|
|
|
GstElement *filesrc, *audiosink, *queue;
|
2000-09-22 23:35:14 +00:00
|
|
|
GstElement *pipeline;
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_init (&argc, &argv);
|
2001-01-03 22:58:58 +00:00
|
|
|
|
2000-09-22 23:35:14 +00:00
|
|
|
if (argc != 2) {
|
2004-03-13 15:27:01 +00:00
|
|
|
g_print ("usage: %s <filename>\n", argv[0]);
|
|
|
|
exit (-1);
|
2000-09-22 23:35:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* create a new bin to hold the elements */
|
2004-03-13 15:27:01 +00:00
|
|
|
pipeline = gst_pipeline_new ("pipeline");
|
|
|
|
g_assert (pipeline != NULL);
|
2000-09-22 23:35:14 +00:00
|
|
|
|
|
|
|
/* create a disk reader */
|
2004-03-13 15:27:01 +00:00
|
|
|
filesrc = gst_element_factory_make ("filesrc", "disk_source");
|
|
|
|
g_assert (filesrc != NULL);
|
|
|
|
g_object_set (G_OBJECT (filesrc), "location", argv[1], NULL);
|
|
|
|
g_signal_connect (G_OBJECT (filesrc), "eos", G_CALLBACK (eos), thread);
|
2000-09-22 23:35:14 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
queue = gst_element_factory_make ("queue", "queue");
|
2000-09-22 23:35:14 +00:00
|
|
|
|
|
|
|
/* and an audio sink */
|
examples/: Update a couple of the examples to work again.
Original commit message from CVS:
* examples/Makefile.am:
* examples/helloworld/helloworld.c: (event_loop), (main):
* examples/queue/queue.c: (event_loop), (main):
* examples/queue2/queue2.c: (main):
Update a couple of the examples to work again.
* gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
(gst_base_sink_preroll_queue_flush), (gst_base_sink_handle_event):
Spelling corrections and extra debug.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init), (is_eos),
(gst_bin_add_func), (bin_element_is_sink), (gst_bin_get_state),
(gst_bin_change_state), (gst_bin_dispose), (bin_bus_handler):
* gst/gstbin.h:
* gst/gstpipeline.c: (gst_pipeline_init), (gst_pipeline_dispose),
(gst_pipeline_change_state):
* gst/gstpipeline.h:
Move the bus handler for children to the GstBin, and create a
separate bus for receiving messages from children to the one the
bus sends 'upwards' on.
2005-07-06 16:22:47 +00:00
|
|
|
audiosink = gst_element_factory_make ("alsasink", "play_audio");
|
|
|
|
g_assert (audiosink != NULL);
|
2000-09-22 23:35:14 +00:00
|
|
|
|
|
|
|
/* add objects to the main pipeline */
|
2001-03-07 21:52:56 +00:00
|
|
|
/*
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_pipeline_add_src(GST_PIPELINE(pipeline), filesrc);
|
|
|
|
gst_pipeline_add_sink(GST_PIPELINE(pipeline), queue);
|
2000-09-22 23:35:14 +00:00
|
|
|
|
examples/: Update a couple of the examples to work again.
Original commit message from CVS:
* examples/Makefile.am:
* examples/helloworld/helloworld.c: (event_loop), (main):
* examples/queue/queue.c: (event_loop), (main):
* examples/queue2/queue2.c: (main):
Update a couple of the examples to work again.
* gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
(gst_base_sink_preroll_queue_flush), (gst_base_sink_handle_event):
Spelling corrections and extra debug.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init), (is_eos),
(gst_bin_add_func), (bin_element_is_sink), (gst_bin_get_state),
(gst_bin_change_state), (gst_bin_dispose), (bin_bus_handler):
* gst/gstbin.h:
* gst/gstpipeline.c: (gst_pipeline_init), (gst_pipeline_dispose),
(gst_pipeline_change_state):
* gst/gstpipeline.h:
Move the bus handler for children to the GstBin, and create a
separate bus for receiving messages from children to the one the
bus sends 'upwards' on.
2005-07-06 16:22:47 +00:00
|
|
|
gst_bin_add(GST_BIN (pipeline), audiosink);
|
2001-03-07 21:52:56 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_pad_link(gst_element_get_pad(queue,"src"),
|
examples/: Update a couple of the examples to work again.
Original commit message from CVS:
* examples/Makefile.am:
* examples/helloworld/helloworld.c: (event_loop), (main):
* examples/queue/queue.c: (event_loop), (main):
* examples/queue2/queue2.c: (main):
Update a couple of the examples to work again.
* gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
(gst_base_sink_preroll_queue_flush), (gst_base_sink_handle_event):
Spelling corrections and extra debug.
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init), (is_eos),
(gst_bin_add_func), (bin_element_is_sink), (gst_bin_get_state),
(gst_bin_change_state), (gst_bin_dispose), (bin_bus_handler):
* gst/gstbin.h:
* gst/gstpipeline.c: (gst_pipeline_init), (gst_pipeline_dispose),
(gst_pipeline_change_state):
* gst/gstpipeline.h:
Move the bus handler for children to the GstBin, and create a
separate bus for receiving messages from children to the one the
bus sends 'upwards' on.
2005-07-06 16:22:47 +00:00
|
|
|
gst_element_get_pad(audiosink,"sink"));
|
2000-09-22 23:35:14 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
if (!gst_pipeline_autoplug(GST_PIPELINE(pipeline))) {
|
|
|
|
g_print("cannot autoplug pipeline\n");
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
*/
|
2000-09-22 23:35:14 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_bin_add (GST_BIN (pipeline), thread);
|
2000-09-22 23:35:14 +00:00
|
|
|
|
|
|
|
/* make it ready */
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_READY);
|
2000-09-22 23:35:14 +00:00
|
|
|
/* start playing */
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_PLAYING);
|
2000-09-22 23:35:14 +00:00
|
|
|
|
|
|
|
playing = TRUE;
|
|
|
|
|
|
|
|
while (playing) {
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_bin_iterate (GST_BIN (pipeline));
|
2000-09-22 23:35:14 +00:00
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_NULL);
|
2000-09-22 23:35:14 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
exit (0);
|
2000-09-22 23:35:14 +00:00
|
|
|
}
|