#include #include /* this pipeline is: * { { fakesrc ! fakesink } } */ int main (int argc, char *argv[]) { GstElement *fakesrc, *fakesink; GstElement *pipeline, *pipeline2; gint x; gst_init (&argc, &argv); pipeline = gst_pipeline_new ("pipeline"); g_assert (pipeline != NULL); pipeline2 = gst_pipeline_new ("pipeline2"); g_assert (pipeline2 != NULL); gst_bin_add (GST_BIN (pipeline), GST_ELEMENT (pipeline2)); 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 (pipeline2), fakesrc, fakesink, NULL); gst_element_link (fakesrc, fakesink); for (x = 0; x < 10; x++) { g_print ("playing %d\n", x); gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_PLAYING); g_usleep (G_USEC_PER_SEC); g_print ("nulling %d\n", x); gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_NULL); g_usleep (G_USEC_PER_SEC); } exit (0); }