mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
9f06376bab
Original commit message from CVS: * docs/design/part-events.txt: Small update. * gst/base/gstbasesink.c: (gst_base_sink_handle_object), (gst_base_sink_do_sync), (gst_base_sink_activate_push), (gst_base_sink_activate_pull): Some more comments. * gst/elements/gstfakesrc.c: (gst_fake_src_class_init), (gst_fake_src_create): Fix handoff marshall. * gst/elements/gstidentity.c: (gst_identity_class_init), (gst_identity_transform_ip): We're a real inplace element. * gst/gstbus.c: (gst_bus_post): Added some comments. * tests/lat.c: (fakesrc), (fakesink), (simple), (queue), (main): * tests/muxing/case1.c: (main): * tests/sched/dynamic-pipeline.c: (main): * tests/sched/interrupt1.c: (main): * tests/sched/interrupt2.c: (main): * tests/sched/interrupt3.c: (main): * tests/sched/runxml.c: (main): * tests/sched/sched-stress.c: (main): * tests/seeking/seeking1.c: (event_received), (main): * tests/threadstate/threadstate2.c: (bus_handler), (timeout_func), (main): * tests/threadstate/threadstate3.c: (main): * tests/threadstate/threadstate4.c: (main): * tests/threadstate/threadstate5.c: (main): Fix the tests.
52 lines
1.3 KiB
C
52 lines
1.3 KiB
C
#include <stdlib.h>
|
|
#include <gst/gst.h>
|
|
|
|
/* this pipeline is:
|
|
* { fakesrc ! { queue ! fakesink } }
|
|
*/
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
GstElement *fakesrc, *fakesink;
|
|
GstElement *pipeline, *pipeline2;
|
|
GstElement *queue;
|
|
gint x;
|
|
|
|
gst_init (&argc, &argv);
|
|
|
|
pipeline = gst_pipeline_new ("pipeline");
|
|
g_assert (pipeline != NULL);
|
|
|
|
pipeline2 = gst_pipeline_new ("pipeline");
|
|
g_assert (pipeline2 != NULL);
|
|
|
|
queue = gst_element_factory_make ("queue", "the_queue");
|
|
g_assert (queue != NULL);
|
|
|
|
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 (pipeline), fakesrc, pipeline2, NULL);
|
|
gst_bin_add_many (GST_BIN (pipeline2), queue, fakesink, NULL);
|
|
|
|
gst_element_add_pad (pipeline2, gst_ghost_pad_new ("sink",
|
|
gst_element_get_pad (queue, "sink")));
|
|
gst_element_link_many (queue, fakesink, NULL);
|
|
gst_element_link_many (fakesrc, pipeline2, NULL);
|
|
|
|
for (x = 0; x < 10; x++) {
|
|
g_print ("playing %d\n", x);
|
|
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
|
g_usleep (G_USEC_PER_SEC);
|
|
|
|
g_print ("nulling %d\n", x);
|
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
|
g_usleep (G_USEC_PER_SEC);
|
|
}
|
|
|
|
exit (0);
|
|
}
|