Added gst-plugins-base-subtitles0.10-0.10.34 for Meego Harmattan 1.2
[mafwsubrenderer] / gst-plugins-base-subtitles0.10 / ext / alsa / gstalsadeviceprobe.c
1 /* Copyright (C) 2001 CodeFactory AB
2  * Copyright (C) 2001 Thomas Nyberg <thomas@codefactory.se>
3  * Copyright (C) 2001-2002 Andy Wingo <apwingo@eos.ncsu.edu>
4  * Copyright (C) 2003 Benjamin Otte <in7y118@public.uni-hamburg.de>
5  * Copyright (C) 2005 Tim-Philipp Müller <tim centricular net>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the Free
19  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
25
26 #include "gstalsadeviceprobe.h"
27 #include "gst/interfaces/propertyprobe.h"
28
29 static const GList *
30 gst_alsa_device_property_probe_get_properties (GstPropertyProbe * probe)
31 {
32   GObjectClass *klass = G_OBJECT_GET_CLASS (probe);
33   static GList *list = NULL;
34
35   /* well, not perfect, but better than no locking at all.
36    * In the worst case we leak a list node, so who cares? */
37   GST_CLASS_LOCK (GST_OBJECT_CLASS (klass));
38
39   if (!list) {
40     GParamSpec *pspec;
41
42     pspec = g_object_class_find_property (klass, "device");
43     list = g_list_append (NULL, pspec);
44   }
45
46   GST_CLASS_UNLOCK (GST_OBJECT_CLASS (klass));
47
48   return list;
49 }
50
51 static GList *
52 gst_alsa_get_device_list (snd_pcm_stream_t stream)
53 {
54   snd_ctl_t *handle;
55   int card, dev;
56   snd_ctl_card_info_t *info;
57   snd_pcm_info_t *pcminfo;
58   gboolean mixer = (stream == -1);
59   GList *list = NULL;
60
61   if (stream == -1)
62     stream = 0;
63
64   snd_ctl_card_info_malloc (&info);
65   snd_pcm_info_malloc (&pcminfo);
66   card = -1;
67
68   if (snd_card_next (&card) < 0 || card < 0) {
69     /* no soundcard found */
70     GST_WARNING ("No soundcard found");
71     goto beach;
72   }
73
74   while (card >= 0) {
75     gchar name[32];
76
77     g_snprintf (name, sizeof (name), "hw:%d", card);
78     if (snd_ctl_open (&handle, name, 0) < 0) {
79       goto next_card;
80     }
81     if (snd_ctl_card_info (handle, info) < 0) {
82       snd_ctl_close (handle);
83       goto next_card;
84     }
85
86     if (mixer) {
87       list = g_list_append (list, g_strdup (name));
88     } else {
89       dev = -1;
90       while (1) {
91         gchar *gst_device;
92
93         snd_ctl_pcm_next_device (handle, &dev);
94
95         if (dev < 0)
96           break;
97         snd_pcm_info_set_device (pcminfo, dev);
98         snd_pcm_info_set_subdevice (pcminfo, 0);
99         snd_pcm_info_set_stream (pcminfo, stream);
100         if (snd_ctl_pcm_info (handle, pcminfo) < 0) {
101           continue;
102         }
103
104         gst_device = g_strdup_printf ("hw:%d,%d", card, dev);
105         list = g_list_append (list, gst_device);
106       }
107     }
108     snd_ctl_close (handle);
109   next_card:
110     if (snd_card_next (&card) < 0) {
111       break;
112     }
113   }
114
115 beach:
116   snd_ctl_card_info_free (info);
117   snd_pcm_info_free (pcminfo);
118
119   return list;
120 }
121
122 static void
123 gst_alsa_device_property_probe_probe_property (GstPropertyProbe * probe,
124     guint prop_id, const GParamSpec * pspec)
125 {
126   if (!g_str_equal (pspec->name, "device")) {
127     G_OBJECT_WARN_INVALID_PROPERTY_ID (probe, prop_id, pspec);
128   }
129 }
130
131 static gboolean
132 gst_alsa_device_property_probe_needs_probe (GstPropertyProbe * probe,
133     guint prop_id, const GParamSpec * pspec)
134 {
135   /* don't cache probed data */
136   return TRUE;
137 }
138
139 static GValueArray *
140 gst_alsa_device_property_probe_get_values (GstPropertyProbe * probe,
141     guint prop_id, const GParamSpec * pspec)
142 {
143   GstElementClass *klass;
144   const GList *templates;
145   snd_pcm_stream_t mode = -1;
146   GValueArray *array;
147   GValue value = { 0, };
148   GList *l, *list;
149
150   if (!g_str_equal (pspec->name, "device")) {
151     G_OBJECT_WARN_INVALID_PROPERTY_ID (probe, prop_id, pspec);
152     return NULL;
153   }
154
155   klass = GST_ELEMENT_GET_CLASS (GST_ELEMENT (probe));
156
157   /* I'm pretty sure ALSA has a good way to do this. However, their cool
158    * auto-generated documentation is pretty much useless if you try to
159    * do function-wise look-ups. */
160   /* we assume one pad template at max [zero=mixer] */
161   templates = gst_element_class_get_pad_template_list (klass);
162   if (templates) {
163     if (GST_PAD_TEMPLATE_DIRECTION (templates->data) == GST_PAD_SRC)
164       mode = SND_PCM_STREAM_CAPTURE;
165     else
166       mode = SND_PCM_STREAM_PLAYBACK;
167   }
168
169   list = gst_alsa_get_device_list (mode);
170
171   if (list == NULL) {
172     GST_LOG_OBJECT (probe, "No devices found");
173     return NULL;
174   }
175
176   array = g_value_array_new (g_list_length (list));
177   g_value_init (&value, G_TYPE_STRING);
178   for (l = list; l != NULL; l = l->next) {
179     GST_LOG_OBJECT (probe, "Found device: %s", (gchar *) l->data);
180     g_value_take_string (&value, (gchar *) l->data);
181     l->data = NULL;
182     g_value_array_append (array, &value);
183   }
184   g_value_unset (&value);
185   g_list_free (list);
186
187   return array;
188 }
189
190 static void
191 gst_alsa_property_probe_interface_init (GstPropertyProbeInterface * iface)
192 {
193   iface->get_properties = gst_alsa_device_property_probe_get_properties;
194   iface->probe_property = gst_alsa_device_property_probe_probe_property;
195   iface->needs_probe = gst_alsa_device_property_probe_needs_probe;
196   iface->get_values = gst_alsa_device_property_probe_get_values;
197 }
198
199 void
200 gst_alsa_type_add_device_property_probe_interface (GType type)
201 {
202   static const GInterfaceInfo probe_iface_info = {
203     (GInterfaceInitFunc) gst_alsa_property_probe_interface_init,
204     NULL,
205     NULL,
206   };
207
208   g_type_add_interface_static (type, GST_TYPE_PROPERTY_PROBE,
209       &probe_iface_info);
210 }