diff options
author | Paul Kocialkowski <paul.kocialkowski@linux.intel.com> | 2017-08-21 18:27:19 +0300 |
---|---|---|
committer | Lyude <lyude@redhat.com> | 2017-08-21 13:53:38 -0400 |
commit | 1579692d6447d126552b5fb020a63b26427c9a12 (patch) | |
tree | 4604cccc0b2b6edbf880b49ef4169875c8a9c14f /configure.ac | |
parent | 39cc9bf89c293c92d55aad803c08816ad922585d (diff) |
lib: Add ALSA library with dedicated helpers
This introduces an ALSA library, with dedicated helpers for handling
playback and capture. It handles ALSA device identification and
configuration as well as a run loop with callback mechanisms for feeding
output data and handling input data.
This library paves the way for testing audio going through display
connectors, such as HDMI.
Signed-off-by: Paul Kocialkowski <paul.kocialkowski@linux.intel.com>
Reviewed-by: Lyude Paul <lyude@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 50aa86b5..e66273a4 100644 --- a/configure.ac +++ b/configure.ac @@ -219,6 +219,9 @@ if test "x$enable_chamelium" = xyes; then AC_DEFINE(HAVE_CHAMELIUM, 1, [Enable Chamelium support]) fi +PKG_CHECK_MODULES(ALSA, [alsa], [alsa=yes], [alsa=no]) +AM_CONDITIONAL(HAVE_ALSA, [test "x$alsa" = xyes]) + # ----------------------------------------------------------------------------- # Configuration options # ----------------------------------------------------------------------------- |