mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
Test for scheduler interrupt
Original commit message from CVS: Test for scheduler interrupt
This commit is contained in:
parent
16870983fb
commit
b005b541c8
3 changed files with 81 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
if GST_DISABLE_LOADSAVE
|
if GST_DISABLE_LOADSAVE
|
||||||
noinst_PROGRAMS =
|
noinst_PROGRAMS =
|
||||||
else
|
else
|
||||||
noinst_PROGRAMS = runxml dynamic-pipeline sched-stress
|
noinst_PROGRAMS = runxml dynamic-pipeline sched-stress interrupt1 interrupt2
|
||||||
endif
|
endif
|
||||||
|
|
||||||
dynamic_pipeline_SOURCES = dynamic-pipeline.c
|
dynamic_pipeline_SOURCES = dynamic-pipeline.c
|
||||||
|
|
38
tests/sched/interrupt1.c
Normal file
38
tests/sched/interrupt1.c
Normal 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
42
tests/sched/interrupt2.c
Normal 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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue