tag | aa71bab2bcdf73f1be6ad4e5399b678d14e530cd | |
---|---|---|
tagger | The Android Open Source Project <initial-contribution@android.com> | Tue Feb 04 16:11:43 2025 -0800 |
object | df645f17ae7943b5aa730b8a6b46b8c21fd20668 |
Android Platform 15.0.0 Release 5 (12859869)
commit | df645f17ae7943b5aa730b8a6b46b8c21fd20668 | [log] [tgz] |
---|---|---|
author | Xin Li <delphij@google.com> | Sat Oct 07 00:20:43 2023 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Sat Oct 07 00:20:43 2023 +0000 |
tree | ce094436772521d150e24b67d56d5cb9d01a27b2 | |
parent | 4937852134ba29131b4dcf53314c21d6cfaec30b [diff] | |
parent | c57dd90e26bde86efc30916493c2ceb1841394b2 [diff] |
[automerger skipped] Merge Android 14 am: dc87908029 -s ours am: b1caebb0fd -s ours am: add0f9f97d -s ours am: 946341da8a -s ours am: c57dd90e26 -s ours am skip reason: Merged-In Ibd0be525fbd881c4b84ff6b14923c9d372334dda with SHA-1 f3d1517d7b is already in history Original change: https://android-review.googlesource.com/c/platform/external/tinyalsa_new/+/2774980 Change-Id: Ia2d3c8c888b19621ed59e46d7cd6b013b793b52a Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
TinyALSA is a small library to interface with ALSA in the Linux kernel.
The aims are:
TinyALSA supports these build systems:
To build and install with Make, run the commands:
make sudo make install sudo ldconfig
TinyALSA is now available as a set of the following Debian packages from launchpad:
Package Name: | Description: |
---|---|
tinyalsa | Contains tinyplay, tinycap, tinymix and tinypcminfo |
libtinyalsa | Contains the shared library |
libtinyalsa-dev | Contains the static library and header files |
To install these packages, run the commands:
sudo apt-add-repository ppa:taylorcholberton/tinyalsa sudo apt-get update sudo apt-get install tinyalsa sudo apt-get install libtinyalsa-dev
Once installed, the man pages are available via:
man tinyplay man tinycap man tinymix man tinypcminfo man libtinyalsa-pcm man libtinyalsa-mixer
To test libtinyalsa, please follow the instructions,
Visit here to get more info to setup Bazel environment.
The test program does pcm_* operations on loopback devices. You have to insert loopback devices after your system boots up.
sudo modprobe snd-aloop sudo chmod 777 /dev/snd/*
bazel test //:tinyalsa_tests --test_output=all
The default playback device is hw:2,0 and the default capture device is hw:2,1. If your loopback devices are not hw:2,0 and hw:2,1, you can specify the loopback device.
bazel test //:tinyalsa_tests --test_output=all \ --copt=-DTEST_LOOPBACK_CARD=[loopback card] \ --copt=-DTEST_LOOPBACK_PLAYBACK_DEVICE=[loopback playback device] \ --copt=-DTEST_LOOPBACK_CAPTURE_DEVICE=[loopback capture device]
bazel coverage //:tinyalsa_tests --combined_report=lcov --test_output=all genhtml bazel-out/_coverage/_coverage_report.dat -o tinyalsa_tests_coverage