2001-01-01 00:42:10 +00:00
|
|
|
#include <stdlib.h>
|
2000-08-18 20:38:54 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
gboolean playing;
|
|
|
|
|
2000-09-09 16:36:10 +00:00
|
|
|
/* eos will be called when the src element has an end of stream */
|
2001-01-01 00:42:10 +00:00
|
|
|
void eos(GstElement *element)
|
2000-08-18 20:38:54 +00:00
|
|
|
{
|
|
|
|
g_print("have eos, quitting\n");
|
|
|
|
|
|
|
|
playing = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc,char *argv[])
|
|
|
|
{
|
|
|
|
GstElement *bin, *disksrc, *parse, *decoder, *audiosink;
|
|
|
|
|
|
|
|
if (argc != 2) {
|
|
|
|
g_print("usage: %s <filename>\n", argv[0]);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_init(&argc,&argv);
|
|
|
|
|
|
|
|
/* create a new bin to hold the elements */
|
|
|
|
bin = gst_bin_new("bin");
|
|
|
|
|
|
|
|
/* create a disk reader */
|
|
|
|
disksrc = gst_elementfactory_make("disksrc", "disk_source");
|
|
|
|
gtk_object_set(GTK_OBJECT(disksrc),"location", argv[1],NULL);
|
|
|
|
gtk_signal_connect(GTK_OBJECT(disksrc),"eos",
|
|
|
|
GTK_SIGNAL_FUNC(eos),NULL);
|
|
|
|
|
|
|
|
/* now it's time to get the parser */
|
|
|
|
parse = gst_elementfactory_make("mp3parse","parse");
|
|
|
|
decoder = gst_elementfactory_make("mpg123","decoder");
|
|
|
|
/* and an audio sink */
|
|
|
|
audiosink = gst_elementfactory_make("audiosink", "play_audio");
|
|
|
|
|
|
|
|
/* add objects to the main pipeline */
|
|
|
|
gst_bin_add(GST_BIN(bin), disksrc);
|
2000-09-09 16:36:10 +00:00
|
|
|
gst_bin_add(GST_BIN(bin), parse);
|
2000-08-18 20:38:54 +00:00
|
|
|
gst_bin_add(GST_BIN(bin), decoder);
|
|
|
|
gst_bin_add(GST_BIN(bin), audiosink);
|
|
|
|
|
|
|
|
/* connect src to sink */
|
|
|
|
gst_pad_connect(gst_element_get_pad(disksrc,"src"),
|
|
|
|
gst_element_get_pad(parse,"sink"));
|
|
|
|
gst_pad_connect(gst_element_get_pad(parse,"src"),
|
|
|
|
gst_element_get_pad(decoder,"sink"));
|
|
|
|
gst_pad_connect(gst_element_get_pad(decoder,"src"),
|
|
|
|
gst_element_get_pad(audiosink,"sink"));
|
|
|
|
|
|
|
|
/* make it ready */
|
|
|
|
gst_element_set_state(bin, GST_STATE_READY);
|
|
|
|
/* start playing */
|
|
|
|
gst_element_set_state(bin, GST_STATE_PLAYING);
|
|
|
|
|
|
|
|
playing = TRUE;
|
|
|
|
|
|
|
|
while (playing) {
|
|
|
|
gst_bin_iterate(GST_BIN(bin));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* stop the bin */
|
|
|
|
gst_element_set_state(bin, GST_STATE_NULL);
|
|
|
|
|
|
|
|
gst_object_destroy(GST_OBJECT(audiosink));
|
2000-09-09 16:36:10 +00:00
|
|
|
gst_object_destroy(GST_OBJECT(parse));
|
2000-08-18 20:38:54 +00:00
|
|
|
gst_object_destroy(GST_OBJECT(decoder));
|
|
|
|
gst_object_destroy(GST_OBJECT(disksrc));
|
|
|
|
gst_object_destroy(GST_OBJECT(bin));
|
|
|
|
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|