aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordvdli <70133153+dvdli@users.noreply.github.com>2021-02-01 13:29:04 +0800
committerGitHub <noreply@github.com>2021-02-01 13:29:04 +0800
commit1c5fb68ced57d838f2b7ecd0c00bc1fefc9ab60d (patch)
tree8b6a2d44a4291fa0c2cd3a79edbe123f52bb7a01 /include
parent8c5da09cd7c6b35323a61e50c9e988694eb81a8e (diff)
parent5e65c16b305b9e4a3ca858cfb1b7a188db0d5242 (diff)
Merge pull request #198 from dvdli/tinyalsa-dev
fix bugs
Diffstat (limited to 'include')
-rw-r--r--include/tinyalsa/pcm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tinyalsa/pcm.h b/include/tinyalsa/pcm.h
index 6569146..b40550c 100644
--- a/include/tinyalsa/pcm.h
+++ b/include/tinyalsa/pcm.h
@@ -335,9 +335,9 @@ int pcm_write(struct pcm *pcm, const void *data, unsigned int count) TINYALSA_DE
int pcm_read(struct pcm *pcm, void *data, unsigned int count) TINYALSA_DEPRECATED;
-int pcm_mmap_write(struct pcm *pcm, const void *data, unsigned int count);
+int pcm_mmap_write(struct pcm *pcm, const void *data, unsigned int count) TINYALSA_DEPRECATED;
-int pcm_mmap_read(struct pcm *pcm, void *data, unsigned int count);
+int pcm_mmap_read(struct pcm *pcm, void *data, unsigned int count) TINYALSA_DEPRECATED;
int pcm_mmap_begin(struct pcm *pcm, void **areas, unsigned int *offset, unsigned int *frames);