mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
b05796c9d9
Original commit message from CVS: 2005-08-19 Andy Wingo <wingo@pobox.com> * ext/alsa/gstalsamixertrack.h: * ext/alsa/gstalsamixertrack.c: * ext/alsa/gstalsamixeroptions.h: * ext/alsa/gstalsamixeroptions.c: * ext/alsa/gstalsamixer.h: * ext/alsa/gstalsamixer.c: Port to 0.9. * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks. Remove gstalsa.c and alsaclock. No more cruft here.
547 lines
17 KiB
C
547 lines
17 KiB
C
/* ALSA mixer implementation.
|
|
* Copyright (C) 2003 Leif Johnson <leif@ambient.2y.net>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "gstalsamixer.h"
|
|
|
|
|
|
static GstElementDetails gst_alsa_mixer_details =
|
|
GST_ELEMENT_DETAILS ("Alsa Mixer",
|
|
"Generic/Audio",
|
|
"Control sound input and output levels with ALSA",
|
|
"Leif Johnson <leif@ambient.2y.net>");
|
|
|
|
|
|
#define GST_BOILERPLATE_WITH_INTERFACE(type, type_as_function, parent_type, \
|
|
parent_type_as_macro, interface_type, interface_type_as_macro, \
|
|
interface_as_function) \
|
|
\
|
|
static void interface_as_function ## _interface_init (interface_type ## Class *klass); \
|
|
static gboolean interface_as_function ## _supported (type *object, GType iface_type); \
|
|
\
|
|
static void \
|
|
type_as_function ## _implements_interface_init (GstImplementsInterfaceClass *klass) \
|
|
{ \
|
|
klass->supported = (gpointer)interface_as_function ## _supported; \
|
|
} \
|
|
\
|
|
static void \
|
|
type_as_function ## _init_interfaces (GType type) \
|
|
{ \
|
|
static const GInterfaceInfo implements_iface_info = { \
|
|
(GInterfaceInitFunc) type_as_function ## _implements_interface_init, \
|
|
NULL, \
|
|
NULL, \
|
|
}; \
|
|
static const GInterfaceInfo iface_info = { \
|
|
(GInterfaceInitFunc) interface_as_function ## _interface_init, \
|
|
NULL, \
|
|
NULL, \
|
|
}; \
|
|
\
|
|
g_type_add_interface_static (type, GST_TYPE_IMPLEMENTS_INTERFACE, \
|
|
&implements_iface_info); \
|
|
g_type_add_interface_static (type, interface_type_as_macro, &iface_info); \
|
|
} \
|
|
\
|
|
GST_BOILERPLATE_FULL (type, type_as_function, parent_type, \
|
|
parent_type_as_macro, type_as_function ## _init_interfaces)
|
|
|
|
GST_BOILERPLATE_WITH_INTERFACE (GstAlsaMixer, gst_alsa_mixer, GstElement,
|
|
GST_TYPE_ELEMENT, GstMixer, GST_TYPE_MIXER, gst_alsa_mixer);
|
|
|
|
static GstElementStateReturn gst_alsa_mixer_change_state (GstElement * element);
|
|
|
|
/* GstMixer */
|
|
static const GList *gst_alsa_mixer_list_tracks (GstMixer * mixer);
|
|
static void gst_alsa_mixer_set_volume (GstMixer * mixer,
|
|
GstMixerTrack * track, gint * volumes);
|
|
static void gst_alsa_mixer_get_volume (GstMixer * mixer,
|
|
GstMixerTrack * track, gint * volumes);
|
|
static void gst_alsa_mixer_set_record (GstMixer * mixer,
|
|
GstMixerTrack * track, gboolean record);
|
|
static void gst_alsa_mixer_set_mute (GstMixer * mixer,
|
|
GstMixerTrack * track, gboolean mute);
|
|
static void gst_alsa_mixer_set_option (GstMixer * mixer,
|
|
GstMixerOptions * opts, gchar * value);
|
|
static const gchar *gst_alsa_mixer_get_option (GstMixer * mixer,
|
|
GstMixerOptions * opts);
|
|
|
|
static void
|
|
gst_alsa_mixer_base_init (gpointer klass)
|
|
{
|
|
gst_element_class_set_details (GST_ELEMENT_CLASS (klass),
|
|
&gst_alsa_mixer_details);
|
|
}
|
|
|
|
static void
|
|
gst_alsa_mixer_class_init (GstAlsaMixerClass * klass)
|
|
{
|
|
GstElementClass *element_class;
|
|
|
|
element_class = (GstElementClass *) klass;
|
|
|
|
element_class->change_state = gst_alsa_mixer_change_state;
|
|
}
|
|
|
|
static void
|
|
gst_alsa_mixer_init (GstAlsaMixer * mixer)
|
|
{
|
|
mixer->mixer_handle = NULL;
|
|
}
|
|
|
|
static gboolean
|
|
gst_alsa_mixer_open (GstAlsaMixer * mixer)
|
|
{
|
|
gint err, device;
|
|
gchar *nocomma = NULL;
|
|
|
|
g_return_val_if_fail (mixer->mixer_handle == NULL, FALSE);
|
|
|
|
/* open and initialize the mixer device */
|
|
err = snd_mixer_open (&mixer->mixer_handle, 0);
|
|
if (err < 0 || mixer->mixer_handle == NULL) {
|
|
GST_ERROR_OBJECT (GST_OBJECT (mixer), "Cannot open mixer device.");
|
|
mixer->mixer_handle = NULL;
|
|
return FALSE;
|
|
}
|
|
#if 0
|
|
GstAlsa *alsa = GST_ALSA (mixer);
|
|
|
|
if (!strncmp (alsa->device, "hw:", 3))
|
|
nocomma = g_strdup (alsa->device);
|
|
else if (!strncmp (alsa->device, "plughw:", 7))
|
|
nocomma = g_strdup (alsa->device + 4);
|
|
else
|
|
goto error;
|
|
#else
|
|
nocomma = g_strdup ("hw:0");
|
|
#endif
|
|
|
|
if (strchr (nocomma, ','))
|
|
strchr (nocomma, ',')[0] = '\0';
|
|
|
|
if ((err = snd_mixer_attach (mixer->mixer_handle, nocomma)) < 0) {
|
|
GST_ERROR_OBJECT (GST_OBJECT (mixer),
|
|
"Cannot attach mixer to sound device `%s'.", nocomma);
|
|
goto error;
|
|
}
|
|
|
|
if ((err = snd_mixer_selem_register (mixer->mixer_handle, NULL, NULL)) < 0) {
|
|
GST_ERROR_OBJECT (GST_OBJECT (mixer), "Cannot register mixer elements.");
|
|
goto error;
|
|
}
|
|
|
|
if ((err = snd_mixer_load (mixer->mixer_handle)) < 0) {
|
|
GST_ERROR_OBJECT (GST_OBJECT (mixer), "Cannot load mixer settings.");
|
|
goto error;
|
|
}
|
|
|
|
/* I don't know how to get a device name from a mixer handle. So on
|
|
* to the ugly hacks here, then... */
|
|
if (sscanf (nocomma, "hw:%d", &device) == 1) {
|
|
gchar *name;
|
|
|
|
if (!snd_card_get_name (device, &name))
|
|
mixer->cardname = name;
|
|
}
|
|
|
|
g_free (nocomma);
|
|
|
|
return TRUE;
|
|
|
|
error:
|
|
snd_mixer_close (mixer->mixer_handle);
|
|
mixer->mixer_handle = NULL;
|
|
g_free (nocomma);
|
|
return FALSE;
|
|
}
|
|
|
|
static void
|
|
gst_alsa_mixer_close (GstAlsaMixer * mixer)
|
|
{
|
|
if (mixer->mixer_handle == NULL)
|
|
return;
|
|
|
|
if (mixer->cardname) {
|
|
free (mixer->cardname);
|
|
mixer->cardname = NULL;
|
|
}
|
|
|
|
snd_mixer_close (mixer->mixer_handle);
|
|
mixer->mixer_handle = NULL;
|
|
}
|
|
|
|
static void
|
|
gst_alsa_mixer_build_list (GstAlsaMixer * mixer)
|
|
{
|
|
gint i, count;
|
|
snd_mixer_elem_t *element;
|
|
GstMixerTrack *track;
|
|
GstMixerOptions *opts;
|
|
const GList *templates;
|
|
GstPadDirection dir = GST_PAD_UNKNOWN;
|
|
gboolean first = TRUE;
|
|
|
|
g_return_if_fail (mixer->mixer_handle != NULL);
|
|
|
|
/* find direction */
|
|
templates =
|
|
gst_element_class_get_pad_template_list (GST_ELEMENT_GET_CLASS (mixer));
|
|
if (templates)
|
|
dir = GST_PAD_TEMPLATE (templates->data)->direction;
|
|
|
|
count = snd_mixer_get_count (mixer->mixer_handle);
|
|
element = snd_mixer_first_elem (mixer->mixer_handle);
|
|
|
|
/* build track list */
|
|
for (i = 0; i < count; i++) {
|
|
GList *item;
|
|
gint channels = 0, samename = 0;
|
|
gint flags = GST_MIXER_TRACK_OUTPUT;
|
|
gboolean got_it = FALSE;
|
|
|
|
if (snd_mixer_selem_has_capture_switch (element)) {
|
|
if (dir != GST_PAD_SRC && dir != GST_PAD_UNKNOWN)
|
|
goto next;
|
|
flags = GST_MIXER_TRACK_INPUT;
|
|
} else {
|
|
if (dir != GST_PAD_SINK && dir != GST_PAD_UNKNOWN)
|
|
goto next;
|
|
}
|
|
|
|
/* prevent dup names */
|
|
for (item = mixer->tracklist; item != NULL; item = item->next) {
|
|
snd_mixer_elem_t *temp;
|
|
|
|
if (GST_IS_ALSA_MIXER_OPTIONS (item->data))
|
|
temp = GST_ALSA_MIXER_OPTIONS (item->data)->element;
|
|
else
|
|
temp = GST_ALSA_MIXER_TRACK (item->data)->element;
|
|
|
|
if (!strcmp (snd_mixer_selem_get_name (element),
|
|
snd_mixer_selem_get_name (temp)))
|
|
samename++;
|
|
}
|
|
|
|
if (snd_mixer_selem_has_capture_volume (element)) {
|
|
while (snd_mixer_selem_has_capture_channel (element, channels))
|
|
channels++;
|
|
track = gst_alsa_mixer_track_new (element, samename,
|
|
i, channels, flags, GST_ALSA_MIXER_TRACK_CAPTURE);
|
|
mixer->tracklist = g_list_append (mixer->tracklist, track);
|
|
got_it = TRUE;
|
|
|
|
/* there might be another volume slider; make that playback */
|
|
flags &= ~GST_MIXER_TRACK_INPUT;
|
|
flags |= GST_MIXER_TRACK_OUTPUT;
|
|
}
|
|
|
|
if (snd_mixer_selem_has_playback_volume (element)) {
|
|
while (snd_mixer_selem_has_playback_channel (element, channels))
|
|
channels++;
|
|
if (first) {
|
|
first = FALSE;
|
|
flags |= GST_MIXER_TRACK_MASTER;
|
|
}
|
|
track = gst_alsa_mixer_track_new (element, samename,
|
|
i, channels, flags, GST_ALSA_MIXER_TRACK_PLAYBACK);
|
|
mixer->tracklist = g_list_append (mixer->tracklist, track);
|
|
got_it = TRUE;
|
|
}
|
|
|
|
if (snd_mixer_selem_is_enumerated (element)) {
|
|
opts = gst_alsa_mixer_options_new (element, i);
|
|
mixer->tracklist = g_list_append (mixer->tracklist, opts);
|
|
got_it = TRUE;
|
|
}
|
|
|
|
if (!got_it) {
|
|
if (flags == GST_MIXER_TRACK_OUTPUT &&
|
|
snd_mixer_selem_has_playback_switch (element)) {
|
|
/* simple mute switch */
|
|
track = gst_alsa_mixer_track_new (element, samename,
|
|
i, 0, flags, GST_ALSA_MIXER_TRACK_PLAYBACK);
|
|
mixer->tracklist = g_list_append (mixer->tracklist, track);
|
|
}
|
|
}
|
|
|
|
next:
|
|
element = snd_mixer_elem_next (element);
|
|
}
|
|
}
|
|
|
|
static void
|
|
gst_alsa_mixer_free_list (GstAlsaMixer * mixer)
|
|
{
|
|
g_return_if_fail (mixer->mixer_handle != NULL);
|
|
|
|
g_list_foreach (mixer->tracklist, (GFunc) g_object_unref, NULL);
|
|
g_list_free (mixer->tracklist);
|
|
mixer->tracklist = NULL;
|
|
}
|
|
|
|
static GstElementStateReturn
|
|
gst_alsa_mixer_change_state (GstElement * element)
|
|
{
|
|
GstAlsaMixer *this;
|
|
|
|
g_return_val_if_fail (element != NULL, FALSE);
|
|
this = GST_ALSA_MIXER (element);
|
|
|
|
switch (GST_STATE_TRANSITION (element)) {
|
|
case GST_STATE_NULL_TO_READY:
|
|
if (gst_alsa_mixer_open (this))
|
|
gst_alsa_mixer_build_list (this);
|
|
break;
|
|
case GST_STATE_READY_TO_NULL:
|
|
if (this->mixer_handle != NULL) {
|
|
gst_alsa_mixer_free_list (this);
|
|
gst_alsa_mixer_close (this);
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
if (GST_ELEMENT_CLASS (parent_class)->change_state)
|
|
return GST_ELEMENT_CLASS (parent_class)->change_state (element);
|
|
|
|
return GST_STATE_SUCCESS;
|
|
}
|
|
|
|
/*** INTERFACE IMPLEMENTATION *************************************************/
|
|
|
|
static void
|
|
gst_alsa_mixer_interface_init (GstMixerClass * klass)
|
|
{
|
|
GST_MIXER_TYPE (klass) = GST_MIXER_HARDWARE;
|
|
|
|
/* set up the interface hooks */
|
|
klass->list_tracks = gst_alsa_mixer_list_tracks;
|
|
klass->set_volume = gst_alsa_mixer_set_volume;
|
|
klass->get_volume = gst_alsa_mixer_get_volume;
|
|
klass->set_mute = gst_alsa_mixer_set_mute;
|
|
klass->set_record = gst_alsa_mixer_set_record;
|
|
klass->set_option = gst_alsa_mixer_set_option;
|
|
klass->get_option = gst_alsa_mixer_get_option;
|
|
}
|
|
|
|
gboolean
|
|
gst_alsa_mixer_supported (GstAlsaMixer * object, GType iface_type)
|
|
{
|
|
g_assert (iface_type == GST_TYPE_MIXER);
|
|
|
|
return (object->mixer_handle != NULL);
|
|
}
|
|
|
|
static const GList *
|
|
gst_alsa_mixer_list_tracks (GstMixer * mixer)
|
|
{
|
|
GstAlsaMixer *alsa_mixer = GST_ALSA_MIXER (mixer);
|
|
|
|
if (!alsa_mixer->mixer_handle)
|
|
return NULL;
|
|
|
|
return (const GList *) alsa_mixer->tracklist;
|
|
}
|
|
|
|
static void
|
|
gst_alsa_mixer_update (GstAlsaMixer * alsa_mixer,
|
|
GstAlsaMixerTrack * alsa_track)
|
|
{
|
|
GstMixerTrack *track;
|
|
int v = 0;
|
|
|
|
snd_mixer_handle_events (alsa_mixer->mixer_handle);
|
|
if (!alsa_track)
|
|
return;
|
|
track = (GstMixerTrack *) alsa_track;
|
|
|
|
/* Any updates in flags? */
|
|
if (snd_mixer_selem_has_playback_switch (alsa_track->element)) {
|
|
snd_mixer_selem_get_playback_switch (alsa_track->element, 0, &v);
|
|
if (v)
|
|
track->flags &= ~GST_MIXER_TRACK_MUTE;
|
|
else
|
|
track->flags |= GST_MIXER_TRACK_MUTE;
|
|
}
|
|
if (alsa_track->alsa_flags & GST_ALSA_MIXER_TRACK_CAPTURE) {
|
|
snd_mixer_selem_get_capture_switch (alsa_track->element, 0, &v);
|
|
if (!v)
|
|
track->flags &= ~GST_MIXER_TRACK_RECORD;
|
|
else
|
|
track->flags |= GST_MIXER_TRACK_RECORD;
|
|
}
|
|
}
|
|
|
|
static void
|
|
gst_alsa_mixer_get_volume (GstMixer * mixer,
|
|
GstMixerTrack * track, gint * volumes)
|
|
{
|
|
gint i;
|
|
GstAlsaMixerTrack *alsa_track = (GstAlsaMixerTrack *) track;
|
|
|
|
g_return_if_fail (GST_ALSA_MIXER (mixer)->mixer_handle != NULL);
|
|
|
|
gst_alsa_mixer_update (GST_ALSA_MIXER (mixer), alsa_track);
|
|
|
|
if (track->flags & GST_MIXER_TRACK_MUTE &&
|
|
!snd_mixer_selem_has_playback_switch (alsa_track->element)) {
|
|
for (i = 0; i < track->num_channels; i++)
|
|
volumes[i] = alsa_track->volumes[i];
|
|
} else {
|
|
for (i = 0; i < track->num_channels; i++) {
|
|
long tmp = 0;
|
|
|
|
if (alsa_track->alsa_flags & GST_ALSA_MIXER_TRACK_PLAYBACK) {
|
|
snd_mixer_selem_get_playback_volume (alsa_track->element, i, &tmp);
|
|
} else if (alsa_track->alsa_flags & GST_ALSA_MIXER_TRACK_CAPTURE) {
|
|
snd_mixer_selem_get_capture_volume (alsa_track->element, i, &tmp);
|
|
}
|
|
if (!(track->flags & GST_MIXER_TRACK_MUTE)) {
|
|
volumes[i] = (gint) tmp;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
static void
|
|
gst_alsa_mixer_set_volume (GstMixer * mixer,
|
|
GstMixerTrack * track, gint * volumes)
|
|
{
|
|
gint i;
|
|
GstAlsaMixerTrack *alsa_track = (GstAlsaMixerTrack *) track;
|
|
|
|
g_return_if_fail (GST_ALSA_MIXER (mixer)->mixer_handle != NULL);
|
|
|
|
gst_alsa_mixer_update (GST_ALSA_MIXER (mixer), alsa_track);
|
|
|
|
/* only set the volume with ALSA lib if the track isn't muted. */
|
|
for (i = 0; i < track->num_channels; i++) {
|
|
alsa_track->volumes[i] = volumes[i];
|
|
|
|
if (!(track->flags & GST_MIXER_TRACK_MUTE) ||
|
|
snd_mixer_selem_has_playback_switch (alsa_track->element)) {
|
|
if (alsa_track->alsa_flags & GST_ALSA_MIXER_TRACK_PLAYBACK) {
|
|
snd_mixer_selem_set_playback_volume (alsa_track->element, i,
|
|
(long) volumes[i]);
|
|
} else if (alsa_track->alsa_flags & GST_ALSA_MIXER_TRACK_CAPTURE) {
|
|
snd_mixer_selem_set_capture_volume (alsa_track->element, i,
|
|
(long) volumes[i]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
static void
|
|
gst_alsa_mixer_set_mute (GstMixer * mixer, GstMixerTrack * track, gboolean mute)
|
|
{
|
|
gint i;
|
|
GstAlsaMixerTrack *alsa_track = (GstAlsaMixerTrack *) track;
|
|
|
|
g_return_if_fail (GST_ALSA_MIXER (mixer)->mixer_handle != NULL);
|
|
|
|
gst_alsa_mixer_update (GST_ALSA_MIXER (mixer), alsa_track);
|
|
|
|
if (mute) {
|
|
track->flags |= GST_MIXER_TRACK_MUTE;
|
|
} else {
|
|
track->flags &= ~GST_MIXER_TRACK_MUTE;
|
|
}
|
|
|
|
if (snd_mixer_selem_has_playback_switch (alsa_track->element)) {
|
|
snd_mixer_selem_set_playback_switch_all (alsa_track->element, mute ? 0 : 1);
|
|
} else {
|
|
for (i = 0; i < track->num_channels; i++) {
|
|
long vol = mute ? 0 : alsa_track->volumes[i];
|
|
|
|
if (alsa_track->alsa_flags & GST_ALSA_MIXER_TRACK_CAPTURE) {
|
|
snd_mixer_selem_set_capture_volume (alsa_track->element, i, vol);
|
|
} else if (alsa_track->alsa_flags & GST_ALSA_MIXER_TRACK_PLAYBACK) {
|
|
snd_mixer_selem_set_playback_volume (alsa_track->element, i, vol);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
static void
|
|
gst_alsa_mixer_set_record (GstMixer * mixer,
|
|
GstMixerTrack * track, gboolean record)
|
|
{
|
|
GstAlsaMixerTrack *alsa_track = (GstAlsaMixerTrack *) track;
|
|
|
|
g_return_if_fail (GST_ALSA_MIXER (mixer)->mixer_handle != NULL);
|
|
|
|
gst_alsa_mixer_update (GST_ALSA_MIXER (mixer), alsa_track);
|
|
|
|
if (record) {
|
|
track->flags |= GST_MIXER_TRACK_RECORD;
|
|
} else {
|
|
track->flags &= ~GST_MIXER_TRACK_RECORD;
|
|
}
|
|
|
|
snd_mixer_selem_set_capture_switch_all (alsa_track->element, record ? 1 : 0);
|
|
}
|
|
|
|
static void
|
|
gst_alsa_mixer_set_option (GstMixer * mixer,
|
|
GstMixerOptions * opts, gchar * value)
|
|
{
|
|
gint idx = -1, n = 0;
|
|
GList *item;
|
|
GstAlsaMixerOptions *alsa_opts = (GstAlsaMixerOptions *) opts;
|
|
|
|
g_return_if_fail (GST_ALSA_MIXER (mixer)->mixer_handle != NULL);
|
|
|
|
gst_alsa_mixer_update (GST_ALSA_MIXER (mixer), NULL);
|
|
|
|
for (item = opts->values; item != NULL; item = item->next, n++) {
|
|
if (!strcmp (item->data, value)) {
|
|
idx = n;
|
|
break;
|
|
}
|
|
}
|
|
if (idx == -1)
|
|
return;
|
|
|
|
snd_mixer_selem_set_enum_item (alsa_opts->element, 0, idx);
|
|
}
|
|
|
|
static const gchar *
|
|
gst_alsa_mixer_get_option (GstMixer * mixer, GstMixerOptions * opts)
|
|
{
|
|
GstAlsaMixerOptions *alsa_opts = (GstAlsaMixerOptions *) opts;
|
|
gint ret;
|
|
guint idx;
|
|
|
|
g_return_val_if_fail (GST_ALSA_MIXER (mixer)->mixer_handle != NULL, NULL);
|
|
|
|
gst_alsa_mixer_update (GST_ALSA_MIXER (mixer), NULL);
|
|
|
|
ret = snd_mixer_selem_get_enum_item (alsa_opts->element, 0, &idx);
|
|
if (ret == 0)
|
|
return g_list_nth_data (opts->values, idx);
|
|
else
|
|
return snd_strerror (ret); /* feeble attempt at error handling */
|
|
}
|