2000-01-30 10:44:33 +00:00
|
|
|
#include <glib.h>
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
extern gboolean _gst_plugin_spew;
|
|
|
|
|
|
|
|
/* we don't need a lock around the application's state yet, since it's 1
|
|
|
|
bit. as it gets more fleshed in, we'll need a lock so the callbacks
|
|
|
|
don't screw around with state unexpectedly */
|
|
|
|
static gboolean playing = TRUE;
|
|
|
|
|
2000-12-30 01:53:05 +00:00
|
|
|
void eof(GstElement *src) {
|
2001-01-01 07:44:32 +00:00
|
|
|
GST_DEBUG(0,"have EOF\n");
|
2000-01-30 10:44:33 +00:00
|
|
|
playing = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc,char *argv[]) {
|
|
|
|
GstElement *pipeline;
|
|
|
|
GstElement *decodethread;
|
|
|
|
GstElementFactory *srcfactory;
|
|
|
|
GstElement *src;
|
|
|
|
GstElementFactory *decodefactory;
|
|
|
|
GstElement *decode;
|
|
|
|
GstElementFactory *queuefactory;
|
|
|
|
GstElement *queue;
|
|
|
|
GstElement *playthread;
|
|
|
|
GstElementFactory *sinkfactory;
|
|
|
|
GstElement *sink;
|
|
|
|
|
|
|
|
gst_init(&argc,&argv);
|
|
|
|
|
|
|
|
/* first create the main pipeline */
|
2000-08-14 15:17:24 +00:00
|
|
|
pipeline = GST_ELEMENT(gst_pipeline_new("pipeline"));
|
2000-01-30 10:44:33 +00:00
|
|
|
|
|
|
|
/* then the decode thread, source, and decoder */
|
|
|
|
decodethread = gst_thread_new("decodethread");
|
|
|
|
|
2001-02-04 21:38:47 +00:00
|
|
|
srcfactory = gst_elementfactory_find("disksrc");
|
2000-01-30 10:44:33 +00:00
|
|
|
src = gst_elementfactory_create(srcfactory,"src");
|
|
|
|
gtk_object_set(GTK_OBJECT(src),"location",argv[1],NULL);
|
|
|
|
gst_bin_add(GST_BIN(decodethread),GST_ELEMENT(src));
|
|
|
|
|
|
|
|
_gst_plugin_spew = TRUE;
|
|
|
|
|
|
|
|
if (argc > 2)
|
|
|
|
gst_plugin_load(argv[2]);
|
|
|
|
else
|
|
|
|
gst_plugin_load_all();
|
|
|
|
decodefactory = gst_elementfactory_find("mpg123");
|
|
|
|
decode = gst_elementfactory_create(decodefactory,"decode");
|
|
|
|
gst_bin_add(GST_BIN(decodethread),GST_ELEMENT(decode));
|
|
|
|
gst_element_add_ghost_pad(GST_ELEMENT(decodethread),
|
2001-01-20 03:33:55 +00:00
|
|
|
gst_element_get_pad(decode,"src"),"src");
|
2000-01-30 10:44:33 +00:00
|
|
|
|
|
|
|
gst_pad_connect(gst_element_get_pad(src,"src"),
|
|
|
|
gst_element_get_pad(decode,"sink"));
|
|
|
|
|
|
|
|
/* then the play thread and sink */
|
|
|
|
playthread = gst_thread_new("playthread");
|
|
|
|
|
2001-03-24 17:22:03 +00:00
|
|
|
sinkfactory = gst_elementfactory_find("osssink");
|
2000-01-30 10:44:33 +00:00
|
|
|
sink = gst_elementfactory_create(sinkfactory,"sink");
|
|
|
|
gst_bin_add(GST_BIN(playthread),GST_ELEMENT(sink));
|
|
|
|
gst_element_add_ghost_pad(GST_ELEMENT(playthread),
|
2001-01-20 03:33:55 +00:00
|
|
|
gst_element_get_pad(sink,"sink"),"sink");
|
2000-01-30 10:44:33 +00:00
|
|
|
|
|
|
|
/* create the queue */
|
|
|
|
queuefactory = gst_elementfactory_find("queue");
|
|
|
|
queue = gst_elementfactory_create(queuefactory,"queue");
|
|
|
|
|
|
|
|
/* add threads to the main pipeline */
|
|
|
|
gst_bin_add(GST_BIN(pipeline),decodethread);
|
|
|
|
gst_bin_add(GST_BIN(pipeline),queue);
|
|
|
|
gst_bin_add(GST_BIN(pipeline),playthread);
|
|
|
|
|
|
|
|
gst_pad_connect(gst_element_get_pad(decodethread,"src"),
|
|
|
|
// gst_element_get_pad(queue,"sink"));
|
|
|
|
// gst_pad_connect(gst_element_get_pad(queue,"src"),
|
|
|
|
gst_element_get_pad(playthread,"sink"));
|
|
|
|
|
|
|
|
gtk_signal_connect(GTK_OBJECT(src),"eof",
|
|
|
|
GTK_SIGNAL_FUNC(eof),NULL);
|
|
|
|
|
|
|
|
g_print("\nsetting up the decode thread to *NOT* thread\n");
|
|
|
|
// gtk_object_set(GTK_OBJECT(decodethread),"create_thread",TRUE,NULL);
|
|
|
|
gtk_object_set(GTK_OBJECT(playthread),"create_thread",FALSE,NULL);
|
|
|
|
|
|
|
|
g_print("\neverything's built, setting it up to be runnable\n");
|
2000-08-14 15:17:24 +00:00
|
|
|
gst_element_set_state(GST_ELEMENT(pipeline),GST_STATE_READY);
|
2000-01-30 10:44:33 +00:00
|
|
|
|
|
|
|
g_print("\nok, runnable, hitting 'play'...\n");
|
|
|
|
gst_element_set_state(GST_ELEMENT(pipeline),GST_STATE_PLAYING);
|
|
|
|
|
|
|
|
g_print("\niterating on %p and %p\n",decodethread,playthread);
|
|
|
|
while (playing) {
|
2000-10-25 19:09:53 +00:00
|
|
|
gst_bin_iterate(GST_BIN(playthread));
|
2000-01-30 10:44:33 +00:00
|
|
|
/* buffers got wedged in the queue, unstick them */
|
|
|
|
// while (((GstQueue *)queue)->buffers_queued)
|
|
|
|
// gst_connection_push(GST_CONNECTION(queue));
|
|
|
|
// gst_thread_iterate(GST_THREAD(playthread));
|
|
|
|
// g_print("stuffed and unstuck the queue\n");
|
|
|
|
// sleep(1);
|
|
|
|
}
|
2000-08-14 15:17:24 +00:00
|
|
|
return 0;
|
2000-01-30 10:44:33 +00:00
|
|
|
}
|