2003-02-10 20:32:32 +00:00
|
|
|
#include <stdlib.h>
|
2000-09-09 16:39:03 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
static GMainLoop *loop;
|
|
|
|
|
2000-09-09 16:39:03 +00:00
|
|
|
/* 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-09 16:39:03 +00:00
|
|
|
{
|
2004-03-13 15:27:01 +00:00
|
|
|
GstThread *thread = GST_THREAD (data);
|
|
|
|
|
|
|
|
g_print ("have eos, quitting\n");
|
2000-09-09 16:39:03 +00:00
|
|
|
|
|
|
|
/* stop the bin */
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_element_set_state (GST_ELEMENT (thread), GST_STATE_NULL);
|
2000-09-09 16:39:03 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
g_main_loop_quit (loop);
|
|
|
|
g_main_loop_unref (loop);
|
2000-09-09 16:39:03 +00:00
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
int
|
|
|
|
main (int argc, char *argv[])
|
2000-09-09 16:39:03 +00:00
|
|
|
{
|
2002-01-05 23:05:56 +00:00
|
|
|
GstElement *filesrc, *osssink;
|
2000-09-09 16:39:03 +00:00
|
|
|
GstElement *pipeline;
|
|
|
|
GstElement *thread;
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_init (&argc, &argv);
|
2001-01-03 22:58:58 +00:00
|
|
|
|
2000-09-09 16:39:03 +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-09 16:39:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* create a new thread to hold the elements */
|
2004-03-13 15:27:01 +00:00
|
|
|
thread = gst_thread_new ("thread");
|
|
|
|
g_assert (thread != NULL);
|
2000-09-09 16:39:03 +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-09 16:39:03 +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-09 16:39:03 +00:00
|
|
|
|
|
|
|
/* and an audio sink */
|
2004-03-13 15:27:01 +00:00
|
|
|
osssink = gst_element_factory_make ("osssink", "play_audio");
|
|
|
|
g_assert (osssink != NULL);
|
2000-09-09 16:39:03 +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), osssink);
|
2000-09-09 16:39:03 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
if (!gst_pipeline_autoplug(GST_PIPELINE(pipeline))) {
|
|
|
|
g_print("unable to handle stream\n");
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
*/
|
2000-09-09 16:39:03 +00:00
|
|
|
|
2002-03-19 04:10:13 +00:00
|
|
|
/*gst_bin_remove(GST_BIN(pipeline), filesrc); */
|
2000-09-09 16:39:03 +00:00
|
|
|
|
2002-03-19 04:10:13 +00:00
|
|
|
/*gst_bin_add(GST_BIN(thread), filesrc); */
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_bin_add (GST_BIN (thread), GST_ELEMENT (pipeline));
|
2000-09-09 16:39:03 +00:00
|
|
|
|
|
|
|
/* make it ready */
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_element_set_state (GST_ELEMENT (thread), GST_STATE_READY);
|
2000-09-09 16:39:03 +00:00
|
|
|
/* start playing */
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_element_set_state (GST_ELEMENT (thread), GST_STATE_PLAYING);
|
2000-09-09 16:39:03 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
loop = g_main_loop_new (NULL, FALSE);
|
2000-09-09 16:39:03 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_object_unref (GST_OBJECT (thread));
|
2000-09-09 16:39:03 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
exit (0);
|
2000-09-09 16:39:03 +00:00
|
|
|
}
|