2000-01-30 10:44:33 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
int main(int argc,char *argv[]) {
|
|
|
|
GstType *mp3type;
|
|
|
|
GList *factories;
|
|
|
|
GstElement *src;
|
|
|
|
GList *padlist;
|
|
|
|
|
|
|
|
gst_init(&argc,&argv);
|
|
|
|
gst_plugin_load_all();
|
|
|
|
|
|
|
|
bin = gst_bin_new("bin");
|
|
|
|
|
|
|
|
disksrc = gst_disksrc_new("disksrc");
|
|
|
|
g_print("created disksrc\n");
|
|
|
|
if (argc == 2)
|
|
|
|
gst_disksrc_set_filename(disksrc,argv[1]);
|
|
|
|
else
|
|
|
|
gst_disksrc_set_filename(disksrc,"Thank_you_very_much.au");
|
|
|
|
g_print("loaded file '%s'\n",gst_disksrc_get_filename(disksrc));
|
|
|
|
|
|
|
|
|
|
|
|
/* now it's time to get the parser */
|
|
|
|
autype = gst_type_get_by_mime("audio/au");
|
|
|
|
factories = gst_type_get_sinks(autype);
|
|
|
|
if (factories != NULL)
|
|
|
|
parsefactory = GST_ELEMENTFACTORY(factories->data);
|
|
|
|
else {
|
|
|
|
g_print("sorry, can't find anyone registered to sink 'au'\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
parse = gst_elementfactory_create(parsefactory,"parser");
|
|
|
|
if (parse == NULL) {
|
|
|
|
g_print("sorry, couldn't create parser\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-24 17:22:03 +00:00
|
|
|
osssink = gst_osssink_new("osssink");
|
2000-01-30 10:44:33 +00:00
|
|
|
|
|
|
|
gtk_signal_connect(GTK_OBJECT(disksrc),"eof",
|
|
|
|
GTK_SIGNAL_FUNC(eof),NULL);
|
|
|
|
|
|
|
|
/* add objects to the main pipeline */
|
|
|
|
gst_bin_add(GST_BIN(bin),GST_OBJECT(disksrc));
|
|
|
|
gst_bin_add(GST_BIN(bin),GST_OBJECT(parse));
|
2001-03-24 17:22:03 +00:00
|
|
|
gst_bin_add(GST_BIN(bin),GST_OBJECT(osssink));
|
2000-01-30 10:44:33 +00:00
|
|
|
|
|
|
|
/* 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"),
|
2001-03-24 17:22:03 +00:00
|
|
|
gst_element_get_pad(osssink,"sink"));
|
2000-01-30 10:44:33 +00:00
|
|
|
|
|
|
|
while(1)
|
|
|
|
gst_disksrc_push(GST_SRC(disksrc));
|
|
|
|
|
2001-03-24 17:22:03 +00:00
|
|
|
gst_object_destroy(GST_OBJECT(osssink));
|
2000-01-30 10:44:33 +00:00
|
|
|
gst_object_destroy(GST_OBJECT(parse));
|
|
|
|
gst_object_destroy(GST_OBJECT(disksrc));
|
|
|
|
gst_object_destroy(GST_OBJECT(bin));
|
|
|
|
}
|
|
|
|
|