Advanced Linux Sound Architecture
   HOME

TheInfoList



OR:

Advanced Linux Sound Architecture (ALSA) is a software framework and part of the Linux kernel that provides an application programming interface (API) for
sound card A sound card (also known as an audio card) is an internal expansion card that provides input and output of audio signals to and from a computer under the control of computer programs. The term ''sound card'' is also applied to external audio ...
device drivers. Some of the goals of the ALSA project at its inception were automatic configuration of sound-card hardware and graceful handling of multiple sound devices in a system. ALSA is released under GPL-2.0-or-later and LGPL-2.1-or-later. On Linux, sound servers, like sndio,
PulseAudio PulseAudio is a network-capable sound server program distributed via the freedesktop.org project. It runs mainly on Linux, various BSD distributions such as FreeBSD and OpenBSD, macOS, as well as Illumos distributions and the Solaris operat ...
,
JACK Jack may refer to: Places * Jack, Alabama, US, an unincorporated community * Jack, Missouri, US, an unincorporated community * Jack County, Texas, a county in Texas, USA People and fictional characters * Jack (given name), a male given name, ...
(low-latency professional-grade audio editing and mixing) and PipeWire, and higher-level APIs (e.g OpenAL, SDL audio, etc.) work on top of ALSA and its sound card device drivers. ALSA succeeded the older Linux port of the
Open Sound System The Open Sound System (OSS) is an interface for making and capturing sound in Unix and Unix-like operating systems. It is based on standard Unix devices system calls (i.e. POSIX read, write, ioctl, etc.). The term also sometimes refers to th ...
(OSS).


History

The project to develop ALSA was led by Jaroslav Kysela, and was based on the Linux device driver for the Gravis Ultrasound sound card. It started in 1998 and was developed separately from the Linux kernel until it was introduced in the 2.5 development series in 2002 (2.5.4–2.5.5). In the 2.6 version, it replaced the previous system,
Open Sound System The Open Sound System (OSS) is an interface for making and capturing sound in Unix and Unix-like operating systems. It is based on standard Unix devices system calls (i.e. POSIX read, write, ioctl, etc.). The term also sometimes refers to th ...
(OSS), by default (although a backwards-compatibility layer does exist). ALSA has a larger and more complex API than OSS, so it can be more difficult to develop an application that uses ALSA as its sound technology. While ALSA may be configured to provide an OSS emulation layer, such functionality is no longer available or is not installed by default in many Linux distributions.


Features

ALSA was designed with some features which were not, at the time of its conception, supported by OSS: * Hardware-based
MIDI MIDI (; Musical Instrument Digital Interface) is a technical standard that describes a communications protocol, digital interface, and electrical connectors that connect a wide variety of electronic musical instruments, computers, and ...
synthesis. *
Hardware mixing Hardware acceleration is the use of computer hardware designed to perform specific functions more efficiently when compared to software running on a general-purpose central processing unit (CPU). Any transformation of data that can be calcula ...
of multiple channels. *
Full-duplex A duplex communication system is a point-to-point system composed of two or more connected parties or devices that can communicate with one another in both directions. Duplex systems are employed in many communications networks, either to allow ...
operation. * Multiprocessor-friendly,
thread-safe Thread safety is a computer programming concept applicable to multi-threaded code. Thread-safe code only manipulates shared data structures in a manner that ensures that all threads behave properly and fulfill their design specifications without uni ...
device drivers. Besides the sound device drivers, ALSA bundles a user-space
library A library is a collection of materials, books or media that are accessible for use and not just for display purposes. A library provides physical (hard copies) or digital access (soft copies) materials, and may be a physical location or a vir ...
for application developers who want to use driver features through an interface that is higher-level than the interface provided for direct interaction with the kernel drivers. Unlike the kernel API, which tries to reflect the capabilities of the hardware directly, ALSA's user-space library presents an abstraction that remains as standardized as possible across disparate underlying hardware elements. This goal is achieved in part by using software plug-ins; for example, many modern sound cards or built-in sound chips do not have a "master volume" control. Instead, for these devices, the user space library provides a software volume control using the " softvol" plug-in, and ordinary application software need not care whether such a control is implemented by underlying hardware or software emulation of such underlying hardware.


Applications

