2001-01-01 00:42:10 +00:00
|
|
|
#include <stdlib.h>
|
2000-08-18 20:38:54 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
|
2002-02-21 14:44:27 +00:00
|
|
|
int main (int argc, char *argv[])
|
2000-08-18 20:38:54 +00:00
|
|
|
{
|
2002-01-06 19:00:14 +00:00
|
|
|
GstElement *bin, *filesrc, *decoder, *osssink;
|
2000-08-18 20:38:54 +00:00
|
|
|
|
2002-02-21 14:44:27 +00:00
|
|
|
gst_init (&argc, &argv);
|
2001-01-03 19:12:21 +00:00
|
|
|
|
2000-08-18 20:38:54 +00:00
|
|
|
if (argc != 2) {
|
2002-02-21 14:44:27 +00:00
|
|
|
g_print ("usage: %s <mp3 file>\n", argv[0]);
|
|
|
|
exit (-1);
|
2000-08-18 20:38:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* create a new bin to hold the elements */
|
2002-02-21 14:44:27 +00:00
|
|
|
bin = gst_pipeline_new ("pipeline");
|
2002-03-30 17:09:53 +00:00
|
|
|
g_assert (bin);
|
2000-08-18 20:38:54 +00:00
|
|
|
|
|
|
|
/* create a disk reader */
|
2002-02-21 14:44:27 +00:00
|
|
|
filesrc = gst_elementfactory_make ("filesrc", "disk_source");
|
2002-03-30 17:09:53 +00:00
|
|
|
g_assert (filesrc);
|
2002-02-21 14:44:27 +00:00
|
|
|
g_object_set (G_OBJECT (filesrc), "location", argv[1], NULL);
|
2000-08-18 20:38:54 +00:00
|
|
|
|
2002-01-06 19:00:14 +00:00
|
|
|
/* now it's time to get the decoder */
|
2002-04-07 23:32:16 +00:00
|
|
|
decoder = gst_elementfactory_make ("mad", "decode");
|
2002-01-06 19:00:14 +00:00
|
|
|
if (!decoder) {
|
|
|
|
g_print ("could not find plugin \"mad\"");
|
|
|
|
return -1;
|
|
|
|
}
|
2000-08-18 20:38:54 +00:00
|
|
|
/* and an audio sink */
|
2002-02-21 14:44:27 +00:00
|
|
|
osssink = gst_elementfactory_make ("osssink", "play_audio");
|
2002-03-30 17:09:53 +00:00
|
|
|
g_assert (osssink);
|
2000-08-18 20:38:54 +00:00
|
|
|
|
|
|
|
/* add objects to the main pipeline */
|
2002-02-21 14:44:27 +00:00
|
|
|
gst_bin_add_many (GST_BIN (bin), filesrc, decoder, osssink, NULL);
|
2000-08-18 20:38:54 +00:00
|
|
|
|
2002-02-21 14:44:27 +00:00
|
|
|
/* connect the elements */
|
2002-04-07 23:32:16 +00:00
|
|
|
gst_element_connect_many (filesrc, decoder, osssink, NULL);
|
2002-02-21 14:44:27 +00:00
|
|
|
|
2000-08-18 20:38:54 +00:00
|
|
|
/* start playing */
|
2002-02-21 14:44:27 +00:00
|
|
|
gst_element_set_state (bin, GST_STATE_PLAYING);
|
2000-08-18 20:38:54 +00:00
|
|
|
|
2002-02-21 14:44:27 +00:00
|
|
|
while (gst_bin_iterate (GST_BIN (bin)));
|
2000-08-18 20:38:54 +00:00
|
|
|
|
|
|
|
/* stop the bin */
|
2002-02-21 14:44:27 +00:00
|
|
|
gst_element_set_state (bin, GST_STATE_NULL);
|
2000-08-18 20:38:54 +00:00
|
|
|
|
2002-02-21 14:44:27 +00:00
|
|
|
exit (0);
|
2000-08-18 20:38:54 +00:00
|
|
|
}
|
|
|
|
|