1998-08-13 15:42:56 +00:00
|
|
|
/*
|
|
|
|
|
* PCM Interface - main file
|
1999-05-11 22:15:16 +00:00
|
|
|
* Copyright (c) 1998 by Jaroslav Kysela <perex@suse.cz>
|
2000-05-08 18:53:38 +00:00
|
|
|
* Copyright (c) 2000 by Abramo Bagnara <abramo@alsa-project.org>
|
1998-08-27 20:47:51 +00:00
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU Library General Public License as
|
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU Library General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
*
|
1998-08-13 15:42:56 +00:00
|
|
|
*/
|
1999-06-02 00:40:30 +00:00
|
|
|
|
1998-08-13 15:42:56 +00:00
|
|
|
#include <stdio.h>
|
2000-05-26 17:58:24 +00:00
|
|
|
#include <string.h>
|
2000-05-08 18:53:38 +00:00
|
|
|
#include <malloc.h>
|
1998-08-13 15:42:56 +00:00
|
|
|
#include <errno.h>
|
2000-05-08 18:53:38 +00:00
|
|
|
#include <sys/poll.h>
|
|
|
|
|
#include <sys/uio.h>
|
1999-11-06 23:47:07 +00:00
|
|
|
#include "pcm_local.h"
|
1998-08-13 15:42:56 +00:00
|
|
|
|
2000-05-08 18:53:38 +00:00
|
|
|
int snd_pcm_abstract_open(snd_pcm_t **handle, int mode,
|
|
|
|
|
snd_pcm_type_t type, size_t extra)
|
1998-08-13 15:42:56 +00:00
|
|
|
{
|
2000-05-08 18:53:38 +00:00
|
|
|
snd_pcm_t *pcm;
|
1999-08-22 13:34:31 +00:00
|
|
|
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(handle);
|
2000-05-08 18:53:38 +00:00
|
|
|
*handle = NULL;
|
|
|
|
|
|
|
|
|
|
pcm = (snd_pcm_t *) calloc(1, sizeof(snd_pcm_t) + extra);
|
|
|
|
|
if (pcm == NULL)
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
if (mode & SND_PCM_OPEN_PLAYBACK) {
|
2000-06-01 21:58:25 +00:00
|
|
|
snd_pcm_stream_t *str = &pcm->stream[SND_PCM_STREAM_PLAYBACK];
|
2000-05-27 16:52:17 +00:00
|
|
|
str->open = 1;
|
|
|
|
|
str->mode = (mode & SND_PCM_NONBLOCK_PLAYBACK) ? SND_PCM_NONBLOCK : 0;
|
1998-11-27 14:57:39 +00:00
|
|
|
}
|
2000-05-08 18:53:38 +00:00
|
|
|
if (mode & SND_PCM_OPEN_CAPTURE) {
|
2000-06-01 21:58:25 +00:00
|
|
|
snd_pcm_stream_t *str = &pcm->stream[SND_PCM_STREAM_CAPTURE];
|
2000-05-27 16:52:17 +00:00
|
|
|
str->open = 1;
|
|
|
|
|
str->mode = (mode & SND_PCM_NONBLOCK_CAPTURE) ? SND_PCM_NONBLOCK : 0;
|
1999-08-22 13:34:31 +00:00
|
|
|
}
|
2000-05-08 18:53:38 +00:00
|
|
|
pcm->type = type;
|
|
|
|
|
pcm->mode = mode & SND_PCM_OPEN_DUPLEX;
|
|
|
|
|
*handle = pcm;
|
|
|
|
|
return 0;
|
2000-01-08 20:11:33 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-08 18:53:38 +00:00
|
|
|
snd_pcm_type_t snd_pcm_type(snd_pcm_t *handle)
|
2000-01-08 20:11:33 +00:00
|
|
|
{
|
2000-05-08 18:53:38 +00:00
|
|
|
return handle->type;
|
|
|
|
|
}
|
2000-01-08 20:11:33 +00:00
|
|
|
|
2000-05-27 16:52:17 +00:00
|
|
|
int snd_pcm_stream_close(snd_pcm_t *pcm, int stream)
|
2000-05-08 18:53:38 +00:00
|
|
|
{
|
|
|
|
|
int ret = 0;
|
|
|
|
|
int err;
|
2000-06-01 21:58:25 +00:00
|
|
|
snd_pcm_stream_t *str;
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm);
|
|
|
|
|
assert(stream >= 0 && stream <= 1);
|
2000-05-27 16:52:17 +00:00
|
|
|
str = &pcm->stream[stream];
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(str->open);
|
2000-06-10 12:39:51 +00:00
|
|
|
if (str->mmap_status) {
|
|
|
|
|
if ((err = snd_pcm_munmap_status(pcm, stream)) < 0)
|
|
|
|
|
ret = err;
|
|
|
|
|
}
|
2000-05-27 16:52:17 +00:00
|
|
|
if (str->mmap_control) {
|
|
|
|
|
if ((err = snd_pcm_munmap_control(pcm, stream)) < 0)
|
2000-05-08 18:53:38 +00:00
|
|
|
ret = err;
|
2000-01-08 20:11:33 +00:00
|
|
|
}
|
2000-05-27 16:52:17 +00:00
|
|
|
if (str->mmap_data) {
|
|
|
|
|
if ((err = snd_pcm_munmap_data(pcm, stream)) < 0)
|
2000-05-08 18:53:38 +00:00
|
|
|
ret = err;
|
1999-08-22 13:34:31 +00:00
|
|
|
}
|
2000-05-27 16:52:17 +00:00
|
|
|
if ((err = pcm->ops->stream_close(pcm, stream)) < 0)
|
2000-05-08 18:53:38 +00:00
|
|
|
ret = err;
|
2000-05-27 16:52:17 +00:00
|
|
|
str->open = 0;
|
|
|
|
|
str->valid_setup = 0;
|
2000-05-08 18:53:38 +00:00
|
|
|
return ret;
|
|
|
|
|
}
|
1998-08-13 15:42:56 +00:00
|
|
|
|
1999-11-06 23:47:07 +00:00
|
|
|
int snd_pcm_close(snd_pcm_t *pcm)
|
1998-08-13 15:42:56 +00:00
|
|
|
{
|
2000-05-08 18:53:38 +00:00
|
|
|
int err, ret = 0;
|
2000-05-27 16:52:17 +00:00
|
|
|
int stream;
|
1998-11-27 14:57:39 +00:00
|
|
|
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm);
|
2000-05-27 16:52:17 +00:00
|
|
|
for (stream = 0; stream < 2; ++stream) {
|
|
|
|
|
if (pcm->stream[stream].open) {
|
|
|
|
|
if ((err = snd_pcm_stream_close(pcm, stream)) < 0)
|
2000-05-08 18:53:38 +00:00
|
|
|
ret = err;
|
|
|
|
|
}
|
2000-01-08 20:11:33 +00:00
|
|
|
}
|
1998-11-27 14:57:39 +00:00
|
|
|
free(pcm);
|
2000-05-08 18:53:38 +00:00
|
|
|
return ret;
|
1998-08-13 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-27 16:52:17 +00:00
|
|
|
int snd_pcm_stream_nonblock(snd_pcm_t *pcm, int stream, int nonblock)
|
1998-08-13 15:42:56 +00:00
|
|
|
{
|
2000-05-08 18:53:38 +00:00
|
|
|
int err;
|
2000-06-04 13:13:01 +00:00
|
|
|
snd_pcm_stream_t *str;
|
|
|
|
|
assert(pcm);
|
|
|
|
|
assert(stream >= 0 && stream <= 1);
|
|
|
|
|
str = &pcm->stream[stream];
|
|
|
|
|
assert(pcm->stream[stream].open);
|
2000-05-27 16:52:17 +00:00
|
|
|
if ((err = pcm->ops->stream_nonblock(pcm, stream, nonblock)) < 0)
|
2000-05-08 18:53:38 +00:00
|
|
|
return err;
|
|
|
|
|
if (nonblock)
|
2000-06-04 13:13:01 +00:00
|
|
|
str->mode |= SND_PCM_NONBLOCK;
|
2000-05-08 18:53:38 +00:00
|
|
|
else
|
2000-06-04 13:13:01 +00:00
|
|
|
str->mode &= ~SND_PCM_NONBLOCK;
|
1999-11-07 16:43:13 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2000-05-08 18:53:38 +00:00
|
|
|
int snd_pcm_info(snd_pcm_t *pcm, snd_pcm_info_t *info)
|
1998-08-13 15:42:56 +00:00
|
|
|
{
|
2000-06-01 21:58:25 +00:00
|
|
|
int stream;
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm && info);
|
2000-06-01 21:58:25 +00:00
|
|
|
for (stream = 0; stream < 2; ++stream) {
|
|
|
|
|
if (pcm->stream[stream].open)
|
|
|
|
|
return pcm->ops->info(pcm, stream, info);
|
|
|
|
|
}
|
2000-06-04 16:24:04 +00:00
|
|
|
assert(0);
|
1998-08-13 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-27 16:52:17 +00:00
|
|
|
int snd_pcm_stream_info(snd_pcm_t *pcm, snd_pcm_stream_info_t *info)
|
1998-08-13 15:42:56 +00:00
|
|
|
{
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm && info);
|
|
|
|
|
assert(info->stream >= 0 && info->stream <= 1);
|
|
|
|
|
assert(pcm->stream[info->stream].open);
|
2000-05-27 16:52:17 +00:00
|
|
|
return pcm->ops->stream_info(pcm, info);
|
1998-08-13 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-27 16:52:17 +00:00
|
|
|
int snd_pcm_stream_params(snd_pcm_t *pcm, snd_pcm_stream_params_t *params)
|
1998-08-13 15:42:56 +00:00
|
|
|
{
|
1999-11-06 23:47:07 +00:00
|
|
|
int err;
|
2000-05-27 16:52:17 +00:00
|
|
|
snd_pcm_stream_setup_t setup;
|
2000-06-01 21:58:25 +00:00
|
|
|
snd_pcm_stream_t *str;
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm && params);
|
|
|
|
|
assert(params->stream >= 0 && params->stream <= 1);
|
2000-05-27 16:52:17 +00:00
|
|
|
str = &pcm->stream[params->stream];
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(str->open);
|
|
|
|
|
assert(!str->mmap_data);
|
2000-05-27 16:52:17 +00:00
|
|
|
if ((err = pcm->ops->stream_params(pcm, params)) < 0)
|
1999-11-06 23:47:07 +00:00
|
|
|
return err;
|
2000-05-27 16:52:17 +00:00
|
|
|
str->valid_setup = 0;
|
|
|
|
|
setup.stream = params->stream;
|
|
|
|
|
return snd_pcm_stream_setup(pcm, &setup);
|
1998-08-13 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-27 16:52:17 +00:00
|
|
|
int snd_pcm_stream_setup(snd_pcm_t *pcm, snd_pcm_stream_setup_t *setup)
|
1998-08-13 15:42:56 +00:00
|
|
|
{
|
2000-05-08 18:53:38 +00:00
|
|
|
int err;
|
2000-06-01 21:58:25 +00:00
|
|
|
snd_pcm_stream_t *str;
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm && setup);
|
|
|
|
|
assert(setup->stream >= 0 && setup->stream <= 1);
|
2000-05-27 16:52:17 +00:00
|
|
|
str = &pcm->stream[setup->stream];
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(str->open);
|
2000-05-27 16:52:17 +00:00
|
|
|
if (str->valid_setup) {
|
2000-06-11 13:31:46 +00:00
|
|
|
*setup = str->setup;
|
2000-04-17 17:31:41 +00:00
|
|
|
return 0;
|
1999-11-06 23:47:07 +00:00
|
|
|
}
|
2000-06-12 21:55:47 +00:00
|
|
|
str->setup.stream = setup->stream;
|
2000-06-11 13:31:46 +00:00
|
|
|
if ((err = pcm->ops->stream_setup(pcm, &str->setup)) < 0)
|
2000-05-08 18:53:38 +00:00
|
|
|
return err;
|
2000-06-11 13:31:46 +00:00
|
|
|
*setup = str->setup;
|
2000-06-10 12:39:51 +00:00
|
|
|
str->bits_per_sample = snd_pcm_format_physical_width(setup->format.format);
|
|
|
|
|
str->bits_per_frame = str->bits_per_sample * setup->format.channels;
|
2000-05-27 16:52:17 +00:00
|
|
|
str->valid_setup = 1;
|
1998-11-27 14:57:39 +00:00
|
|
|
return 0;
|
1998-08-13 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-27 16:52:17 +00:00
|
|
|
const snd_pcm_stream_setup_t* snd_pcm_stream_cached_setup(snd_pcm_t *pcm, int stream)
|
2000-05-08 18:53:38 +00:00
|
|
|
{
|
2000-06-01 21:58:25 +00:00
|
|
|
snd_pcm_stream_t *str;
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm);
|
|
|
|
|
assert(stream >= 0 && stream <= 1);
|
2000-05-27 16:52:17 +00:00
|
|
|
str = &pcm->stream[stream];
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(str->valid_setup);
|
2000-05-27 16:52:17 +00:00
|
|
|
return &str->setup;
|
2000-05-08 18:53:38 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-27 16:52:17 +00:00
|
|
|
int snd_pcm_channel_setup(snd_pcm_t *pcm, int stream, snd_pcm_channel_setup_t *setup)
|
2000-04-16 15:38:28 +00:00
|
|
|
{
|
2000-06-01 21:58:25 +00:00
|
|
|
snd_pcm_stream_t *str;
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm && setup);
|
|
|
|
|
assert(stream >= 0 && stream <= 1);
|
2000-05-27 16:52:17 +00:00
|
|
|
str = &pcm->stream[stream];
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(str->valid_setup);
|
2000-05-27 16:52:17 +00:00
|
|
|
return pcm->ops->channel_setup(pcm, stream, setup);
|
2000-05-08 18:53:38 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-27 16:52:17 +00:00
|
|
|
int snd_pcm_stream_status(snd_pcm_t *pcm, snd_pcm_stream_status_t *status)
|
1998-08-13 15:42:56 +00:00
|
|
|
{
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm && status);
|
|
|
|
|
assert(status->stream >= 0 && status->stream <= 1);
|
|
|
|
|
assert(pcm->stream[status->stream].open);
|
2000-05-27 16:52:17 +00:00
|
|
|
return pcm->ops->stream_status(pcm, status);
|
1998-08-13 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
2000-06-01 21:58:25 +00:00
|
|
|
int snd_pcm_stream_state(snd_pcm_t *pcm, int stream)
|
2000-05-09 10:46:43 +00:00
|
|
|
{
|
2000-06-01 21:58:25 +00:00
|
|
|
snd_pcm_stream_t *str;
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm);
|
|
|
|
|
assert(stream >= 0 && stream <= 1);
|
2000-06-01 21:58:25 +00:00
|
|
|
str = &pcm->stream[stream];
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(str->open);
|
2000-06-10 12:39:51 +00:00
|
|
|
if (str->mmap_status)
|
|
|
|
|
return str->mmap_status->state;
|
2000-06-01 21:58:25 +00:00
|
|
|
return pcm->ops->stream_state(pcm, stream);
|
|
|
|
|
}
|
|
|
|
|
|
2000-06-10 12:39:51 +00:00
|
|
|
int snd_pcm_stream_frame_io(snd_pcm_t *pcm, int stream, int update)
|
2000-06-01 21:58:25 +00:00
|
|
|
{
|
|
|
|
|
snd_pcm_stream_t *str;
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm);
|
|
|
|
|
assert(stream >= 0 && stream <= 1);
|
2000-06-01 21:58:25 +00:00
|
|
|
str = &pcm->stream[stream];
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(str->valid_setup);
|
2000-06-10 12:39:51 +00:00
|
|
|
if (str->mmap_status && !update)
|
|
|
|
|
return str->mmap_status->frame_io;
|
|
|
|
|
return pcm->ops->stream_frame_io(pcm, stream, update);
|
2000-06-04 13:13:01 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-27 16:52:17 +00:00
|
|
|
int snd_pcm_stream_prepare(snd_pcm_t *pcm, int stream)
|
1998-08-13 15:42:56 +00:00
|
|
|
{
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm);
|
|
|
|
|
assert(stream >= 0 && stream <= 1);
|
|
|
|
|
assert(pcm->stream[stream].open);
|
2000-05-31 15:09:27 +00:00
|
|
|
return pcm->ops->stream_prepare(pcm, stream);
|
1998-08-13 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-08 18:53:38 +00:00
|
|
|
int snd_pcm_playback_prepare(snd_pcm_t *pcm)
|
|
|
|
|
{
|
2000-05-27 16:52:17 +00:00
|
|
|
return snd_pcm_stream_prepare(pcm, SND_PCM_STREAM_PLAYBACK);
|
2000-05-08 18:53:38 +00:00
|
|
|
}
|
|
|
|
|
|
1999-11-06 23:47:07 +00:00
|
|
|
int snd_pcm_capture_prepare(snd_pcm_t *pcm)
|
1998-08-13 15:42:56 +00:00
|
|
|
{
|
2000-05-27 16:52:17 +00:00
|
|
|
return snd_pcm_stream_prepare(pcm, SND_PCM_STREAM_CAPTURE);
|
1998-08-13 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-27 16:52:17 +00:00
|
|
|
int snd_pcm_stream_go(snd_pcm_t *pcm, int stream)
|
1999-11-06 23:47:07 +00:00
|
|
|
{
|
2000-06-01 21:58:25 +00:00
|
|
|
snd_pcm_stream_t *str;
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm);
|
|
|
|
|
assert(stream >= 0 && stream <= 1);
|
2000-05-27 16:52:17 +00:00
|
|
|
str = &pcm->stream[stream];
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(str->valid_setup);
|
2000-05-31 15:09:27 +00:00
|
|
|
return pcm->ops->stream_go(pcm, stream);
|
1998-08-13 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-08 18:53:38 +00:00
|
|
|
int snd_pcm_playback_go(snd_pcm_t *pcm)
|
1998-08-13 15:42:56 +00:00
|
|
|
{
|
2000-05-27 16:52:17 +00:00
|
|
|
return snd_pcm_stream_go(pcm, SND_PCM_STREAM_PLAYBACK);
|
1998-08-13 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-08 18:53:38 +00:00
|
|
|
int snd_pcm_capture_go(snd_pcm_t *pcm)
|
1998-08-13 15:42:56 +00:00
|
|
|
{
|
2000-05-27 16:52:17 +00:00
|
|
|
return snd_pcm_stream_go(pcm, SND_PCM_STREAM_CAPTURE);
|
1999-11-06 23:47:07 +00:00
|
|
|
}
|
1998-11-27 14:57:39 +00:00
|
|
|
|
1999-11-06 23:47:07 +00:00
|
|
|
int snd_pcm_sync_go(snd_pcm_t *pcm, snd_pcm_sync_t *sync)
|
|
|
|
|
{
|
2000-06-01 21:58:25 +00:00
|
|
|
int stream;
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm && sync);
|
2000-06-01 21:58:25 +00:00
|
|
|
for (stream = 0; stream < 2; ++stream) {
|
|
|
|
|
if (pcm->stream[stream].open)
|
|
|
|
|
return pcm->ops->sync_go(pcm, stream, sync);
|
|
|
|
|
}
|
2000-06-04 16:24:04 +00:00
|
|
|
assert(0);
|
1998-08-13 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-27 16:52:17 +00:00
|
|
|
int snd_pcm_stream_drain(snd_pcm_t *pcm, int stream)
|
1998-08-13 15:42:56 +00:00
|
|
|
{
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm);
|
|
|
|
|
assert(stream >= 0 && stream <= 1);
|
|
|
|
|
assert(pcm->stream[stream].open);
|
|
|
|
|
assert(stream == SND_PCM_STREAM_PLAYBACK);
|
2000-05-31 15:09:27 +00:00
|
|
|
return pcm->ops->stream_drain(pcm, stream);
|
1998-08-13 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-08 18:53:38 +00:00
|
|
|
int snd_pcm_playback_drain(snd_pcm_t *pcm)
|
1998-08-13 15:42:56 +00:00
|
|
|
{
|
2000-05-27 16:52:17 +00:00
|
|
|
return snd_pcm_stream_drain(pcm, SND_PCM_STREAM_PLAYBACK);
|
1998-08-13 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-27 16:52:17 +00:00
|
|
|
int snd_pcm_stream_flush(snd_pcm_t *pcm, int stream)
|
1998-08-13 15:42:56 +00:00
|
|
|
{
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm);
|
|
|
|
|
assert(stream >= 0 && stream <= 1);
|
|
|
|
|
assert(pcm->stream[stream].open);
|
2000-05-31 15:09:27 +00:00
|
|
|
return pcm->ops->stream_flush(pcm, stream);
|
1998-08-25 15:38:50 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-08 18:53:38 +00:00
|
|
|
int snd_pcm_playback_flush(snd_pcm_t *pcm)
|
1998-08-25 15:38:50 +00:00
|
|
|
{
|
2000-05-27 16:52:17 +00:00
|
|
|
return snd_pcm_stream_flush(pcm, SND_PCM_STREAM_PLAYBACK);
|
1998-08-13 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-08 18:53:38 +00:00
|
|
|
int snd_pcm_capture_flush(snd_pcm_t *pcm)
|
|
|
|
|
{
|
2000-05-27 16:52:17 +00:00
|
|
|
return snd_pcm_stream_flush(pcm, SND_PCM_STREAM_CAPTURE);
|
2000-05-08 18:53:38 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-27 16:52:17 +00:00
|
|
|
int snd_pcm_stream_pause(snd_pcm_t *pcm, int stream, int enable)
|
1998-08-13 15:42:56 +00:00
|
|
|
{
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm);
|
|
|
|
|
assert(stream >= 0 && stream <= 1);
|
|
|
|
|
assert(pcm->stream[stream].open);
|
|
|
|
|
assert(stream == SND_PCM_STREAM_PLAYBACK);
|
2000-05-31 15:09:27 +00:00
|
|
|
return pcm->ops->stream_pause(pcm, stream, enable);
|
1998-08-13 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-08 18:53:38 +00:00
|
|
|
int snd_pcm_playback_pause(snd_pcm_t *pcm, int enable)
|
|
|
|
|
{
|
2000-05-27 16:52:17 +00:00
|
|
|
return snd_pcm_stream_pause(pcm, SND_PCM_STREAM_PLAYBACK, enable);
|
2000-05-08 18:53:38 +00:00
|
|
|
}
|
|
|
|
|
|
2000-06-10 12:39:51 +00:00
|
|
|
ssize_t snd_pcm_stream_frame_data(snd_pcm_t *pcm, int stream, off_t offset)
|
2000-05-29 19:53:30 +00:00
|
|
|
{
|
2000-06-01 21:58:25 +00:00
|
|
|
snd_pcm_stream_t *str;
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm);
|
|
|
|
|
assert(stream >= 0 && stream <= 1);
|
2000-05-29 19:53:30 +00:00
|
|
|
str = &pcm->stream[stream];
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(str->valid_setup);
|
2000-06-10 12:39:51 +00:00
|
|
|
if (str->mmap_control) {
|
|
|
|
|
if (offset == 0)
|
|
|
|
|
return str->mmap_control->frame_data;
|
|
|
|
|
if (str->mmap_status)
|
|
|
|
|
return snd_pcm_mmap_stream_frame_data(pcm, stream, offset);
|
|
|
|
|
}
|
|
|
|
|
return pcm->ops->stream_frame_data(pcm, stream, offset);
|
2000-05-29 19:53:30 +00:00
|
|
|
}
|
|
|
|
|
|
1999-11-06 23:47:07 +00:00
|
|
|
ssize_t snd_pcm_write(snd_pcm_t *pcm, const void *buffer, size_t size)
|
1998-08-13 15:42:56 +00:00
|
|
|
{
|
2000-06-05 15:28:39 +00:00
|
|
|
snd_pcm_stream_t *str;
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm);
|
2000-06-05 15:28:39 +00:00
|
|
|
str = &pcm->stream[SND_PCM_STREAM_PLAYBACK];
|
|
|
|
|
assert(str->valid_setup);
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(size == 0 || buffer);
|
2000-06-10 12:39:51 +00:00
|
|
|
assert(size % str->setup.frames_align == 0);
|
2000-05-08 18:53:38 +00:00
|
|
|
return pcm->ops->write(pcm, buffer, size);
|
1998-08-13 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-08 18:53:38 +00:00
|
|
|
ssize_t snd_pcm_writev(snd_pcm_t *pcm, const struct iovec *vector, unsigned long count)
|
2000-01-31 12:40:05 +00:00
|
|
|
{
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm);
|
|
|
|
|
assert(pcm->stream[SND_PCM_STREAM_PLAYBACK].valid_setup);
|
|
|
|
|
assert(count == 0 || vector);
|
2000-05-08 18:53:38 +00:00
|
|
|
return pcm->ops->writev(pcm, vector, count);
|
2000-01-31 12:40:05 +00:00
|
|
|
}
|
|
|
|
|
|
1999-11-06 23:47:07 +00:00
|
|
|
ssize_t snd_pcm_read(snd_pcm_t *pcm, void *buffer, size_t size)
|
1998-08-13 15:42:56 +00:00
|
|
|
{
|
2000-06-05 15:28:39 +00:00
|
|
|
snd_pcm_stream_t *str;
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm);
|
2000-06-05 15:28:39 +00:00
|
|
|
str = &pcm->stream[SND_PCM_STREAM_CAPTURE];
|
|
|
|
|
assert(str->valid_setup);
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(size == 0 || buffer);
|
2000-06-10 12:39:51 +00:00
|
|
|
assert(size % str->setup.frames_align == 0);
|
2000-05-08 18:53:38 +00:00
|
|
|
return pcm->ops->read(pcm, buffer, size);
|
1998-08-13 15:42:56 +00:00
|
|
|
}
|
1999-11-06 23:47:07 +00:00
|
|
|
|
2000-05-08 18:53:38 +00:00
|
|
|
ssize_t snd_pcm_readv(snd_pcm_t *pcm, const struct iovec *vector, unsigned long count)
|
2000-01-31 12:40:05 +00:00
|
|
|
{
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm);
|
|
|
|
|
assert(pcm->stream[SND_PCM_STREAM_CAPTURE].valid_setup);
|
|
|
|
|
assert(count == 0 || vector);
|
2000-05-08 18:53:38 +00:00
|
|
|
return pcm->ops->readv(pcm, vector, count);
|
|
|
|
|
}
|
2000-01-31 12:40:05 +00:00
|
|
|
|
2000-05-27 16:52:17 +00:00
|
|
|
int snd_pcm_file_descriptor(snd_pcm_t* pcm, int stream)
|
2000-05-08 18:53:38 +00:00
|
|
|
{
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm);
|
|
|
|
|
assert(stream >= 0 && stream <= 1);
|
|
|
|
|
assert(pcm->stream[stream].open);
|
2000-05-27 16:52:17 +00:00
|
|
|
return pcm->ops->file_descriptor(pcm, stream);
|
2000-01-31 12:40:05 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-27 16:52:17 +00:00
|
|
|
int snd_pcm_channels_mask(snd_pcm_t *pcm, int stream, bitset_t *client_vmask)
|
1999-11-06 23:47:07 +00:00
|
|
|
{
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm);
|
|
|
|
|
assert(stream >= 0 && stream <= 1);
|
|
|
|
|
assert(pcm->stream[stream].valid_setup);
|
2000-05-27 16:52:17 +00:00
|
|
|
return pcm->ops->channels_mask(pcm, stream, client_vmask);
|
1999-11-06 23:47:07 +00:00
|
|
|
}
|
|
|
|
|
|
2000-05-25 08:36:58 +00:00
|
|
|
typedef struct {
|
|
|
|
|
int value;
|
|
|
|
|
const char* name;
|
|
|
|
|
const char* desc;
|
|
|
|
|
} assoc_t;
|
|
|
|
|
|
|
|
|
|
static assoc_t *assoc_value(int value, assoc_t *alist)
|
|
|
|
|
{
|
|
|
|
|
while (alist->desc) {
|
|
|
|
|
if (value == alist->value)
|
|
|
|
|
return alist;
|
|
|
|
|
alist++;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static assoc_t *assoc_name(const char *name, assoc_t *alist)
|
|
|
|
|
{
|
|
|
|
|
while (alist->name) {
|
|
|
|
|
if (strcasecmp(name, alist->name) == 0)
|
|
|
|
|
return alist;
|
|
|
|
|
alist++;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char *assoc(int value, assoc_t *alist)
|
|
|
|
|
{
|
|
|
|
|
assoc_t *a;
|
|
|
|
|
a = assoc_value(value, alist);
|
|
|
|
|
if (a)
|
|
|
|
|
return a->name;
|
|
|
|
|
return "UNKNOWN";
|
|
|
|
|
}
|
|
|
|
|
|
2000-05-27 16:52:17 +00:00
|
|
|
#define STREAM(v) { SND_PCM_STREAM_##v, #v, #v }
|
2000-05-25 08:36:58 +00:00
|
|
|
#define MODE(v) { SND_PCM_MODE_##v, #v, #v }
|
|
|
|
|
#define FMT(v, d) { SND_PCM_SFMT_##v, #v, d }
|
|
|
|
|
#define XRUN(v) { SND_PCM_XRUN_##v, #v, #v }
|
|
|
|
|
#define START(v) { SND_PCM_START_##v, #v, #v }
|
|
|
|
|
#define FILL(v) { SND_PCM_FILL_##v, #v, #v }
|
|
|
|
|
#define END { 0, NULL, NULL }
|
|
|
|
|
|
2000-05-27 16:52:17 +00:00
|
|
|
static assoc_t streams[] = { STREAM(PLAYBACK), STREAM(CAPTURE), END };
|
|
|
|
|
static assoc_t modes[] = { MODE(FRAME), MODE(FRAGMENT), END };
|
2000-05-25 08:36:58 +00:00
|
|
|
static assoc_t fmts[] = {
|
|
|
|
|
FMT(S8, "Signed 8-bit"),
|
|
|
|
|
FMT(U8, "Unsigned 8-bit"),
|
|
|
|
|
FMT(S16_LE, "Signed 16-bit Little Endian"),
|
|
|
|
|
FMT(S16_BE, "Signed 16-bit Big Endian"),
|
|
|
|
|
FMT(U16_LE, "Unsigned 16-bit Little Endian"),
|
|
|
|
|
FMT(U16_BE, "Unsigned 16-bit Big Endian"),
|
|
|
|
|
FMT(S24_LE, "Signed 24-bit Little Endian"),
|
|
|
|
|
FMT(S24_BE, "Signed 24-bit Big Endian"),
|
|
|
|
|
FMT(U24_LE, "Unsigned 24-bit Little Endian"),
|
|
|
|
|
FMT(U24_BE, "Unsigned 24-bit Big Endian"),
|
|
|
|
|
FMT(S32_LE, "Signed 32-bit Little Endian"),
|
|
|
|
|
FMT(S32_BE, "Signed 32-bit Big Endian"),
|
|
|
|
|
FMT(U32_LE, "Unsigned 32-bit Little Endian"),
|
|
|
|
|
FMT(U32_BE, "Unsigned 32-bit Big Endian"),
|
|
|
|
|
FMT(FLOAT_LE, "Float Little Endian"),
|
|
|
|
|
FMT(FLOAT_BE, "Float Big Endian"),
|
|
|
|
|
FMT(FLOAT64_LE, "Float64 Little Endian"),
|
|
|
|
|
FMT(FLOAT64_BE, "Float64 Big Endian"),
|
|
|
|
|
FMT(IEC958_SUBFRAME_LE, "IEC-958 Little Endian"),
|
|
|
|
|
FMT(IEC958_SUBFRAME_BE, "IEC-958 Big Endian"),
|
|
|
|
|
FMT(MU_LAW, "Mu-Law"),
|
|
|
|
|
FMT(A_LAW, "A-Law"),
|
|
|
|
|
FMT(IMA_ADPCM, "Ima-ADPCM"),
|
|
|
|
|
FMT(MPEG, "MPEG"),
|
|
|
|
|
FMT(GSM, "GSM"),
|
|
|
|
|
FMT(SPECIAL, "Special"),
|
|
|
|
|
END
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static assoc_t starts[] = { START(GO), START(DATA), START(FULL), END };
|
|
|
|
|
static assoc_t xruns[] = { XRUN(FLUSH), XRUN(DRAIN), END };
|
|
|
|
|
static assoc_t fills[] = { FILL(NONE), FILL(SILENCE_WHOLE), FILL(SILENCE), END };
|
2000-05-26 17:58:24 +00:00
|
|
|
static assoc_t onoff[] = { {0, "OFF", NULL}, {1, "ON", NULL}, {-1, "ON", NULL}, END };
|
2000-05-25 08:36:58 +00:00
|
|
|
|
2000-05-27 16:52:17 +00:00
|
|
|
int snd_pcm_dump_setup(snd_pcm_t *pcm, int stream, FILE *fp)
|
2000-05-25 08:36:58 +00:00
|
|
|
{
|
2000-06-01 21:58:25 +00:00
|
|
|
snd_pcm_stream_t *str;
|
2000-05-27 16:52:17 +00:00
|
|
|
snd_pcm_stream_setup_t *setup;
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(pcm);
|
|
|
|
|
assert(stream >= 0 && stream <= 1);
|
2000-05-27 16:52:17 +00:00
|
|
|
str = &pcm->stream[stream];
|
2000-06-04 13:13:01 +00:00
|
|
|
assert(str->valid_setup);
|
2000-05-27 16:52:17 +00:00
|
|
|
setup = &str->setup;
|
|
|
|
|
fprintf(fp, "stream: %s\n", assoc(setup->stream, streams));
|
2000-05-25 08:36:58 +00:00
|
|
|
fprintf(fp, "mode: %s\n", assoc(setup->mode, modes));
|
|
|
|
|
fprintf(fp, "format: %s\n", assoc(setup->format.format, fmts));
|
2000-05-27 16:52:17 +00:00
|
|
|
fprintf(fp, "channels: %d\n", setup->format.channels);
|
2000-05-25 08:36:58 +00:00
|
|
|
fprintf(fp, "rate: %d\n", setup->format.rate);
|
|
|
|
|
// digital
|
|
|
|
|
fprintf(fp, "start_mode: %s\n", assoc(setup->start_mode, starts));
|
|
|
|
|
fprintf(fp, "xrun_mode: %s\n", assoc(setup->xrun_mode, xruns));
|
|
|
|
|
fprintf(fp, "time: %s\n", assoc(setup->time, onoff));
|
|
|
|
|
// ust_time
|
|
|
|
|
// sync
|
|
|
|
|
fprintf(fp, "buffer_size: %d\n", setup->buffer_size);
|
|
|
|
|
fprintf(fp, "frag_size: %d\n", setup->frag_size);
|
|
|
|
|
fprintf(fp, "frags: %d\n", setup->frags);
|
2000-06-10 12:39:51 +00:00
|
|
|
fprintf(fp, "frame_boundary: %d\n", setup->frame_boundary);
|
2000-05-25 08:36:58 +00:00
|
|
|
fprintf(fp, "msbits_per_sample: %d\n", setup->msbits_per_sample);
|
2000-06-10 12:39:51 +00:00
|
|
|
fprintf(fp, "frames_min: %d\n", setup->frames_min);
|
|
|
|
|
fprintf(fp, "frames_align: %d\n", setup->frames_align);
|
|
|
|
|
fprintf(fp, "frames_xrun_max: %d\n", setup->frames_xrun_max);
|
2000-05-25 08:36:58 +00:00
|
|
|
fprintf(fp, "fill_mode: %s\n", assoc(setup->fill_mode, fills));
|
2000-06-10 12:39:51 +00:00
|
|
|
fprintf(fp, "frames_fill_max: %d\n", setup->frames_fill_max);
|
2000-05-25 08:36:58 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char *snd_pcm_get_format_name(int format)
|
|
|
|
|
{
|
|
|
|
|
assoc_t *a = assoc_value(format, fmts);
|
|
|
|
|
if (a)
|
|
|
|
|
return a->name;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char *snd_pcm_get_format_description(int format)
|
|
|
|
|
{
|
|
|
|
|
assoc_t *a = assoc_value(format, fmts);
|
|
|
|
|
if (a)
|
|
|
|
|
return a->desc;
|
|
|
|
|
return "Unknown";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int snd_pcm_get_format_value(const char* name)
|
|
|
|
|
{
|
|
|
|
|
assoc_t *a = assoc_name(name, fmts);
|
|
|
|
|
if (a)
|
|
|
|
|
return a->value;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2000-06-10 12:39:51 +00:00
|
|
|
ssize_t snd_pcm_bytes_to_frames(snd_pcm_t *pcm, int stream, int bytes)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_stream_t *str;
|
|
|
|
|
assert(pcm);
|
|
|
|
|
assert(stream >= 0 && stream <= 1);
|
|
|
|
|
str = &pcm->stream[stream];
|
|
|
|
|
assert(str->valid_setup);
|
|
|
|
|
return bytes * 8 / str->bits_per_frame;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ssize_t snd_pcm_frames_to_bytes(snd_pcm_t *pcm, int stream, int frames)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_stream_t *str;
|
|
|
|
|
assert(pcm);
|
|
|
|
|
assert(stream >= 0 && stream <= 1);
|
|
|
|
|
str = &pcm->stream[stream];
|
|
|
|
|
assert(str->valid_setup);
|
|
|
|
|
return frames * str->bits_per_frame / 8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ssize_t snd_pcm_bytes_to_samples(snd_pcm_t *pcm, int stream, int bytes)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_stream_t *str;
|
|
|
|
|
assert(pcm);
|
|
|
|
|
assert(stream >= 0 && stream <= 1);
|
|
|
|
|
str = &pcm->stream[stream];
|
|
|
|
|
assert(str->valid_setup);
|
|
|
|
|
return bytes * 8 / str->bits_per_sample;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ssize_t snd_pcm_samples_to_bytes(snd_pcm_t *pcm, int stream, int samples)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_stream_t *str;
|
|
|
|
|
assert(pcm);
|
|
|
|
|
assert(stream >= 0 && stream <= 1);
|
|
|
|
|
str = &pcm->stream[stream];
|
|
|
|
|
assert(str->valid_setup);
|
|
|
|
|
return samples * str->bits_per_sample / 8;
|
|
|
|
|
}
|