mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-29 21:21:12 +00:00
Added another test app.
Original commit message from CVS: Added another test app.
This commit is contained in:
parent
f5affde61c
commit
775656d35f
4 changed files with 120 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
testprogs = cleanup1 cleanup2 cleanup3
|
testprogs = cleanup1 cleanup2 cleanup3 cleanup4
|
||||||
|
|
||||||
TESTS = $(testprogs)
|
TESTS = $(testprogs)
|
||||||
|
|
||||||
|
@ -11,3 +11,5 @@ cleanup2_LDADD = $(GST_LIBS)
|
||||||
cleanup2_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
cleanup2_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||||
cleanup3_LDADD = $(GST_LIBS)
|
cleanup3_LDADD = $(GST_LIBS)
|
||||||
cleanup3_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
cleanup3_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||||
|
cleanup4_LDADD = $(GST_LIBS)
|
||||||
|
cleanup4_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||||
|
|
57
tests/old/testsuite/cleanup/cleanup4.c
Normal file
57
tests/old/testsuite/cleanup/cleanup4.c
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
#include <gst/gst.h>
|
||||||
|
|
||||||
|
static GstElement *
|
||||||
|
create_pipeline (void)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
gint
|
||||||
|
main (gint argc, gchar *argv[])
|
||||||
|
{
|
||||||
|
GstElement *pipeline;
|
||||||
|
GstElement *fakesrc;
|
||||||
|
gint i;
|
||||||
|
|
||||||
|
free (malloc(8)); /* -lefence */
|
||||||
|
|
||||||
|
gst_init (&argc, &argv);
|
||||||
|
|
||||||
|
i = 10000;
|
||||||
|
|
||||||
|
pipeline = gst_pipeline_new ("main_pipeline");
|
||||||
|
|
||||||
|
fakesrc = gst_elementfactory_make ("fakesrc", "fakesrc");
|
||||||
|
g_object_set (G_OBJECT (fakesrc), "num_buffers", 5, NULL);
|
||||||
|
gst_bin_add (GST_BIN (pipeline), fakesrc);
|
||||||
|
|
||||||
|
g_mem_chunk_info ();
|
||||||
|
while (i--) {
|
||||||
|
GstElement *bin;
|
||||||
|
GstElement *fakesink;
|
||||||
|
|
||||||
|
fprintf (stderr, "+");
|
||||||
|
|
||||||
|
bin = gst_bin_new ("bin");
|
||||||
|
|
||||||
|
fakesink = gst_elementfactory_make ("fakesink", "fakesink");
|
||||||
|
|
||||||
|
gst_element_connect (fakesrc, "src", fakesink, "sink");
|
||||||
|
|
||||||
|
gst_bin_add (GST_BIN (bin), fakesink);
|
||||||
|
gst_bin_add (GST_BIN (pipeline), bin);
|
||||||
|
|
||||||
|
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
||||||
|
|
||||||
|
while (gst_bin_iterate (GST_BIN (pipeline)));
|
||||||
|
|
||||||
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
|
|
||||||
|
fprintf (stderr, "-");
|
||||||
|
gst_bin_remove (GST_BIN (pipeline), GST_ELEMENT (bin));
|
||||||
|
|
||||||
|
}
|
||||||
|
fprintf (stderr, "\n");
|
||||||
|
g_mem_chunk_info ();
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
testprogs = cleanup1 cleanup2 cleanup3
|
testprogs = cleanup1 cleanup2 cleanup3 cleanup4
|
||||||
|
|
||||||
TESTS = $(testprogs)
|
TESTS = $(testprogs)
|
||||||
|
|
||||||
|
@ -11,3 +11,5 @@ cleanup2_LDADD = $(GST_LIBS)
|
||||||
cleanup2_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
cleanup2_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||||
cleanup3_LDADD = $(GST_LIBS)
|
cleanup3_LDADD = $(GST_LIBS)
|
||||||
cleanup3_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
cleanup3_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||||
|
cleanup4_LDADD = $(GST_LIBS)
|
||||||
|
cleanup4_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||||
|
|
57
testsuite/cleanup/cleanup4.c
Normal file
57
testsuite/cleanup/cleanup4.c
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
#include <gst/gst.h>
|
||||||
|
|
||||||
|
static GstElement *
|
||||||
|
create_pipeline (void)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
gint
|
||||||
|
main (gint argc, gchar *argv[])
|
||||||
|
{
|
||||||
|
GstElement *pipeline;
|
||||||
|
GstElement *fakesrc;
|
||||||
|
gint i;
|
||||||
|
|
||||||
|
free (malloc(8)); /* -lefence */
|
||||||
|
|
||||||
|
gst_init (&argc, &argv);
|
||||||
|
|
||||||
|
i = 10000;
|
||||||
|
|
||||||
|
pipeline = gst_pipeline_new ("main_pipeline");
|
||||||
|
|
||||||
|
fakesrc = gst_elementfactory_make ("fakesrc", "fakesrc");
|
||||||
|
g_object_set (G_OBJECT (fakesrc), "num_buffers", 5, NULL);
|
||||||
|
gst_bin_add (GST_BIN (pipeline), fakesrc);
|
||||||
|
|
||||||
|
g_mem_chunk_info ();
|
||||||
|
while (i--) {
|
||||||
|
GstElement *bin;
|
||||||
|
GstElement *fakesink;
|
||||||
|
|
||||||
|
fprintf (stderr, "+");
|
||||||
|
|
||||||
|
bin = gst_bin_new ("bin");
|
||||||
|
|
||||||
|
fakesink = gst_elementfactory_make ("fakesink", "fakesink");
|
||||||
|
|
||||||
|
gst_element_connect (fakesrc, "src", fakesink, "sink");
|
||||||
|
|
||||||
|
gst_bin_add (GST_BIN (bin), fakesink);
|
||||||
|
gst_bin_add (GST_BIN (pipeline), bin);
|
||||||
|
|
||||||
|
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
||||||
|
|
||||||
|
while (gst_bin_iterate (GST_BIN (pipeline)));
|
||||||
|
|
||||||
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
|
|
||||||
|
fprintf (stderr, "-");
|
||||||
|
gst_bin_remove (GST_BIN (pipeline), GST_ELEMENT (bin));
|
||||||
|
|
||||||
|
}
|
||||||
|
fprintf (stderr, "\n");
|
||||||
|
g_mem_chunk_info ();
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in a new issue