Test for scheduler interrupt

Original commit message from CVS:
Test for scheduler interrupt
This commit is contained in:
Wim Taymans 2003-01-08 21:28:37 +00:00
parent 16870983fb
commit b005b541c8
3 changed files with 81 additions and 1 deletions

View file

@ -1,7 +1,7 @@
if GST_DISABLE_LOADSAVE
noinst_PROGRAMS =
else
noinst_PROGRAMS = runxml dynamic-pipeline sched-stress
noinst_PROGRAMS = runxml dynamic-pipeline sched-stress interrupt1 interrupt2
endif
dynamic_pipeline_SOURCES = dynamic-pipeline.c

38
tests/sched/interrupt1.c Normal file
View file

@ -0,0 +1,38 @@
#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_connect_pads (src, "src", queue, "sink");
gst_element_connect_pads (queue, "src", sink, "sink");
gst_element_set_state (pipeline, GST_STATE_PLAYING);
sleep (1);
gst_element_set_state (pipeline, GST_STATE_PAUSED);
gst_element_set_state (pipeline, GST_STATE_PLAYING);
sleep (1);
gst_element_set_state (pipeline, GST_STATE_PAUSED);
return 0;
}

42
tests/sched/interrupt2.c Normal file
View file

@ -0,0 +1,42 @@
#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_connect_pads (src, "src", queue, "sink");
gst_element_connect_pads (queue, "src", identity, "sink");
gst_element_connect_pads (identity, "src", sink, "sink");
gst_element_set_state (pipeline, GST_STATE_PLAYING);
sleep (1);
gst_element_set_state (pipeline, GST_STATE_PAUSED);
gst_element_set_state (pipeline, GST_STATE_PLAYING);
sleep (1);
gst_element_set_state (pipeline, GST_STATE_PAUSED);
return 0;
}