diff options
author | Gabriel M. Beddingfield <gabrbedd@ti.com> | 2012-05-02 11:51:20 -0500 |
---|---|---|
committer | Simon Wilson <simonwilson@google.com> | 2012-10-22 16:58:13 -0700 |
commit | 2a274a18b0eb4ff45c5bb8f02eb0264d8cc6154c (patch) | |
tree | caa8c7f11b91e58e8b5320ab776737919d46ea30 | |
parent | a5baefd1ab254a04de0ccd7f34449de2b885da94 (diff) |
pcm: Add support for S8 and S24LE formats.
-rw-r--r-- | include/tinyalsa/asoundlib.h | 2 | ||||
-rw-r--r-- | pcm.c | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/include/tinyalsa/asoundlib.h b/include/tinyalsa/asoundlib.h index e65403e..5f3d563 100644 --- a/include/tinyalsa/asoundlib.h +++ b/include/tinyalsa/asoundlib.h @@ -70,6 +70,8 @@ struct pcm; enum pcm_format { PCM_FORMAT_S16_LE = 0, PCM_FORMAT_S32_LE, + PCM_FORMAT_S8, + PCM_FORMAT_S24_LE, PCM_FORMAT_MAX, }; @@ -189,6 +189,10 @@ static unsigned int pcm_format_to_alsa(enum pcm_format format) switch (format) { case PCM_FORMAT_S32_LE: return SNDRV_PCM_FORMAT_S32_LE; + case PCM_FORMAT_S8: + return SNDRV_PCM_FORMAT_S8; + case PCM_FORMAT_S24_LE: + return SNDRV_PCM_FORMAT_S24_LE; default: case PCM_FORMAT_S16_LE: return SNDRV_PCM_FORMAT_S16_LE; |