2003-02-10 20:08:59 +00:00
|
|
|
#include <stdlib.h>
|
2002-06-03 18:05:08 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
|
2002-06-03 18:51:08 +00:00
|
|
|
/* this pipeline is:
|
|
|
|
* { { fakesrc ! fakesink } }
|
|
|
|
*/
|
|
|
|
|
2003-01-09 20:02:34 +00:00
|
|
|
int main(int argc,char *argv[])
|
2002-06-03 18:05:08 +00:00
|
|
|
{
|
|
|
|
GstElement *fakesrc, *fakesink;
|
2002-06-03 18:37:36 +00:00
|
|
|
GstElement *thread, *thread2;
|
2002-06-03 18:05:08 +00:00
|
|
|
gint x;
|
|
|
|
|
|
|
|
gst_init(&argc,&argv);
|
|
|
|
|
|
|
|
thread = gst_thread_new("thread");
|
|
|
|
g_assert(thread != NULL);
|
|
|
|
|
2002-06-03 18:37:36 +00:00
|
|
|
thread2 = gst_thread_new("thread2");
|
|
|
|
g_assert(thread2 != NULL);
|
2002-06-03 18:05:08 +00:00
|
|
|
|
2002-06-03 18:37:36 +00:00
|
|
|
gst_bin_add(GST_BIN(thread), GST_ELEMENT(thread2));
|
2002-06-03 18:05:08 +00:00
|
|
|
|
|
|
|
fakesrc = gst_element_factory_make("fakesrc", "fake_source");
|
|
|
|
g_assert(fakesrc != NULL);
|
|
|
|
|
|
|
|
fakesink = gst_element_factory_make("fakesink", "fake_sink");
|
|
|
|
g_assert(fakesink != NULL);
|
|
|
|
|
2002-06-03 18:37:36 +00:00
|
|
|
gst_bin_add_many (GST_BIN(thread2), fakesrc, fakesink, NULL);
|
2003-01-09 20:02:34 +00:00
|
|
|
gst_element_link (fakesrc, fakesink);
|
2002-06-03 18:05:08 +00:00
|
|
|
|
|
|
|
for (x = 0 ; x < 10 ; x++){
|
|
|
|
g_print("playing %d\n", x);
|
|
|
|
gst_element_set_state(GST_ELEMENT(thread), GST_STATE_PLAYING);
|
2003-06-29 14:05:49 +00:00
|
|
|
g_usleep (G_USEC_PER_SEC);
|
2002-06-03 18:05:08 +00:00
|
|
|
|
2002-06-03 18:51:08 +00:00
|
|
|
g_print("nulling %d\n", x);
|
|
|
|
gst_element_set_state(GST_ELEMENT(thread), GST_STATE_NULL);
|
2003-06-29 14:05:49 +00:00
|
|
|
g_usleep (G_USEC_PER_SEC);
|
2002-06-03 18:05:08 +00:00
|
|
|
}
|
|
|
|
exit(0);
|
|
|
|
}
|