2002-06-17 20:35:22 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
#define TAILLE 100
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
int
|
|
|
|
main (int argc, char *argv[])
|
2002-06-17 20:35:22 +00:00
|
|
|
{
|
|
|
|
GstElement *bin, *src, *dec, *sink;
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
gst_init (&argc, &argv);
|
|
|
|
|
2004-03-15 19:27:17 +00:00
|
|
|
free (malloc (8)); /* -lefence */
|
2002-06-17 20:35:22 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
for (i = 0; i < TAILLE; i++) {
|
2002-06-17 20:35:22 +00:00
|
|
|
bin = gst_pipeline_new ("pipeline");
|
|
|
|
src = gst_element_factory_make ("fakesrc", "source");
|
|
|
|
dec = gst_element_factory_make ("identity", "decoder");
|
|
|
|
sink = gst_element_factory_make ("fakesink", "sink");
|
|
|
|
gst_bin_add_many (GST_BIN (bin), src, dec, sink, NULL);
|
2003-01-09 14:15:37 +00:00
|
|
|
gst_element_link_many (src, dec, sink, NULL);
|
2002-06-17 20:35:22 +00:00
|
|
|
gst_element_set_state (bin, GST_STATE_PLAYING);
|
2004-03-13 15:27:01 +00:00
|
|
|
for (j = 0; j < 30; j++)
|
|
|
|
gst_bin_iterate (GST_BIN (bin));
|
2002-06-17 20:35:22 +00:00
|
|
|
gst_element_set_state (bin, GST_STATE_PAUSED);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|