1 | /* GStreamer |
---|
2 | * Copyright (C) 2004 Wim Taymans <wim@fluendo.com> |
---|
3 | * |
---|
4 | * This library is free software; you can redistribute it and/or |
---|
5 | * modify it under the terms of the GNU General Public |
---|
6 | * License as published by the Free Software Foundation; either |
---|
7 | * version 2 of the License, or (at your option) any later version. |
---|
8 | * |
---|
9 | * This library is distributed in the hope that it will be useful, |
---|
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
12 | * General Public License for more details. |
---|
13 | * |
---|
14 | * You should have received a copy of the GNU General Public |
---|
15 | * License along with this library; if not, write to the Free |
---|
16 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
17 | */ |
---|
18 | |
---|
19 | #include <unistd.h> |
---|
20 | |
---|
21 | #include <gst/gst.h> |
---|
22 | |
---|
23 | gint |
---|
24 | main (gint argc, gchar ** argv) |
---|
25 | { |
---|
26 | GstElement *pipeline, *src, *id1, *id2, *sink; |
---|
27 | |
---|
28 | gst_init (&argc, &argv); |
---|
29 | |
---|
30 | g_print ("setting up...\n"); |
---|
31 | /* setup pipeline */ |
---|
32 | pipeline = gst_element_factory_make ("pipeline", NULL); |
---|
33 | g_assert (pipeline); |
---|
34 | src = gst_element_factory_make ("fakesrc", NULL); |
---|
35 | g_assert (src); |
---|
36 | id1 = gst_element_factory_make ("identity", NULL); |
---|
37 | g_assert (id1); |
---|
38 | id2 = gst_element_factory_make ("identity", NULL); |
---|
39 | g_assert (id2); |
---|
40 | g_object_set (G_OBJECT (id2), "loop-based", TRUE, NULL); |
---|
41 | |
---|
42 | sink = gst_element_factory_make ("fakesink", NULL); |
---|
43 | g_assert (sink); |
---|
44 | |
---|
45 | gst_bin_add_many (GST_BIN (pipeline), src, id1, id2, sink, NULL); |
---|
46 | |
---|
47 | /* link is not accounted for here... */ |
---|
48 | gst_element_link_pads (id1, "src", id2, "sink"); |
---|
49 | |
---|
50 | gst_element_link_pads (src, "src", id1, "sink"); |
---|
51 | gst_element_link_pads (id2, "src", sink, "sink"); |
---|
52 | |
---|
53 | if (gst_element_set_state (pipeline, GST_STATE_PLAYING) != GST_STATE_SUCCESS) |
---|
54 | g_assert_not_reached (); |
---|
55 | |
---|
56 | g_print ("running...\n"); |
---|
57 | /* fill queue */ |
---|
58 | gst_bin_iterate (GST_BIN (pipeline)); |
---|
59 | |
---|
60 | g_print ("cleaning up...\n"); |
---|
61 | gst_object_unref (GST_OBJECT (pipeline)); |
---|
62 | src = id1 = id2 = sink = pipeline = NULL; |
---|
63 | |
---|
64 | g_print ("done.\n"); |
---|
65 | return 0; |
---|
66 | } |
---|