mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
b6f6293cc3
Original commit message from CVS: going into the main loop effectively never stops this app
43 lines
975 B
C
43 lines
975 B
C
#include <gst/gst.h>
|
|
|
|
/* this pipeline is:
|
|
* { { fakesrc ! fakesink } }
|
|
*/
|
|
|
|
int main(int argc,char *argv[])
|
|
{
|
|
GstElement *fakesrc, *fakesink;
|
|
GstElement *thread, *thread2;
|
|
gint x;
|
|
|
|
gst_init(&argc,&argv);
|
|
|
|
thread = gst_thread_new("thread");
|
|
g_assert(thread != NULL);
|
|
|
|
thread2 = gst_thread_new("thread2");
|
|
g_assert(thread2 != NULL);
|
|
|
|
gst_bin_add(GST_BIN(thread), GST_ELEMENT(thread2));
|
|
|
|
fakesrc = gst_element_factory_make("fakesrc", "fake_source");
|
|
g_assert(fakesrc != NULL);
|
|
|
|
fakesink = gst_element_factory_make("fakesink", "fake_sink");
|
|
g_assert(fakesink != NULL);
|
|
|
|
gst_bin_add_many (GST_BIN(thread2), fakesrc, fakesink, NULL);
|
|
gst_element_connect (fakesrc, fakesink);
|
|
|
|
for (x = 0 ; x < 10 ; x++){
|
|
g_print("playing %d\n", x);
|
|
gst_element_set_state(GST_ELEMENT(thread), GST_STATE_PLAYING);
|
|
sleep(1);
|
|
|
|
g_print("nulling %d\n", x);
|
|
gst_element_set_state(GST_ELEMENT(thread), GST_STATE_NULL);
|
|
sleep(1);
|
|
}
|
|
exit(0);
|
|
}
|
|
|