├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── libalsacap.c ├── libalsacap.h └── tests ├── Makefile └── capture.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamer45/libalsacap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamer45/libalsacap/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamer45/libalsacap/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamer45/libalsacap/HEAD/README.md -------------------------------------------------------------------------------- /libalsacap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamer45/libalsacap/HEAD/libalsacap.c -------------------------------------------------------------------------------- /libalsacap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamer45/libalsacap/HEAD/libalsacap.h -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamer45/libalsacap/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/capture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamer45/libalsacap/HEAD/tests/capture.c --------------------------------------------------------------------------------