diff options
author | Bhalchandra Gajare <gajare@codeaurora.org> | 2019-09-04 15:32:35 -0700 |
---|---|---|
committer | Rohit kumar <rohitkr@codeaurora.org> | 2020-02-07 12:16:27 +0530 |
commit | 986b8e338782a4c8aab83e626949ed5457eb5b69 (patch) | |
tree | 5ca7b4cb0bb6c02f8da26e043d7b28c4ab3ee084 /examples/Makefile | |
parent | 1923b9b0fd7116ba235a812ef00fd6c7c9ed363d (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/Makefile')
-rw-r--r-- | examples/Makefile | 4 |
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: |