Use a core element (tee) for this testcase

Original commit message from CVS:
Use a core element (tee) for this testcase
This commit is contained in:
Wim Taymans 2002-01-27 19:29:57 +00:00
parent f6027148a4
commit 132f776069
2 changed files with 22 additions and 16 deletions

View file

@ -2,19 +2,22 @@
int main(int argc,char *argv[]) int main(int argc,char *argv[])
{ {
GstElement *bin, *decoder; GstElement *bin, *element;
gint i=10000;
gst_init(&argc,&argv); gst_init (&argc, &argv);
bin = gst_pipeline_new("pipeline"); bin = gst_pipeline_new ("pipeline");
while (TRUE) while (i--)
{ {
decoder = gst_elementfactory_make("mpeg2dec","mpeg2dec"); element = gst_elementfactory_make ("tee", "tee");
if (!decoder) if (!element)
break; break;
gst_bin_add(GST_BIN(bin), decoder); gst_element_request_pad_by_name (element, "src%d");
gst_bin_remove(GST_BIN(bin), decoder);
gst_bin_add (GST_BIN (bin), element);
gst_bin_remove (GST_BIN (bin), element);
} }
} }

View file

@ -2,19 +2,22 @@
int main(int argc,char *argv[]) int main(int argc,char *argv[])
{ {
GstElement *bin, *decoder; GstElement *bin, *element;
gint i=10000;
gst_init(&argc,&argv); gst_init (&argc, &argv);
bin = gst_pipeline_new("pipeline"); bin = gst_pipeline_new ("pipeline");
while (TRUE) while (i--)
{ {
decoder = gst_elementfactory_make("mpeg2dec","mpeg2dec"); element = gst_elementfactory_make ("tee", "tee");
if (!decoder) if (!element)
break; break;
gst_bin_add(GST_BIN(bin), decoder); gst_element_request_pad_by_name (element, "src%d");
gst_bin_remove(GST_BIN(bin), decoder);
gst_bin_add (GST_BIN (bin), element);
gst_bin_remove (GST_BIN (bin), element);
} }
} }