mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
f8e79bdf86
Original commit message from CVS: 2005-06-28 Andy Wingo <wingo@pobox.com> * *.c: Don't cast to GST_OBJECT when reffing or unreffing. Large source-munging commit!!!
61 lines
1.7 KiB
C
61 lines
1.7 KiB
C
|
|
#include <gst/gst.h>
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
GstElement *src, *sink, *enc, *tee;
|
|
GstElement *pipeline;
|
|
int i;
|
|
|
|
|
|
gst_init (&argc, &argv);
|
|
pipeline = gst_element_factory_make ("pipeline", "pipeline");
|
|
|
|
src = gst_element_factory_make ("fakesrc", "src");
|
|
g_assert (src);
|
|
tee = gst_element_factory_make ("tee", "tee1");
|
|
g_assert (tee);
|
|
enc = gst_element_factory_make ("identity", "enc");
|
|
g_assert (enc);
|
|
sink = gst_element_factory_make ("fakesink", "sink");
|
|
g_assert (sink);
|
|
|
|
gst_bin_add_many (GST_BIN (pipeline), src, tee, enc, sink, NULL);
|
|
if (!gst_element_link_many (src, tee, enc, sink, NULL))
|
|
g_assert_not_reached ();
|
|
if (gst_element_set_state (pipeline, GST_STATE_PLAYING) != GST_STATE_SUCCESS)
|
|
g_assert_not_reached ();
|
|
|
|
for (i = 0; i < 5; i++) {
|
|
if (!gst_bin_iterate (GST_BIN (pipeline)))
|
|
g_assert_not_reached ();
|
|
g_print ("%d\n", i);
|
|
}
|
|
|
|
if (gst_element_set_state (pipeline, GST_STATE_PAUSED) != GST_STATE_SUCCESS)
|
|
g_assert_not_reached ();
|
|
gst_element_unlink_many (tee, enc, sink, NULL);
|
|
gst_bin_remove_many (GST_BIN (pipeline), enc, sink, NULL);
|
|
|
|
enc = gst_element_factory_make ("identity", "enc");
|
|
g_assert (enc);
|
|
sink = gst_element_factory_make ("fakesink", "sink");
|
|
g_assert (sink);
|
|
gst_bin_add_many (GST_BIN (pipeline), enc, sink, NULL);
|
|
if (!gst_element_link_many (tee, enc, sink, NULL))
|
|
g_assert_not_reached ();
|
|
if (gst_element_set_state (pipeline, GST_STATE_PLAYING) != GST_STATE_SUCCESS)
|
|
g_assert_not_reached ();
|
|
|
|
for (i = 5; i < 10; i++) {
|
|
if (!gst_bin_iterate (GST_BIN (pipeline)))
|
|
g_assert_not_reached ();
|
|
g_print ("%d\n", i);
|
|
}
|
|
g_print ("cleaning up...\n");
|
|
gst_object_unref (pipeline);
|
|
|
|
g_print ("done.\n");
|
|
return 0;
|
|
}
|