aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorBhalchandra Gajare <gajare@codeaurora.org>2019-09-04 15:32:35 -0700
committerRohit kumar <rohitkr@codeaurora.org>2020-02-07 12:16:27 +0530
commit986b8e338782a4c8aab83e626949ed5457eb5b69 (patch)
tree5ca7b4cb0bb6c02f8da26e043d7b28c4ab3ee084 /examples
parent1923b9b0fd7116ba235a812ef00fd6c7c9ed363d (diff)
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 <gajare@codeaurora.org> Signed-off-by: Rohit kumar <rohitkr@codeaurora.org>
Diffstat (limited to 'examples')
-rw-r--r--examples/Makefile4
1 files changed, 2 insertions, 2 deletions
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: