- Add descriptions to various PCM plugins, so they're visible in aplay -L

This commit is contained in:
Lubomir Rintel 2008-03-09 15:50:49 +00:00
parent 811cb8f3ff
commit 1a7b8879e5
7 changed files with 39 additions and 1 deletions

View File

@ -1,6 +1,6 @@
Name: alsa-plugins Name: alsa-plugins
Version: 1.0.16 Version: 1.0.16
Release: 1%{?dist} Release: 2%{?dist}
Summary: The Advanced Linux Sound Architecture (ALSA) Plugins Summary: The Advanced Linux Sound Architecture (ALSA) Plugins
# All packages are LGPLv2+ with the exception of samplerate which is GPLv2+ # All packages are LGPLv2+ with the exception of samplerate which is GPLv2+
License: GPLv2+ and LGPLv2+ License: GPLv2+ and LGPLv2+
@ -171,6 +171,9 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/alsa-lib/libasound_module_pcm_vdownmix.so %{_libdir}/alsa-lib/libasound_module_pcm_vdownmix.so
%changelog %changelog
* Sun Mar 09 2008 Lubomir Kundrak <lkundrak@redhat.com> - 1.0.16-2
- Add descriptions to various PCM plugins, so they're visible in aplay -L
* Sat Mar 08 2008 Lubomir Kundrak <lkundrak@redhat.com> - 1.0.16-1 * Sat Mar 08 2008 Lubomir Kundrak <lkundrak@redhat.com> - 1.0.16-1
- New upstream, dropping upstreamed patches - New upstream, dropping upstreamed patches
- Do not assert fail when pulseaudio is unavailable (#435148) - Do not assert fail when pulseaudio is unavailable (#435148)

View File

@ -1,4 +1,5 @@
# The jack plugin configuration # The jack plugin configuration
# $Id: jack.conf,v 1.2 2008/03/09 15:50:49 lkundrak Exp $
pcm.jack { pcm.jack {
type jack type jack
@ -10,4 +11,7 @@ pcm.jack {
0 alsa_pcm:capture_1 0 alsa_pcm:capture_1
1 alsa_pcm:pcapture_1 1 alsa_pcm:pcapture_1
} }
hint {
description "JACK Audio Connection Kit"
}
} }

View File

@ -3,4 +3,7 @@
pcm.oss { pcm.oss {
type oss type oss
device /dev/dsp device /dev/dsp
hint {
description "Open Sound System"
}
} }

View File

@ -1,22 +1,35 @@
# PulseAudio plugin configuration # PulseAudio plugin configuration
# $Id$
# Let's create a virtual device "pulse" for mixer and PCM # Let's create a virtual device "pulse" for mixer and PCM
pcm.pulse { pcm.pulse {
type pulse type pulse
hint {
description "PulseAudio Sound Server"
}
} }
ctl.pulse { ctl.pulse {
type pulse type pulse
hint {
description "PulseAudio Sound Server"
}
} }
# Let's make it the default! # Let's make it the default!
pcm.!default { pcm.!default {
type pulse type pulse
hint {
description "Default"
}
} }
ctl.!default { ctl.!default {
type pulse type pulse
hint {
description "Default"
}
} }

View File

@ -1,7 +1,11 @@
# samplerate plugin configuration # samplerate plugin configuration
# $Id: samplerate.conf,v 1.2 2008/03/09 15:50:49 lkundrak Exp $
pcm.my_rate { pcm.my_rate {
type rate type rate
slave.pcm "hw" slave.pcm "hw"
converter "samplerate" converter "samplerate"
hint {
description "External rate converter"
}
} }

View File

@ -1,6 +1,10 @@
# upmix plugin configuration # upmix plugin configuration
# $Id: upmix.conf,v 1.2 2008/03/09 15:50:49 lkundrak Exp $
pcm.upmix51 { pcm.upmix51 {
type upmix type upmix
slave.pcm "surround51" slave.pcm "surround51"
hint {
description "Upmixer channel expander"
}
} }

View File

@ -1,11 +1,18 @@
# vdownmix plugin configuration # vdownmix plugin configuration
# $Id$
pcm.!surround51 { pcm.!surround51 {
type vdownmix type vdownmix
slave.pcm "default" slave.pcm "default"
hint {
description "Downmixer to stereo from surround51"
}
} }
pcm.!surround40 { pcm.!surround40 {
type vdownmix type vdownmix
slave.pcm "default" slave.pcm "default"
hint {
description "Downmixer to stereo from surround40"
}
} }