From 986b8e338782a4c8aab83e626949ed5457eb5b69 Mon Sep 17 00:00:00 2001 From: Bhalchandra Gajare Date: Wed, 4 Sep 2019 15:32:35 -0700 Subject: tinyalsa: add support for PCM plugins Update the pcm framework to support plugins. Resolve the pcm device node to be either kernel device or virtual device and setup function pointers accordingly. Implement framework functionality for pcm_plugin.c for ease of plugin development. Plugin itself is compiled as shared object (.so) and dynamically linked from pcm_plugin.c. Signed-off-by: Bhalchandra Gajare Signed-off-by: Rohit kumar --- examples/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples') diff --git a/examples/Makefile b/examples/Makefile index 807d4c8..c52d367 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -11,9 +11,9 @@ EXAMPLES += pcm-writei .PHONY: all all: $(EXAMPLES) -pcm-readi: pcm-readi.c -ltinyalsa +pcm-readi: pcm-readi.c -ltinyalsa -ldl -pcm-writei: pcm-writei.c -ltinyalsa +pcm-writei: pcm-writei.c -ltinyalsa -ldl .PHONY: clean clean: -- cgit v1.2.3