Additional to the software framework internal to the Linux kernel, the ALSA project also provides the command-line tools and utilities alsactl, amixer, arecord/aplay and alsamixer, an
ncurses ncurses (new curses) is a programming library providing an application programming interface (API) that allows the programmer to write text-based user interfaces (TUI) in a terminal-independent manner. It is a toolkit for developing "GUI-like" ...
-based TUI. There also are GUIs programmed by
third-party developer A video game developer is a broad term for a software developer specializing in video game development – the process and related disciplines of creating video games. A game developer can range from one person who undertakes all tasks to a large ...
s, such as GNOME-ALSAmixer (using
GTK GTK (formerly GIMP ToolKit and GTK+) is a free and open-source cross-platform widget toolkit for creating graphical user interfaces (GUIs). It is licensed under the terms of the GNU Lesser General Public License, allowing both free and propriet ...
), Kmix, XFCE4-mixer, LXpanel, QasHctl, QasMixer, Pavucontrol, AconnectGUI, tapiir, polarbear, ALSAmixerGUI (using FLTK),
ZynAddSubFX ZynAddSubFX (also now called Zyn-Fusion) is a free and open-source software synthesizer for Linux, Mac OS X and Microsoft Windows. As of version 3, the completely new user interface is being released under proprietary terms with an open-source-ev ...
,
Yoshimi Yoshimi is a unisex Japanese given name and can also be used as a surname. Possible writings *佳美, meaning "excellent, beautiful" *良美, meaning "good, beautiful" *好美, meaning "like, beautiful" *芳美, meaning "fragrant, beautiful" P ...
, and even more.


Concepts

This section provides an overview of basic concepts pertaining to ALSA. Typically, ALSA supports up to eight ''cards'', numbered 0 through 7; each card is a physical or logical kernel device capable of input and output. Furthermore, each card may also be addressed by its ''id'', which is an explanatory string such as "''Headset''" or "'' ICH9''". A card has ''devices'', numbered starting at 0; a device may be of ''playback'' type, meaning it outputs sound from the computer, or some other type such as ''capture'', ''control'', ''timer'', or '' sequencer''; device number 0 is used by default when no particular device is specified. A device may have ''subdevices'', numbered starting at 0; a subdevice represents some relevant sound endpoint for the device, such as a speaker pair. If the subdevice is not specified, or if subdevice number −1 is specified, then any available subdevice is used. A card's ''interface'' is a description of an ALSA protocol for accessing the card; possible interfaces include: ''hw'', ''plughw'', ''default'', and ''plug:dmix''. The ''hw'' interface provides direct access to the kernel device, but no software mixing or stream adaptation support. The ''plughw'' and ''default'' enable sound output where the ''hw'' interface would produce an error. An application typically describes sound output by combining all of the aforementioned specifications together in a ''device string'', which has one of the following forms (which are
case-sensitive In computers, case sensitivity defines whether uppercase and lowercase letters are treated as distinct (case-sensitive) or equivalent (case-insensitive). For instance, when users interested in learning about dogs search an e-book, "dog" and "Dog" a ...
): * ''interface:card,device,subdevice'' * ''interface:CARD=1,DEV=3,SUBDEV=2''. An ALSA ''stream'' is a data flow representing sound; the most common stream format is PCM that must be produced in such a way as to match the characteristics or parameters of the hardware, including: * ''sampling rate'': often 44.1 kHz on home stereos, or 48 kHz on home theaters, yet up to 88.2 kHz, 96 kHz, or even 192 kHz for hi-fi audio production or reproduction. * ''sample width'': measured in some number of bits per sample (such as 8, 16, 24, or 32 bits/sample) * ''sample encoding'': such as
endianness In computing, endianness, also known as byte sex, is the order or sequence of bytes of a word of digital data in computer memory. Endianness is primarily expressed as big-endian (BE) or little-endian (LE). A big-endian system stores the mos ...
* ''number of channels'': 1 for mono, 2 for stereo, or 6 for AC-3/ IEC958


Implementations

The ALSA System on Chip (ASoC) layer aims to provide better support for ALSA on
embedded system An embedded system is a computer system—a combination of a computer processor, computer memory, and input/output peripheral devices—that has a dedicated function within a larger mechanical or electronic system. It is ''embedded'' ...
s that use a
system-on-chip A system on a chip or system-on-chip (SoC ; pl. ''SoCs'' ) is an integrated circuit that integrates most or all components of a computer or other electronic system. These components almost always include a central processing unit (CPU), memor ...
(SoC) design.


See also

*
Open Sound System The Open Sound System (OSS) is an interface for making and capturing sound in Unix and Unix-like operating systems. It is based on standard Unix devices system calls (i.e. POSIX read, write, ioctl, etc.). The term also sometimes refers to th ...
* DSSI *
udev udev (userspace ) is a device manager for the Linux kernel. As the successor of devfsd and hotplug, udev primarily manages device nodes in the directory. At the same time, udev also handles all user space events raised when hardware devices ...
*
JACK Audio Connection Kit JACK Audio Connection Kit (or JACK; a recursive acronym) is a professional sound server API and pair of daemon implementations to provide real-time, low-latency connections for both audio and MIDI data between applications. JACK was developed by ...
* KMid * LADSPA *
PulseAudio PulseAudio is a network-capable sound server program distributed via the freedesktop.org project. It runs mainly on Linux, various BSD distributions such as FreeBSD and OpenBSD, macOS, as well as Illumos distributions and the Solaris operat ...
* Alsamixer * PipeWire


References


External links

* * {{Linux kernel 1998 software Application programming interfaces Interfaces of the Linux kernel Linux drivers