Tizen 2.0 Release
[framework/multimedia/gst-plugins-good0.10.git] / tests / examples / pulse / pulse.c
1 /* GStreamer
2  * Copyright (C) 2010 Wim Taymans <wim.taymans at gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library 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  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include <gst/gst.h>
21
22 #include <gst/interfaces/propertyprobe.h>
23
24 static void
25 test_element (const gchar * name)
26 {
27   GstElement *element;
28   GstPropertyProbe *probe = NULL;
29   const GParamSpec *pspec = NULL;
30   GValueArray *array = NULL;
31   guint i;
32
33   g_print ("testing element %s\n", name);
34   element = gst_element_factory_make (name, NULL);
35   g_assert (element);
36
37   gst_element_set_state (element, GST_STATE_READY);
38   probe = GST_PROPERTY_PROBE (element);
39   pspec = gst_property_probe_get_property (probe, "device");
40
41   array = gst_property_probe_probe_and_get_values (probe, pspec);
42   g_assert (array);
43
44   for (i = 0; i < array->n_values; i++) {
45     GValue *device = NULL;
46     gchar *name = NULL;
47
48     device = g_value_array_get_nth (array, i);
49     g_object_set_property (G_OBJECT (element), "device", device);
50     g_object_get (G_OBJECT (element), "device-name", &name, NULL);
51
52     g_print ("device: %s (%s)\n", g_value_get_string (device),
53         GST_STR_NULL (name));
54   }
55   g_value_array_free (array);
56
57   gst_element_set_state (element, GST_STATE_NULL);
58   gst_object_unref (GST_OBJECT (element));
59 }
60
61 int
62 main (int argc, char *argv[])
63 {
64   gst_init (&argc, &argv);
65
66   test_element ("pulsesink");
67   test_element ("pulsesrc");
68
69   return 0;
70 }