mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 10:31:05 +00:00
803ce6bf48
Original commit message from CVS: GST_DEBUG reorganization This is a big diff (ca 450k), containing loads of stuff: - gstinfo.[ch] complete rewrite - changing of all GST_DEBUG messages to reflect that change - reorganization of subsystem disabling - addition of gstconfig.h.in so we can track the disablings - <gst/gst.h> does not include <unistd.h> and <config.h> anymore - documentation updated for gstinfo stuff (build the docs yourself to know what changed) - bugfixes for making of the docs (files from CVS are not deleted anymore - testsuite for debugging changes in testsuite/debug expect breakage
37 lines
1,002 B
C
37 lines
1,002 B
C
#include <gst/gst.h>
|
|
|
|
int main (int argc, char *argv[])
|
|
{
|
|
GstElement *pipeline, *thread, *queue, *src, *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");
|
|
sink = gst_element_factory_make ("fakesink", "sink");
|
|
|
|
gst_bin_add (GST_BIN (thread), queue);
|
|
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", 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;
|
|
}
|