summaryrefslogtreecommitdiff
path: root/src/pcm.c
diff options
context:
space:
mode:
authorJari Vetoniemi <mailroxas@gmail.com>2018-11-02 21:00:31 +0200
committerJari Vetoniemi <mailroxas@gmail.com>2018-11-02 22:27:37 +0200
commit26f3ff0da9f196e7f64bbdaf3f0e6ff002cd0a58 (patch)
treed3d211d80b3c2ba7aa69459df177f91d7d8ad9e8 /src/pcm.c
parentb0764f5976dcb292f28e31eae5a08cd4ab900540 (diff)
unstub snd_pcm_format_description
Diffstat (limited to 'src/pcm.c')
-rw-r--r--src/pcm.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pcm.c b/src/pcm.c
index 2ebf930..8ac3501 100644
--- a/src/pcm.c
+++ b/src/pcm.c
@@ -68,6 +68,12 @@ snd_pcm_format_name(const snd_pcm_format_t format)
return (info ? info->name : NULL);
}
+const char*
+snd_pcm_format_description(const snd_pcm_format_t format)
+{
+ return snd_pcm_format_name(format);
+}
+
int
snd_pcm_format_width(snd_pcm_format_t format)
{