2001-01-01 00:42:10 +00:00
|
|
|
#include <stdlib.h>
|
2000-09-22 23:35:14 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
int
|
|
|
|
main (int argc, char *argv[])
|
2000-09-22 23:35:14 +00:00
|
|
|
{
|
2002-01-05 23:05:56 +00:00
|
|
|
GstElement *filesrc, *osssink, *parse, *decode, *queue;
|
2000-09-22 23:35:14 +00:00
|
|
|
GstElement *bin;
|
|
|
|
GstElement *thread;
|
|
|
|
|
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 thread to hold the elements */
|
2004-03-13 15:27:01 +00:00
|
|
|
thread = gst_thread_new ("thread");
|
|
|
|
g_assert (thread != NULL);
|
2000-09-22 23:35:14 +00:00
|
|
|
|
|
|
|
/* create a new bin to hold the elements */
|
2004-03-13 15:27:01 +00:00
|
|
|
bin = gst_bin_new ("bin");
|
|
|
|
g_assert (bin != 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);
|
2000-09-22 23:35:14 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
parse = gst_element_factory_make ("mp3parse", "parse");
|
|
|
|
decode = gst_element_factory_make ("mpg123", "decode");
|
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 */
|
2004-03-13 15:27:01 +00:00
|
|
|
osssink = gst_element_factory_make ("osssink", "play_audio");
|
|
|
|
g_assert (osssink != NULL);
|
2000-09-22 23:35:14 +00:00
|
|
|
|
|
|
|
/* add objects to the main pipeline */
|
2003-01-09 20:02:34 +00:00
|
|
|
gst_bin_add_many (GST_BIN (bin), filesrc, parse, decode, queue, NULL);
|
2000-09-22 23:35:14 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_bin_add (GST_BIN (thread), osssink);
|
|
|
|
gst_bin_add (GST_BIN (bin), thread);
|
2003-01-09 20:02:34 +00:00
|
|
|
|
|
|
|
gst_element_link_many (filesrc, parse, decode, queue, osssink, NULL);
|
2000-09-22 23:35:14 +00:00
|
|
|
|
|
|
|
/* start playing */
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_element_set_state (GST_ELEMENT (bin), GST_STATE_PLAYING);
|
2000-09-22 23:35:14 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
while (gst_bin_iterate (GST_BIN (bin)));
|
2000-09-22 23:35:14 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_element_set_state (GST_ELEMENT (bin), 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
|
|
|
}
|