2003-01-08 21:28:37 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
int
|
|
|
|
main (int argc, char *argv[])
|
2003-01-08 21:28:37 +00:00
|
|
|
{
|
|
|
|
GstElement *pipeline, *thread, *queue, *src, *identity, *sink;
|
|
|
|
|
|
|
|
gst_init (&argc, &argv);
|
|
|
|
|
2004-03-15 19:27:17 +00:00
|
|
|
free (malloc (8)); /* -lefence */
|
2003-01-08 21:28:37 +00:00
|
|
|
|
|
|
|
pipeline = gst_pipeline_new ("pipeline");
|
|
|
|
|
|
|
|
src = gst_element_factory_make ("fakesrc", "src");
|
|
|
|
|
|
|
|
thread = gst_thread_new ("thread");
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2003-01-08 21:28:37 +00:00
|
|
|
queue = gst_element_factory_make ("queue", "queue");
|
|
|
|
identity = gst_element_factory_make ("identity", "identity");
|
|
|
|
g_object_set (G_OBJECT (identity), "loop_based", TRUE, NULL);
|
|
|
|
sink = gst_element_factory_make ("fakesink", "sink");
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2003-01-08 21:28:37 +00:00
|
|
|
gst_bin_add (GST_BIN (thread), queue);
|
|
|
|
gst_bin_add (GST_BIN (thread), identity);
|
|
|
|
gst_bin_add (GST_BIN (thread), sink);
|
|
|
|
gst_bin_add (GST_BIN (pipeline), thread);
|
|
|
|
gst_bin_add (GST_BIN (pipeline), src);
|
|
|
|
|
2003-01-10 03:31:53 +00:00
|
|
|
gst_element_link_pads (src, "src", queue, "sink");
|
|
|
|
gst_element_link_pads (queue, "src", identity, "sink");
|
|
|
|
gst_element_link_pads (identity, "src", sink, "sink");
|
2003-01-08 21:28:37 +00:00
|
|
|
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
2003-06-29 14:05:49 +00:00
|
|
|
g_usleep (G_USEC_PER_SEC);
|
2003-01-08 21:28:37 +00:00
|
|
|
gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
|
|
|
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
2003-06-29 14:05:49 +00:00
|
|
|
g_usleep (G_USEC_PER_SEC);
|
2003-01-08 21:28:37 +00:00
|
|
|
gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|