mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
7baa6c18e7
Original commit message from CVS: don't mix tabs and spaces
42 lines
1.2 KiB
C
42 lines
1.2 KiB
C
#include <gst/gst.h>
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
GstElement *pipeline, *thread, *queue, *src, *identity, *sink;
|
|
|
|
gst_init (&argc, &argv);
|
|
|
|
free (malloc (8)); /* -lefence */
|
|
|
|
pipeline = gst_pipeline_new ("pipeline");
|
|
|
|
src = gst_element_factory_make ("fakesrc", "src");
|
|
|
|
thread = gst_thread_new ("thread");
|
|
|
|
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");
|
|
|
|
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);
|
|
|
|
gst_element_link_pads (src, "src", queue, "sink");
|
|
gst_element_link_pads (queue, "src", identity, "sink");
|
|
gst_element_link_pads (identity, "src", sink, "sink");
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
|
g_usleep (G_USEC_PER_SEC);
|
|
gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
|
g_usleep (G_USEC_PER_SEC);
|
|
gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
|
|
|
return 0;
|
|
}
|