Add initial support for OSSv4. Mixer still needs a bit more love, but even magic...
[platform/upstream/gst-plugins-good.git] / sys / oss4 / oss4-source.c
1 /* GStreamer OSS4 audio source
2  * Copyright (C) 2007-2008 Tim-Philipp Müller <tim centricular net>
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 /**
21  * SECTION:element-oss4src
22  * @short_description: record sound from your sound card using OSS4
23  *
24  * <refsect2>
25  * <para>
26  * This element lets you record sound using the Open Sound System (OSS)
27  * version 4.
28  * </para>
29  * <title>Example pipelines</title>
30  * <para>
31  * <programlisting>
32  * gst-launch -v oss4src ! queue ! audioconvert ! vorbisenc ! oggmux ! filesink location=mymusic.ogg
33  * </programlisting>
34  * will record sound from your sound card using OSS4 and encode it to an
35  * Ogg/Vorbis file (this will only work if your mixer settings are right
36  * and the right inputs areenabled etc.)
37  * </para>
38  * </refsect2>
39  *
40  * Since: 0.10.7
41  */
42
43 /* FIXME: make sure we're not doing ioctls from the app thread (e.g. via the
44  * mixer interface) while recording */
45
46 #ifdef HAVE_CONFIG_H
47 #include "config.h"
48 #endif
49
50 #include <sys/types.h>
51 #include <sys/stat.h>
52 #include <sys/ioctl.h>
53 #include <fcntl.h>
54 #include <errno.h>
55 #include <unistd.h>
56 #include <string.h>
57
58 #include <gst/interfaces/mixer.h>
59 #include <gst/gst-i18n-plugin.h>
60
61 #define NO_LEGACY_MIXER
62 #include "oss4-audio.h"
63 #include "oss4-source.h"
64 #include "oss4-property-probe.h"
65 #include "oss4-soundcard.h"
66
67 #define GST_OSS4_SOURCE_IS_OPEN(src)  (GST_OSS4_SOURCE(src)->fd != -1)
68
69 GST_DEBUG_CATEGORY_EXTERN (oss4src_debug);
70 #define GST_CAT_DEFAULT oss4src_debug
71
72 #define DEFAULT_DEVICE       NULL
73 #define DEFAULT_DEVICE_NAME  NULL
74
75 enum
76 {
77   PROP_0,
78   PROP_DEVICE,
79   PROP_DEVICE_NAME
80 };
81
82 static void gst_oss4_source_init_interfaces (GType type);
83
84 GST_BOILERPLATE_FULL (GstOss4Source, gst_oss4_source, GstAudioSrc,
85     GST_TYPE_AUDIO_SRC, gst_oss4_source_init_interfaces);
86
87 static void gst_oss4_source_get_property (GObject * object, guint prop_id,
88     GValue * value, GParamSpec * pspec);
89 static void gst_oss4_source_set_property (GObject * object, guint prop_id,
90     const GValue * value, GParamSpec * pspec);
91
92 static void gst_oss4_source_dispose (GObject * object);
93 static void gst_oss4_source_finalize (GstOss4Source * osssrc);
94
95 static GstCaps *gst_oss4_source_getcaps (GstBaseSrc * bsrc);
96
97 static gboolean gst_oss4_source_open (GstAudioSrc * asrc,
98     gboolean silent_errors);
99 static gboolean gst_oss4_source_open_func (GstAudioSrc * asrc);
100 static gboolean gst_oss4_source_close (GstAudioSrc * asrc);
101 static gboolean gst_oss4_source_prepare (GstAudioSrc * asrc,
102     GstRingBufferSpec * spec);
103 static gboolean gst_oss4_source_unprepare (GstAudioSrc * asrc);
104 static guint gst_oss4_source_read (GstAudioSrc * asrc, gpointer data,
105     guint length);
106 static guint gst_oss4_source_delay (GstAudioSrc * asrc);
107 static void gst_oss4_source_reset (GstAudioSrc * asrc);
108
109 static void
110 gst_oss4_source_base_init (gpointer g_class)
111 {
112   GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
113   GstPadTemplate *templ;
114
115   gst_element_class_set_details_simple (element_class,
116       "OSS v4 Audio Source", "Source/Audio",
117       "Capture from a sound card via OSS version 4",
118       "Tim-Philipp Müller <tim centricular net>");
119
120   templ = gst_pad_template_new ("src", GST_PAD_SRC, GST_PAD_ALWAYS,
121       gst_oss4_audio_get_template_caps ());
122   gst_element_class_add_pad_template (element_class, templ);
123 }
124 static void
125 gst_oss4_source_class_init (GstOss4SourceClass * klass)
126 {
127   GObjectClass *gobject_class;
128   GstElementClass *gstelement_class;
129   GstBaseSrcClass *gstbasesrc_class;
130   GstBaseAudioSrcClass *gstbaseaudiosrc_class;
131   GstAudioSrcClass *gstaudiosrc_class;
132
133   gobject_class = (GObjectClass *) klass;
134   gstelement_class = (GstElementClass *) klass;
135   gstbasesrc_class = (GstBaseSrcClass *) klass;
136   gstbaseaudiosrc_class = (GstBaseAudioSrcClass *) klass;
137   gstaudiosrc_class = (GstAudioSrcClass *) klass;
138
139   gobject_class->dispose = GST_DEBUG_FUNCPTR (gst_oss4_source_dispose);
140   gobject_class->finalize =
141       (GObjectFinalizeFunc) GST_DEBUG_FUNCPTR (gst_oss4_source_finalize);
142   gobject_class->get_property =
143       GST_DEBUG_FUNCPTR (gst_oss4_source_get_property);
144   gobject_class->set_property =
145       GST_DEBUG_FUNCPTR (gst_oss4_source_set_property);
146
147   gstbasesrc_class->get_caps = GST_DEBUG_FUNCPTR (gst_oss4_source_getcaps);
148
149   gstaudiosrc_class->open = GST_DEBUG_FUNCPTR (gst_oss4_source_open_func);
150   gstaudiosrc_class->prepare = GST_DEBUG_FUNCPTR (gst_oss4_source_prepare);
151   gstaudiosrc_class->unprepare = GST_DEBUG_FUNCPTR (gst_oss4_source_unprepare);
152   gstaudiosrc_class->close = GST_DEBUG_FUNCPTR (gst_oss4_source_close);
153   gstaudiosrc_class->read = GST_DEBUG_FUNCPTR (gst_oss4_source_read);
154   gstaudiosrc_class->delay = GST_DEBUG_FUNCPTR (gst_oss4_source_delay);
155   gstaudiosrc_class->reset = GST_DEBUG_FUNCPTR (gst_oss4_source_reset);
156
157   g_object_class_install_property (gobject_class, PROP_DEVICE,
158       g_param_spec_string ("device", "Device",
159           "OSS4 device (e.g. /dev/oss/hdaudio0/pcm0 or /dev/dspN) "
160           "(NULL = use first available device)",
161           DEFAULT_DEVICE, G_PARAM_READWRITE));
162
163   g_object_class_install_property (gobject_class, PROP_DEVICE_NAME,
164       g_param_spec_string ("device-name", "Device name",
165           "Human-readable name of the sound device", DEFAULT_DEVICE_NAME,
166           G_PARAM_READABLE));
167 }
168
169 static void
170 gst_oss4_source_init (GstOss4Source * osssrc, GstOss4SourceClass * g_class)
171 {
172   const gchar *device;
173
174   device = g_getenv ("AUDIODEV");
175   if (device == NULL)
176     device = DEFAULT_DEVICE;
177
178   osssrc->fd = -1;
179   osssrc->device = g_strdup (device);
180   osssrc->device_name = g_strdup (DEFAULT_DEVICE_NAME);
181   osssrc->device_name = NULL;
182 }
183
184 static void
185 gst_oss4_source_finalize (GstOss4Source * oss)
186 {
187   g_free (oss->device);
188   oss->device = NULL;
189
190   g_list_free (oss->property_probe_list);
191   oss->property_probe_list = NULL;
192
193   G_OBJECT_CLASS (parent_class)->finalize ((GObject *) (oss));
194 }
195
196 static void
197 gst_oss4_source_dispose (GObject * object)
198 {
199   GstOss4Source *oss = GST_OSS4_SOURCE (object);
200
201   if (oss->probed_caps) {
202     gst_caps_unref (oss->probed_caps);
203     oss->probed_caps = NULL;
204   }
205
206   G_OBJECT_CLASS (parent_class)->dispose (object);
207 }
208
209 static void
210 gst_oss4_source_set_property (GObject * object, guint prop_id,
211     const GValue * value, GParamSpec * pspec)
212 {
213   GstOss4Source *oss;
214
215   oss = GST_OSS4_SOURCE (object);
216
217   switch (prop_id) {
218     case PROP_DEVICE:
219       GST_OBJECT_LOCK (oss);
220       if (oss->fd == -1) {
221         g_free (oss->device);
222         oss->device = g_value_dup_string (value);
223         g_free (oss->device_name);
224         oss->device_name = NULL;
225       } else {
226         g_warning ("%s: can't change \"device\" property while audio source "
227             "is open", GST_OBJECT_NAME (oss));
228       }
229       GST_OBJECT_UNLOCK (oss);
230       break;
231     default:
232       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
233       break;
234   }
235 }
236
237 static void
238 gst_oss4_source_get_property (GObject * object, guint prop_id,
239     GValue * value, GParamSpec * pspec)
240 {
241   GstOss4Source *oss;
242
243   oss = GST_OSS4_SOURCE (object);
244
245   switch (prop_id) {
246     case PROP_DEVICE:
247       GST_OBJECT_LOCK (oss);
248       g_value_set_string (value, oss->device);
249       GST_OBJECT_UNLOCK (oss);
250       break;
251     case PROP_DEVICE_NAME:
252       GST_OBJECT_LOCK (oss);
253       /* If device is set, try to retrieve the name even if we're not open */
254       if (oss->fd == -1 && oss->device != NULL) {
255         if (gst_oss4_source_open (GST_AUDIO_SRC (oss), TRUE)) {
256           g_value_set_string (value, oss->device_name);
257           gst_oss4_source_close (GST_AUDIO_SRC (oss));
258         } else {
259           g_value_set_string (value, NULL);
260         }
261       } else {
262         g_value_set_string (value, oss->device_name);
263       }
264       GST_OBJECT_UNLOCK (oss);
265       break;
266     default:
267       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
268       break;
269   }
270 }
271
272 static GstCaps *
273 gst_oss4_source_getcaps (GstBaseSrc * bsrc)
274 {
275   GstOss4Source *oss;
276   GstCaps *caps;
277
278   oss = GST_OSS4_SOURCE (bsrc);
279
280   if (oss->fd == -1) {
281     caps = gst_caps_copy (gst_oss4_audio_get_template_caps ());
282   } else if (oss->probed_caps) {
283     caps = gst_caps_copy (oss->probed_caps);
284   } else {
285     caps = gst_oss4_audio_probe_caps (GST_OBJECT (oss), oss->fd);
286     if (caps != NULL && !gst_caps_is_empty (caps)) {
287       oss->probed_caps = gst_caps_copy (caps);
288     }
289   }
290
291   return caps;
292 }
293
294 /* note: we must not take the object lock here unless we fix up get_property */
295 static gboolean
296 gst_oss4_source_open (GstAudioSrc * asrc, gboolean silent_errors)
297 {
298   GstOss4Source *oss;
299   gchar *device;
300   int mode;
301
302   oss = GST_OSS4_SOURCE (asrc);
303
304   if (oss->device)
305     device = g_strdup (oss->device);
306   else
307     device = gst_oss4_audio_find_device (GST_OBJECT_CAST (oss));
308
309   /* desperate times, desperate measures */
310   if (device == NULL)
311     device = g_strdup ("/dev/dsp0");
312
313   GST_INFO_OBJECT (oss, "Trying to open OSS4 device '%s'", device);
314
315   /* we open in non-blocking mode even if we don't really want to do writes
316    * non-blocking because we can't be sure that this is really a genuine
317    * OSS4 device with well-behaved drivers etc. We really don't want to
318    * hang forever under any circumstances. */
319   oss->fd = open (device, O_RDONLY | O_NONBLOCK, 0);
320   if (oss->fd == -1) {
321     switch (errno) {
322       case EBUSY:
323         goto busy;
324       case EACCES:
325         goto no_permission;
326       default:
327         goto open_failed;
328     }
329   }
330
331   GST_INFO_OBJECT (oss, "Opened device");
332
333   /* Make sure it's OSS4. If it's old OSS, let osssink handle it */
334   if (!gst_oss4_audio_check_version (GST_OBJECT_CAST (oss), oss->fd))
335     goto legacy_oss;
336
337   /* now remove the non-blocking flag. */
338   mode = fcntl (oss->fd, F_GETFL);
339   mode &= ~O_NONBLOCK;
340   if (fcntl (oss->fd, F_SETFL, mode) < 0) {
341     /* some drivers do no support unsetting the non-blocking flag, try to
342      * close/open the device then. This is racy but we error out properly. */
343     GST_WARNING_OBJECT (oss, "failed to unset O_NONBLOCK (buggy driver?), "
344         "will try to re-open device now");
345     gst_oss4_source_close (asrc);
346     if ((oss->fd = open (device, O_RDONLY, 0)) == -1)
347       goto non_block;
348   }
349
350   oss->open_device = device;
351
352   /* not using ENGINEINFO here because it sometimes returns a different and
353    * less useful name than AUDIOINFO for the same device */
354   if (!gst_oss4_property_probe_find_device_name (GST_OBJECT (oss), oss->fd,
355           oss->open_device, &oss->device_name)) {
356     oss->device_name = NULL;
357   }
358
359   return TRUE;
360
361   /* ERRORS */
362 busy:
363   {
364     if (!silent_errors) {
365       GST_ELEMENT_ERROR (oss, RESOURCE, BUSY,
366           (_("Could not open audio device for playback. "
367                   "Device is being used by another application.")), (NULL));
368     }
369     g_free (device);
370     return FALSE;
371   }
372 no_permission:
373   {
374     if (!silent_errors) {
375       GST_ELEMENT_ERROR (oss, RESOURCE, OPEN_READ,
376           (_("Could not open audio device for playback."
377                   "You don't have permission to open the device.")),
378           GST_ERROR_SYSTEM);
379     }
380     g_free (device);
381     return FALSE;
382   }
383 open_failed:
384   {
385     if (!silent_errors) {
386       GST_ELEMENT_ERROR (oss, RESOURCE, OPEN_READ,
387           (_("Could not open audio device for playback.")), GST_ERROR_SYSTEM);
388     }
389     g_free (device);
390     return FALSE;
391   }
392 legacy_oss:
393   {
394     gst_oss4_source_close (asrc);
395     if (!silent_errors) {
396       GST_ELEMENT_ERROR (oss, RESOURCE, OPEN_READ,
397           (_("Could not open audio device for playback."
398                   "This version of the Open Sound System is not supported by this "
399                   "element.")), ("Try the 'osssink' element instead"));
400     }
401     g_free (device);
402     return FALSE;
403   }
404 non_block:
405   {
406     if (!silent_errors) {
407       GST_ELEMENT_ERROR (oss, RESOURCE, SETTINGS, (NULL),
408           ("Unable to set device %s into non-blocking mode: %s",
409               oss->device, g_strerror (errno)));
410     }
411     g_free (device);
412     return FALSE;
413   }
414 }
415
416 static gboolean
417 gst_oss4_source_open_func (GstAudioSrc * asrc)
418 {
419   return gst_oss4_source_open (asrc, FALSE);
420 }
421
422 static void
423 gst_oss4_source_free_mixer_tracks (GstOss4Source * oss)
424 {
425   g_list_foreach (oss->tracks, (GFunc) g_object_unref, NULL);
426   g_list_free (oss->tracks);
427   oss->tracks = NULL;
428 }
429
430 static gboolean
431 gst_oss4_source_close (GstAudioSrc * asrc)
432 {
433   GstOss4Source *oss;
434
435   oss = GST_OSS4_SOURCE (asrc);
436
437   if (oss->fd != -1) {
438     GST_DEBUG_OBJECT (oss, "closing device");
439     close (oss->fd);
440     oss->fd = -1;
441   }
442
443   oss->bytes_per_sample = 0;
444
445   gst_caps_replace (&oss->probed_caps, NULL);
446
447   g_free (oss->open_device);
448   oss->open_device = NULL;
449
450   g_free (oss->device_name);
451   oss->device_name = NULL;
452
453   gst_oss4_source_free_mixer_tracks (oss);
454
455   return TRUE;
456 }
457
458 static gboolean
459 gst_oss4_source_prepare (GstAudioSrc * asrc, GstRingBufferSpec * spec)
460 {
461   GstOss4Source *oss;
462
463   oss = GST_OSS4_SOURCE (asrc);
464
465   if (!gst_oss4_audio_set_format (GST_OBJECT_CAST (oss), oss->fd, spec)) {
466     GST_WARNING_OBJECT (oss, "Couldn't set requested format %" GST_PTR_FORMAT,
467         spec->caps);
468     return FALSE;
469   }
470
471   oss->bytes_per_sample = spec->bytes_per_sample;
472   return TRUE;
473 }
474
475 static gboolean
476 gst_oss4_source_unprepare (GstAudioSrc * asrc)
477 {
478   /* could do a SNDCTL_DSP_HALT, but the OSS manual recommends a close/open,
479    * since HALT won't properly reset some devices, apparently */
480
481   if (!gst_oss4_source_close (asrc))
482     goto couldnt_close;
483
484   if (!gst_oss4_source_open_func (asrc))
485     goto couldnt_reopen;
486
487   return TRUE;
488
489   /* ERRORS */
490 couldnt_close:
491   {
492     GST_DEBUG_OBJECT (asrc, "Couldn't close the audio device");
493     return FALSE;
494   }
495 couldnt_reopen:
496   {
497     GST_DEBUG_OBJECT (asrc, "Couldn't reopen the audio device");
498     return FALSE;
499   }
500 }
501
502 static guint
503 gst_oss4_source_read (GstAudioSrc * asrc, gpointer data, guint length)
504 {
505   GstOss4Source *oss;
506   int n;
507
508   oss = GST_OSS4_SOURCE_CAST (asrc);
509
510   n = read (oss->fd, data, length);
511   GST_LOG_OBJECT (asrc, "%u bytes, %u samples", n, n / oss->bytes_per_sample);
512
513   if (G_UNLIKELY (n < 0)) {
514     switch (errno) {
515       case ENOTSUP:
516       case EACCES:{
517         /* This is the most likely cause, I think */
518         GST_ELEMENT_ERROR (asrc, RESOURCE, READ,
519             (_("Recording is not supported by this audio device.")),
520             ("read: %s (device: %s) (maybe this is an output-only device?)",
521                 g_strerror (errno), oss->open_device));
522         break;
523       }
524       default:{
525         GST_ELEMENT_ERROR (asrc, RESOURCE, READ,
526             (_("Error recording from audio device.")),
527             ("read: %s (device: %s)", g_strerror (errno), oss->open_device));
528         break;
529       }
530     }
531   }
532
533   return (guint) n;
534 }
535
536 static guint
537 gst_oss4_source_delay (GstAudioSrc * asrc)
538 {
539   audio_buf_info info = { 0, };
540   GstOss4Source *oss;
541   guint delay;
542
543   oss = GST_OSS4_SOURCE_CAST (asrc);
544
545   if (ioctl (oss->fd, SNDCTL_DSP_GETISPACE, &info) == -1) {
546     GST_LOG_OBJECT (oss, "GETISPACE failed: %s", g_strerror (errno));
547     return 0;
548   }
549
550   delay = (info.fragstotal * info.fragsize) - info.bytes;
551   GST_LOG_OBJECT (oss, "fragstotal:%d, fragsize:%d, bytes:%d, delay:%d");
552   return delay;
553 }
554
555 static void
556 gst_oss4_source_reset (GstAudioSrc * asrc)
557 {
558   /* There's nothing we can do here really: OSS can't handle access to the
559    * same device/fd from multiple threads and might deadlock or blow up in
560    * other ways if we try an ioctl SNDCTL_DSP_HALT or similar */
561 }
562
563 /* GstMixer interface, which we abuse here for input selection, because we
564  * don't have a proper interface for that and because that's what
565  * gnome-sound-recorder does. */
566
567 /* GstMixerTrack is a plain GObject, so let's just use the GLib macro here */
568 G_DEFINE_TYPE (GstOss4SourceInput, gst_oss4_source_input, GST_TYPE_MIXER_TRACK);
569
570 static void
571 gst_oss4_source_input_class_init (GstOss4SourceInputClass * klass)
572 {
573   /* nothing to do here */
574 }
575
576 static void
577 gst_oss4_source_input_init (GstOss4SourceInput * i)
578 {
579   /* nothing to do here */
580 }
581
582 #if 0
583
584 static void
585 gst_ossmixer_ensure_track_list (GstOssMixer * mixer)
586 {
587   gint i, master = -1;
588
589   g_return_if_fail (mixer->fd != -1);
590
591   if (mixer->tracklist)
592     return;
593
594   /* find master volume */
595   if (mixer->devmask & SOUND_MASK_VOLUME)
596     master = SOUND_MIXER_VOLUME;
597   else if (mixer->devmask & SOUND_MASK_PCM)
598     master = SOUND_MIXER_PCM;
599   else if (mixer->devmask & SOUND_MASK_SPEAKER)
600     master = SOUND_MIXER_SPEAKER;       /* doubtful... */
601   /* else: no master, so we won't set any */
602
603   /* build track list */
604   for (i = 0; i < SOUND_MIXER_NRDEVICES; i++) {
605     if (mixer->devmask & (1 << i)) {
606       GstMixerTrack *track;
607       gboolean input = FALSE, stereo = FALSE, record = FALSE;
608
609       /* track exists, make up capabilities */
610       if (MASK_BIT_IS_SET (mixer->stereomask, i))
611         stereo = TRUE;
612       if (MASK_BIT_IS_SET (mixer->recmask, i))
613         input = TRUE;
614       if (MASK_BIT_IS_SET (mixer->recdevs, i))
615         record = TRUE;
616
617       /* do we want mixer in our list? */
618       if (!((mixer->dir & GST_OSS_MIXER_CAPTURE && input == TRUE) ||
619               (mixer->dir & GST_OSS_MIXER_PLAYBACK && i != SOUND_MIXER_PCM)))
620         /* the PLAYBACK case seems hacky, but that's how 0.8 had it */
621         continue;
622
623       /* add track to list */
624       track = gst_ossmixer_track_new (mixer->fd, i, stereo ? 2 : 1,
625           (record ? GST_MIXER_TRACK_RECORD : 0) |
626           (input ? GST_MIXER_TRACK_INPUT :
627               GST_MIXER_TRACK_OUTPUT) |
628           ((master != i) ? 0 : GST_MIXER_TRACK_MASTER));
629       mixer->tracklist = g_list_append (mixer->tracklist, track);
630     }
631   }
632 }
633
634 /* unused with G_DISABLE_* */
635 static G_GNUC_UNUSED gboolean
636 gst_ossmixer_contains_track (GstOssMixer * mixer, GstOssMixerTrack * osstrack)
637 {
638   const GList *item;
639
640   for (item = mixer->tracklist; item != NULL; item = item->next)
641     if (item->data == osstrack)
642       return TRUE;
643
644   return FALSE;
645 }
646
647 const GList *
648 gst_ossmixer_list_tracks (GstOssMixer * mixer)
649 {
650   gst_ossmixer_ensure_track_list (mixer);
651
652   return (const GList *) mixer->tracklist;
653 }
654
655 void
656 gst_ossmixer_get_volume (GstOssMixer * mixer,
657     GstMixerTrack * track, gint * volumes)
658 {
659   gint volume;
660   GstOssMixerTrack *osstrack = GST_OSSMIXER_TRACK (track);
661
662   g_return_if_fail (mixer->fd != -1);
663   g_return_if_fail (gst_ossmixer_contains_track (mixer, osstrack));
664
665   if (track->flags & GST_MIXER_TRACK_MUTE) {
666     volumes[0] = osstrack->lvol;
667     if (track->num_channels == 2) {
668       volumes[1] = osstrack->rvol;
669     }
670   } else {
671     /* get */
672     if (ioctl (mixer->fd, MIXER_READ (osstrack->track_num), &volume) < 0) {
673       g_warning ("Error getting recording device (%d) volume: %s",
674           osstrack->track_num, g_strerror (errno));
675       volume = 0;
676     }
677
678     osstrack->lvol = volumes[0] = (volume & 0xff);
679     if (track->num_channels == 2) {
680       osstrack->rvol = volumes[1] = ((volume >> 8) & 0xff);
681     }
682   }
683 }
684
685 void
686 gst_ossmixer_set_mute (GstOssMixer * mixer, GstMixerTrack * track,
687     gboolean mute)
688 {
689   int volume;
690   GstOssMixerTrack *osstrack = GST_OSSMIXER_TRACK (track);
691
692   g_return_if_fail (mixer->fd != -1);
693   g_return_if_fail (gst_ossmixer_contains_track (mixer, osstrack));
694
695   if (mute) {
696     volume = 0;
697   } else {
698     volume = (osstrack->lvol & 0xff);
699     if (MASK_BIT_IS_SET (mixer->stereomask, osstrack->track_num)) {
700       volume |= ((osstrack->rvol & 0xff) << 8);
701     }
702   }
703
704   if (ioctl (mixer->fd, MIXER_WRITE (osstrack->track_num), &volume) < 0) {
705     g_warning ("Error setting mixer recording device volume (0x%x): %s",
706         volume, g_strerror (errno));
707     return;
708   }
709
710   if (mute) {
711     track->flags |= GST_MIXER_TRACK_MUTE;
712   } else {
713     track->flags &= ~GST_MIXER_TRACK_MUTE;
714   }
715 }
716 #endif
717
718 static gint
719 gst_oss4_source_mixer_get_current_input (GstOss4Source * oss)
720 {
721   int cur = -1;
722
723   if (ioctl (oss->fd, SNDCTL_DSP_GET_RECSRC, &cur) == -1 || cur < 0)
724     return -1;
725
726   return cur;
727 }
728
729 static const gchar *
730 gst_oss4_source_mixer_update_record_flags (GstOss4Source * oss, gint cur_route)
731 {
732   const gchar *cur_name = "";
733   GList *t;
734
735   for (t = oss->tracks; t != NULL; t = t->next) {
736     GstMixerTrack *track = t->data;
737
738     if (GST_OSS4_SOURCE_INPUT (track)->route == cur_route) {
739       if (!GST_MIXER_TRACK_HAS_FLAG (track, GST_MIXER_TRACK_RECORD)) {
740         track->flags |= GST_MIXER_TRACK_RECORD;
741         /* no point in sending a mixer-record-changes message here */
742       }
743       cur_name = track->label;
744     } else {
745       if (GST_MIXER_TRACK_HAS_FLAG (track, GST_MIXER_TRACK_RECORD)) {
746         track->flags &= ~GST_MIXER_TRACK_RECORD;
747         /* no point in sending a mixer-record-changes message here */
748       }
749     }
750   }
751
752   return cur_name;
753 }
754
755 static const GList *
756 gst_oss4_source_mixer_list_tracks (GstMixer * mixer)
757 {
758   oss_mixer_enuminfo names = { 0, };
759   GstOss4Source *oss;
760   const gchar *cur_name;
761   GList *tracks = NULL;
762   gint i, cur;
763
764   g_return_val_if_fail (mixer != NULL, NULL);
765   g_return_val_if_fail (GST_IS_OSS4_SOURCE (mixer), NULL);
766   g_return_val_if_fail (GST_OSS4_SOURCE_IS_OPEN (mixer), NULL);
767
768   oss = GST_OSS4_SOURCE (mixer);
769
770   if (oss->tracks != NULL && oss->tracks_static)
771     goto done;
772
773   if (ioctl (oss->fd, SNDCTL_DSP_GET_RECSRC_NAMES, &names) == -1)
774     goto get_recsrc_names_error;
775
776   oss->tracks_static = (names.version == 0);
777
778   GST_INFO_OBJECT (oss, "%d inputs (list is static: %s):", names.nvalues,
779       (oss->tracks_static) ? "yes" : "no");
780
781   for (i = 0; i < MIN (names.nvalues, OSS_ENUM_MAXVALUE + 1); ++i) {
782     GstMixerTrack *track;
783
784     track = g_object_new (GST_TYPE_OSS4_SOURCE_INPUT, NULL);
785     track->label = g_strdup (&names.strings[names.strindex[i]]);
786     track->flags = GST_MIXER_TRACK_INPUT;
787     track->num_channels = 2;
788     track->min_volume = 0;
789     track->max_volume = 100;
790     GST_OSS4_SOURCE_INPUT (track)->route = i;
791
792     GST_INFO_OBJECT (oss, " [%d] %s", i, track->label);
793     tracks = g_list_append (tracks, track);
794   }
795
796   gst_oss4_source_free_mixer_tracks (oss);
797   oss->tracks = tracks;
798
799 done:
800
801   /* update RECORD flags */
802   cur = gst_oss4_source_mixer_get_current_input (oss);
803   cur_name = gst_oss4_source_mixer_update_record_flags (oss, cur);
804   GST_DEBUG_OBJECT (oss, "current input route: %d (%s)", cur, cur_name);
805
806   return (const GList *) oss->tracks;
807
808 /* ERRORS */
809 get_recsrc_names_error:
810   {
811     GST_WARNING_OBJECT (oss, "GET_RECSRC_NAMES failed: %s", g_strerror (errno));
812     return NULL;
813   }
814 }
815
816 static void
817 gst_oss4_source_mixer_set_volume (GstMixer * mixer, GstMixerTrack * track,
818     gint * volumes)
819 {
820   GstOss4Source *oss;
821   int new_vol, cur;
822
823   g_return_if_fail (mixer != NULL);
824   g_return_if_fail (track != NULL);
825   g_return_if_fail (GST_IS_MIXER_TRACK (track));
826   g_return_if_fail (GST_IS_OSS4_SOURCE (mixer));
827   g_return_if_fail (GST_OSS4_SOURCE_IS_OPEN (mixer));
828
829   oss = GST_OSS4_SOURCE (mixer);
830
831   cur = gst_oss4_source_mixer_get_current_input (oss);
832   if (cur != GST_OSS4_SOURCE_INPUT (track)->route) {
833     GST_DEBUG_OBJECT (oss, "track not selected input route, ignoring request");
834     return;
835   }
836
837   new_vol = (volumes[1] << 8) | volumes[0];
838   if (ioctl (oss->fd, SNDCTL_DSP_SETRECVOL, &new_vol) == -1) {
839     GST_WARNING_OBJECT (oss, "SETRECVOL failed: %s", g_strerror (errno));
840   }
841 }
842
843 static void
844 gst_oss4_source_mixer_get_volume (GstMixer * mixer, GstMixerTrack * track,
845     gint * volumes)
846 {
847   GstOss4Source *oss;
848   int cur;
849
850   g_return_if_fail (mixer != NULL);
851   g_return_if_fail (GST_IS_OSS4_SOURCE (mixer));
852   g_return_if_fail (GST_OSS4_SOURCE_IS_OPEN (mixer));
853
854   oss = GST_OSS4_SOURCE (mixer);
855
856   cur = gst_oss4_source_mixer_get_current_input (oss);
857   if (cur != GST_OSS4_SOURCE_INPUT (track)->route) {
858     volumes[0] = 0;
859     volumes[1] = 0;
860   } else {
861     int vol = -1;
862
863     if (ioctl (oss->fd, SNDCTL_DSP_GETRECVOL, &vol) == -1 || vol < 0) {
864       GST_WARNING_OBJECT (oss, "GETRECVOL failed: %s", g_strerror (errno));
865       volumes[0] = 100;
866       volumes[1] = 100;
867     } else {
868       volumes[0] = MIN (100, vol & 0xff);
869       volumes[1] = MIN (100, (vol >> 8) & 0xff);
870     }
871   }
872 }
873
874 static void
875 gst_oss4_source_mixer_set_record (GstMixer * mixer, GstMixerTrack * track,
876     gboolean record)
877 {
878   GstOss4Source *oss;
879   const gchar *cur_name;
880   gint cur;
881
882   g_return_if_fail (mixer != NULL);
883   g_return_if_fail (track != NULL);
884   g_return_if_fail (GST_IS_MIXER_TRACK (track));
885   g_return_if_fail (GST_IS_OSS4_SOURCE (mixer));
886   g_return_if_fail (GST_OSS4_SOURCE_IS_OPEN (mixer));
887
888   oss = GST_OSS4_SOURCE (mixer);
889
890   cur = gst_oss4_source_mixer_get_current_input (oss);
891
892   /* stop recording for an input that's not selected anyway => nothing to do */
893   if (!record && cur != GST_OSS4_SOURCE_INPUT (track)->route)
894     goto done;
895
896   /* select recording for an input that's already selected => nothing to do
897    * (or should we mess with the recording volume in this case maybe?) */
898   if (record && cur == GST_OSS4_SOURCE_INPUT (track)->route)
899     goto done;
900
901   /* make current input stop recording: we can't really make an input stop
902    * recording, we can only select an input FOR recording, so we'll just ignore
903    * all requests to stop for now */
904   if (!record) {
905     GST_WARNING_OBJECT (oss, "Can't un-select an input as such, only switch "
906         "to a different input source");
907     /* FIXME: set recording volume to 0 maybe? */
908   } else {
909     int new_route = GST_OSS4_SOURCE_INPUT (track)->route;
910
911     /* select this input for recording */
912
913     if (ioctl (oss->fd, SNDCTL_DSP_SET_RECSRC, &new_route) == -1) {
914       GST_WARNING_OBJECT (oss, "Could not select input %d for recording: %s",
915           new_route, g_strerror (errno));
916     } else {
917       cur = new_route;
918     }
919   }
920
921 done:
922
923   cur_name = gst_oss4_source_mixer_update_record_flags (oss, cur);
924   GST_DEBUG_OBJECT (oss, "active input route: %d (%s)", cur, cur_name);
925 }
926
927 static void
928 gst_oss4_source_mixer_set_mute (GstMixer * mixer, GstMixerTrack * track,
929     gboolean mute)
930 {
931   GstOss4Source *oss;
932
933   g_return_if_fail (mixer != NULL);
934   g_return_if_fail (track != NULL);
935   g_return_if_fail (GST_IS_MIXER_TRACK (track));
936   g_return_if_fail (GST_IS_OSS4_SOURCE (mixer));
937   g_return_if_fail (GST_OSS4_SOURCE_IS_OPEN (mixer));
938
939   oss = GST_OSS4_SOURCE (mixer);
940
941   /* FIXME: implement gst_oss4_source_mixer_set_mute() - what to do here? */
942   /* oss4_mixer_set_mute (mixer->mixer, track, mute); */
943 }
944
945 static void
946 gst_oss4_source_mixer_interface_init (GstMixerClass * klass)
947 {
948   GST_MIXER_TYPE (klass) = GST_MIXER_HARDWARE;
949
950   klass->list_tracks = gst_oss4_source_mixer_list_tracks;
951   klass->set_volume = gst_oss4_source_mixer_set_volume;
952   klass->get_volume = gst_oss4_source_mixer_get_volume;
953   klass->set_mute = gst_oss4_source_mixer_set_mute;
954   klass->set_record = gst_oss4_source_mixer_set_record;
955 }
956
957 /* Implement the horror that is GstImplementsInterface */
958
959 static gboolean
960 gst_oss4_source_mixer_supported (GstImplementsInterface * iface,
961     GType iface_type)
962 {
963   GstOss4Source *oss;
964   gboolean is_open;
965
966   g_return_val_if_fail (GST_IS_OSS4_SOURCE (iface), FALSE);
967   g_return_val_if_fail (iface_type == GST_TYPE_MIXER, FALSE);
968
969   oss = GST_OSS4_SOURCE (iface);
970
971   GST_OBJECT_LOCK (oss);
972   is_open = GST_OSS4_SOURCE_IS_OPEN (iface);
973   GST_OBJECT_UNLOCK (oss);
974
975   return is_open;
976 }
977
978 static void
979 gst_oss4_source_mixer_implements_interface_init (GstImplementsInterfaceClass *
980     klass)
981 {
982   klass->supported = gst_oss4_source_mixer_supported;
983 }
984
985 static void
986 gst_oss4_source_init_interfaces (GType type)
987 {
988   static const GInterfaceInfo implements_iface_info = {
989     (GInterfaceInitFunc) gst_oss4_source_mixer_implements_interface_init,
990     NULL,
991     NULL,
992   };
993   static const GInterfaceInfo mixer_iface_info = {
994     (GInterfaceInitFunc) gst_oss4_source_mixer_interface_init,
995     NULL,
996     NULL,
997   };
998
999   g_type_add_interface_static (type, GST_TYPE_IMPLEMENTS_INTERFACE,
1000       &implements_iface_info);
1001   g_type_add_interface_static (type, GST_TYPE_MIXER, &mixer_iface_info);
1002
1003   gst_oss4_add_property_probe_interface (type);
1004 }