mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 14:08:56 +00:00
Shows the problem with adder and optscheduler, this program simulates bug triggered by RhythmBox
Original commit message from CVS: Shows the problem with adder and optscheduler, this program simulates bug triggered by RhythmBox
This commit is contained in:
parent
7ec295a0cd
commit
560beb6b94
2 changed files with 46 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 interrupt1 interrupt2
|
noinst_PROGRAMS = runxml dynamic-pipeline sched-stress interrupt1 interrupt2 interrupt3
|
||||||
endif
|
endif
|
||||||
|
|
||||||
dynamic_pipeline_SOURCES = dynamic-pipeline.c
|
dynamic_pipeline_SOURCES = dynamic-pipeline.c
|
||||||
|
|
45
tests/sched/interrupt3.c
Normal file
45
tests/sched/interrupt3.c
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
#include <gst/gst.h>
|
||||||
|
|
||||||
|
int main (int argc, char *argv[])
|
||||||
|
{
|
||||||
|
GstElement *pipeline, *thread, *queue, *src, *adder, *sink;
|
||||||
|
GstPad *sinkpad;
|
||||||
|
|
||||||
|
gst_init (&argc, &argv);
|
||||||
|
|
||||||
|
free (malloc (8)); /* -lefence */
|
||||||
|
|
||||||
|
pipeline = gst_pipeline_new ("pipeline");
|
||||||
|
|
||||||
|
src = gst_element_factory_make ("fakesrc", "src");
|
||||||
|
g_object_set (G_OBJECT (src), "sizetype", 2, NULL);
|
||||||
|
|
||||||
|
thread = gst_thread_new ("thread");
|
||||||
|
|
||||||
|
queue = gst_element_factory_make ("queue", "queue");
|
||||||
|
adder = gst_element_factory_make ("adder", "adder");
|
||||||
|
sink = gst_element_factory_make ("fakesink", "sink");
|
||||||
|
|
||||||
|
gst_bin_add (GST_BIN (thread), queue);
|
||||||
|
gst_bin_add (GST_BIN (thread), adder);
|
||||||
|
gst_bin_add (GST_BIN (thread), sink);
|
||||||
|
gst_bin_add (GST_BIN (pipeline), thread);
|
||||||
|
gst_bin_add (GST_BIN (pipeline), src);
|
||||||
|
|
||||||
|
sinkpad = gst_element_get_request_pad (adder, "sink%d");
|
||||||
|
|
||||||
|
gst_element_link_pads (src, "src", queue, "sink");
|
||||||
|
gst_pad_link (gst_element_get_pad (queue, "src"), sinkpad);
|
||||||
|
gst_element_link_pads (adder, "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