2000-09-24 09:57:26 +00:00
|
|
|
/*
|
|
|
|
|
* PCM - Common plugin code
|
|
|
|
|
* Copyright (c) 2000 by Abramo Bagnara <abramo@alsa-project.org>
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2000-10-14 19:43:14 +00:00
|
|
|
#include <sys/shm.h>
|
|
|
|
|
#include <limits.h>
|
2000-09-24 09:57:26 +00:00
|
|
|
#include "pcm_local.h"
|
|
|
|
|
#include "pcm_plugin.h"
|
|
|
|
|
|
|
|
|
|
int snd_pcm_plugin_close(snd_pcm_t *pcm)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
int err = 0;
|
|
|
|
|
if (plugin->close_slave)
|
|
|
|
|
err = snd_pcm_close(plugin->slave);
|
|
|
|
|
free(plugin);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int snd_pcm_plugin_nonblock(snd_pcm_t *pcm, int nonblock)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
return snd_pcm_nonblock(plugin->slave, nonblock);
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-11 12:37:27 +00:00
|
|
|
int snd_pcm_plugin_async(snd_pcm_t *pcm, int sig, pid_t pid)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
return snd_pcm_async(plugin->slave, sig, pid);
|
|
|
|
|
}
|
|
|
|
|
|
2000-09-24 09:57:26 +00:00
|
|
|
int snd_pcm_plugin_info(snd_pcm_t *pcm, snd_pcm_info_t * info)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
return snd_pcm_info(plugin->slave, info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int snd_pcm_plugin_channel_info(snd_pcm_t *pcm, snd_pcm_channel_info_t * info)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
return snd_pcm_channel_info(plugin->slave, info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int snd_pcm_plugin_channel_params(snd_pcm_t *pcm, snd_pcm_channel_params_t * params)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
return snd_pcm_channel_params(plugin->slave, params);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int snd_pcm_plugin_channel_setup(snd_pcm_t *pcm, snd_pcm_channel_setup_t * setup)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
int err;
|
|
|
|
|
err = snd_pcm_channel_setup(plugin->slave, setup);
|
|
|
|
|
if (err < 0)
|
|
|
|
|
return err;
|
2000-10-14 10:31:34 +00:00
|
|
|
if (!pcm->mmap_info)
|
|
|
|
|
return 0;
|
2000-09-24 09:57:26 +00:00
|
|
|
if (pcm->setup.mmap_shape == SND_PCM_MMAP_INTERLEAVED) {
|
2000-10-14 10:31:34 +00:00
|
|
|
setup->running_area.addr = pcm->mmap_info->addr;
|
2000-10-07 16:59:48 +00:00
|
|
|
setup->running_area.first = setup->channel * pcm->bits_per_sample;
|
|
|
|
|
setup->running_area.step = pcm->bits_per_frame;
|
2000-09-24 09:57:26 +00:00
|
|
|
} else {
|
2000-10-14 10:31:34 +00:00
|
|
|
setup->running_area.addr = pcm->mmap_info->addr + setup->channel * pcm->setup.buffer_size * pcm->bits_per_sample / 8;
|
2000-10-07 16:59:48 +00:00
|
|
|
setup->running_area.first = 0;
|
|
|
|
|
setup->running_area.step = pcm->bits_per_sample;
|
2000-09-24 09:57:26 +00:00
|
|
|
}
|
2000-10-07 16:59:48 +00:00
|
|
|
setup->stopped_area = setup->running_area;
|
2000-09-24 09:57:26 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int snd_pcm_plugin_status(snd_pcm_t *pcm, snd_pcm_status_t * status)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
int err = snd_pcm_status(plugin->slave, status);
|
|
|
|
|
if (err < 0)
|
|
|
|
|
return err;
|
2000-10-05 10:26:07 +00:00
|
|
|
status->avail = snd_pcm_avail_update(pcm);
|
2000-09-24 09:57:26 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int snd_pcm_plugin_state(snd_pcm_t *pcm)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
return snd_pcm_state(plugin->slave);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int snd_pcm_plugin_delay(snd_pcm_t *pcm, ssize_t *delayp)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
2000-10-07 16:59:48 +00:00
|
|
|
ssize_t sd;
|
2000-09-24 09:57:26 +00:00
|
|
|
int err = snd_pcm_delay(plugin->slave, &sd);
|
|
|
|
|
if (err < 0)
|
|
|
|
|
return err;
|
|
|
|
|
if (plugin->client_frames)
|
|
|
|
|
sd = plugin->client_frames(pcm, sd);
|
2000-10-07 16:59:48 +00:00
|
|
|
*delayp = sd + snd_pcm_mmap_delay(pcm);
|
2000-09-24 09:57:26 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int snd_pcm_plugin_prepare(snd_pcm_t *pcm)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
int err = snd_pcm_prepare(plugin->slave);
|
|
|
|
|
if (err < 0)
|
|
|
|
|
return err;
|
2000-10-14 10:31:34 +00:00
|
|
|
plugin->hw_ptr = 0;
|
|
|
|
|
plugin->appl_ptr = 0;
|
2000-09-24 09:57:26 +00:00
|
|
|
if (plugin->init) {
|
|
|
|
|
err = plugin->init(pcm);
|
|
|
|
|
if (err < 0)
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int snd_pcm_plugin_start(snd_pcm_t *pcm)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
return snd_pcm_start(plugin->slave);
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-02 06:59:59 +00:00
|
|
|
int snd_pcm_plugin_drop(snd_pcm_t *pcm)
|
2000-09-24 09:57:26 +00:00
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
2000-10-02 06:59:59 +00:00
|
|
|
return snd_pcm_drop(plugin->slave);
|
2000-09-24 09:57:26 +00:00
|
|
|
}
|
|
|
|
|
|
2000-09-29 20:49:18 +00:00
|
|
|
int snd_pcm_plugin_drain(snd_pcm_t *pcm)
|
2000-09-24 09:57:26 +00:00
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
2000-09-29 20:49:18 +00:00
|
|
|
return snd_pcm_drain(plugin->slave);
|
2000-09-24 09:57:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int snd_pcm_plugin_pause(snd_pcm_t *pcm, int enable)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
return snd_pcm_pause(plugin->slave, enable);
|
|
|
|
|
}
|
|
|
|
|
|
2000-09-26 09:46:05 +00:00
|
|
|
ssize_t snd_pcm_plugin_rewind(snd_pcm_t *pcm, size_t frames)
|
2000-09-24 09:57:26 +00:00
|
|
|
{
|
2000-09-26 09:46:05 +00:00
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
2000-10-07 16:59:48 +00:00
|
|
|
ssize_t n = snd_pcm_mmap_hw_avail(pcm);
|
2000-10-05 10:26:07 +00:00
|
|
|
assert(n >= 0);
|
2000-09-26 09:46:05 +00:00
|
|
|
if (n > 0) {
|
|
|
|
|
if ((size_t)n > frames)
|
|
|
|
|
n = frames;
|
|
|
|
|
frames -= n;
|
|
|
|
|
}
|
|
|
|
|
if (frames > 0) {
|
|
|
|
|
ssize_t err = snd_pcm_rewind(plugin->slave, frames);
|
|
|
|
|
if (err < 0) {
|
2000-10-05 10:26:07 +00:00
|
|
|
if (n <= 0)
|
|
|
|
|
return err;
|
|
|
|
|
goto _end;
|
2000-09-26 09:46:05 +00:00
|
|
|
}
|
|
|
|
|
if (plugin->client_frames)
|
|
|
|
|
err = plugin->client_frames(pcm, err);
|
2000-10-05 10:26:07 +00:00
|
|
|
snd_pcm_mmap_hw_backward(pcm, err);
|
2000-09-26 09:46:05 +00:00
|
|
|
n += err;
|
|
|
|
|
}
|
2000-10-05 10:26:07 +00:00
|
|
|
_end:
|
|
|
|
|
snd_pcm_mmap_appl_backward(pcm, n);
|
2000-09-26 09:46:05 +00:00
|
|
|
return n;
|
2000-09-24 09:57:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ssize_t snd_pcm_plugin_writei(snd_pcm_t *pcm, const void *buffer, size_t size)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
snd_pcm_channel_area_t areas[pcm->setup.format.channels];
|
|
|
|
|
ssize_t frames;
|
|
|
|
|
snd_pcm_areas_from_buf(pcm, areas, (void*)buffer);
|
|
|
|
|
frames = snd_pcm_write_areas(pcm, areas, 0, size, plugin->write);
|
|
|
|
|
if (frames > 0)
|
|
|
|
|
snd_pcm_mmap_appl_forward(pcm, frames);
|
|
|
|
|
return frames;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ssize_t snd_pcm_plugin_writen(snd_pcm_t *pcm, void **bufs, size_t size)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
snd_pcm_channel_area_t areas[pcm->setup.format.channels];
|
|
|
|
|
ssize_t frames;
|
|
|
|
|
snd_pcm_areas_from_bufs(pcm, areas, bufs);
|
|
|
|
|
frames = snd_pcm_write_areas(pcm, areas, 0, size, plugin->write);
|
|
|
|
|
if (frames > 0)
|
|
|
|
|
snd_pcm_mmap_appl_forward(pcm, frames);
|
|
|
|
|
return frames;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ssize_t snd_pcm_plugin_readi(snd_pcm_t *pcm, void *buffer, size_t size)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
snd_pcm_channel_area_t areas[pcm->setup.format.channels];
|
|
|
|
|
ssize_t frames;
|
|
|
|
|
snd_pcm_areas_from_buf(pcm, areas, buffer);
|
|
|
|
|
frames = snd_pcm_read_areas(pcm, areas, 0, size, plugin->read);
|
|
|
|
|
if (frames > 0)
|
|
|
|
|
snd_pcm_mmap_appl_forward(pcm, frames);
|
|
|
|
|
return frames;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ssize_t snd_pcm_plugin_readn(snd_pcm_t *pcm, void **bufs, size_t size)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
snd_pcm_channel_area_t areas[pcm->setup.format.channels];
|
|
|
|
|
ssize_t frames;
|
|
|
|
|
snd_pcm_areas_from_bufs(pcm, areas, bufs);
|
|
|
|
|
frames = snd_pcm_read_areas(pcm, areas, 0, size, plugin->read);
|
|
|
|
|
if (frames > 0)
|
|
|
|
|
snd_pcm_mmap_appl_forward(pcm, frames);
|
|
|
|
|
return frames;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ssize_t snd_pcm_plugin_mmap_forward(snd_pcm_t *pcm, size_t client_size)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
snd_pcm_t *slave = plugin->slave;
|
|
|
|
|
size_t client_xfer = 0;
|
|
|
|
|
size_t slave_xfer = 0;
|
|
|
|
|
ssize_t err = 0;
|
|
|
|
|
ssize_t slave_size;
|
|
|
|
|
if (pcm->stream == SND_PCM_STREAM_CAPTURE) {
|
|
|
|
|
snd_pcm_mmap_appl_forward(pcm, client_size);
|
2000-10-05 10:26:07 +00:00
|
|
|
// snd_pcm_plugin_avail_update(pcm);
|
2000-09-24 09:57:26 +00:00
|
|
|
return client_size;
|
|
|
|
|
}
|
|
|
|
|
slave_size = snd_pcm_avail_update(slave);
|
|
|
|
|
if (slave_size <= 0)
|
|
|
|
|
return slave_size;
|
|
|
|
|
while (client_xfer < client_size &&
|
|
|
|
|
slave_xfer < (size_t)slave_size) {
|
|
|
|
|
size_t slave_frames = slave_size - slave_xfer;
|
|
|
|
|
size_t client_frames = client_size - client_xfer;
|
2000-10-05 10:26:07 +00:00
|
|
|
size_t offset = snd_pcm_mmap_hw_offset(pcm);
|
|
|
|
|
size_t cont = pcm->setup.buffer_size - offset;
|
2000-09-24 09:57:26 +00:00
|
|
|
if (cont < client_frames)
|
|
|
|
|
client_frames = cont;
|
2000-10-07 16:59:48 +00:00
|
|
|
err = plugin->write(pcm, pcm->running_areas, offset,
|
2000-09-24 09:57:26 +00:00
|
|
|
client_frames, &slave_frames);
|
|
|
|
|
if (err < 0)
|
|
|
|
|
break;
|
|
|
|
|
snd_pcm_mmap_appl_forward(pcm, err);
|
|
|
|
|
client_xfer += err;
|
|
|
|
|
slave_xfer += slave_frames;
|
|
|
|
|
}
|
|
|
|
|
if (client_xfer > 0)
|
|
|
|
|
return client_xfer;
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ssize_t snd_pcm_plugin_avail_update(snd_pcm_t *pcm)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
snd_pcm_t *slave = plugin->slave;
|
|
|
|
|
size_t client_xfer;
|
|
|
|
|
size_t slave_xfer = 0;
|
|
|
|
|
ssize_t err = 0;
|
|
|
|
|
size_t client_size;
|
|
|
|
|
ssize_t slave_size = snd_pcm_avail_update(slave);
|
|
|
|
|
if (slave_size <= 0)
|
|
|
|
|
return slave_size;
|
|
|
|
|
if (pcm->stream == SND_PCM_STREAM_PLAYBACK ||
|
2000-10-14 10:31:34 +00:00
|
|
|
!pcm->mmap_info)
|
2000-09-24 09:57:26 +00:00
|
|
|
return plugin->client_frames ?
|
|
|
|
|
plugin->client_frames(pcm, slave_size) : slave_size;
|
|
|
|
|
client_xfer = snd_pcm_mmap_capture_avail(pcm);
|
|
|
|
|
client_size = pcm->setup.buffer_size;
|
|
|
|
|
while (slave_xfer < (size_t)slave_size &&
|
|
|
|
|
client_xfer < client_size) {
|
|
|
|
|
size_t slave_frames = slave_size - slave_xfer;
|
|
|
|
|
size_t client_frames = client_size - client_xfer;
|
2000-10-05 10:26:07 +00:00
|
|
|
size_t offset = snd_pcm_mmap_hw_offset(pcm);
|
|
|
|
|
size_t cont = pcm->setup.buffer_size - offset;
|
2000-09-24 09:57:26 +00:00
|
|
|
if (cont < client_frames)
|
|
|
|
|
client_frames = cont;
|
2000-10-07 16:59:48 +00:00
|
|
|
err = plugin->read(pcm, pcm->running_areas, offset,
|
2000-09-24 09:57:26 +00:00
|
|
|
client_frames, &slave_frames);
|
|
|
|
|
if (err < 0)
|
|
|
|
|
break;
|
|
|
|
|
client_xfer += err;
|
|
|
|
|
slave_xfer += slave_frames;
|
|
|
|
|
}
|
|
|
|
|
if (client_xfer > 0)
|
|
|
|
|
return client_xfer;
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-16 11:34:11 +00:00
|
|
|
int snd_pcm_plugin_set_avail_min(snd_pcm_t *pcm, size_t frames)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
snd_pcm_t *slave = plugin->slave;
|
|
|
|
|
return snd_pcm_set_avail_min(slave, frames);
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-14 10:31:34 +00:00
|
|
|
int snd_pcm_plugin_mmap(snd_pcm_t *pcm)
|
2000-09-24 09:57:26 +00:00
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
2000-10-14 10:31:34 +00:00
|
|
|
snd_pcm_t *slave = plugin->slave;
|
2000-10-14 19:43:14 +00:00
|
|
|
snd_pcm_mmap_info_t *i;
|
2000-10-14 10:31:34 +00:00
|
|
|
int err = snd_pcm_mmap(slave);
|
|
|
|
|
if (err < 0)
|
|
|
|
|
return err;
|
2000-10-14 19:43:14 +00:00
|
|
|
i = calloc(1, sizeof(*i));
|
|
|
|
|
if (!i)
|
2000-10-14 10:31:34 +00:00
|
|
|
return -ENOMEM;
|
2000-10-14 19:43:14 +00:00
|
|
|
i->type = SND_PCM_MMAP_USER;
|
|
|
|
|
i->size = snd_pcm_frames_to_bytes(pcm, pcm->setup.buffer_size);
|
|
|
|
|
i->u.user.shmid = shmget(IPC_PRIVATE, i->size, 0666);
|
|
|
|
|
if (i->u.user.shmid < 0) {
|
|
|
|
|
SYSERR("shmget failed");
|
|
|
|
|
free(i);
|
|
|
|
|
return -errno;
|
2000-10-14 10:31:34 +00:00
|
|
|
}
|
2000-10-14 19:43:14 +00:00
|
|
|
i->addr = shmat(i->u.user.shmid, 0, 0);
|
|
|
|
|
if (i->addr == (void*) -1) {
|
|
|
|
|
SYSERR("shmat failed");
|
|
|
|
|
free(i);
|
|
|
|
|
return -errno;
|
|
|
|
|
}
|
|
|
|
|
pcm->mmap_info = i;
|
|
|
|
|
pcm->mmap_info_count = 1;
|
2000-09-24 09:57:26 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-14 10:31:34 +00:00
|
|
|
int snd_pcm_plugin_munmap(snd_pcm_t *pcm)
|
2000-09-24 09:57:26 +00:00
|
|
|
{
|
2000-10-14 10:31:34 +00:00
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
snd_pcm_t *slave = plugin->slave;
|
|
|
|
|
int err = snd_pcm_munmap(slave);
|
|
|
|
|
if (err < 0)
|
|
|
|
|
return err;
|
2000-10-14 19:43:14 +00:00
|
|
|
if (shmdt(pcm->mmap_info->addr) < 0) {
|
|
|
|
|
SYSERR("shmdt failed");
|
|
|
|
|
return -errno;
|
|
|
|
|
}
|
|
|
|
|
if (shmctl(pcm->mmap_info->u.user.shmid, IPC_RMID, 0) < 0) {
|
|
|
|
|
SYSERR("shmctl IPC_RMID failed");
|
|
|
|
|
return -errno;
|
|
|
|
|
}
|
2000-10-14 10:31:34 +00:00
|
|
|
free(pcm->mmap_info);
|
|
|
|
|
pcm->mmap_info_count = 0;
|
|
|
|
|
pcm->mmap_info = 0;
|
2000-09-24 09:57:26 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int snd_pcm_plugin_poll_descriptor(snd_pcm_t *pcm)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
return snd_pcm_poll_descriptor(plugin->slave);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int snd_pcm_plugin_channels_mask(snd_pcm_t *pcm, bitset_t *cmask)
|
|
|
|
|
{
|
|
|
|
|
snd_pcm_plugin_t *plugin = pcm->private;
|
|
|
|
|
return snd_pcm_channels_mask(plugin->slave, cmask);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int conv_index(int src_format, int dst_format)
|
|
|
|
|
{
|
|
|
|
|
int src_endian, dst_endian, sign, src_width, dst_width;
|
|
|
|
|
|
|
|
|
|
sign = (snd_pcm_format_signed(src_format) !=
|
|
|
|
|
snd_pcm_format_signed(dst_format));
|
|
|
|
|
#ifdef SND_LITTLE_ENDIAN
|
|
|
|
|
src_endian = snd_pcm_format_big_endian(src_format);
|
|
|
|
|
dst_endian = snd_pcm_format_big_endian(dst_format);
|
|
|
|
|
#else
|
|
|
|
|
src_endian = snd_pcm_format_little_endian(src_format);
|
|
|
|
|
dst_endian = snd_pcm_format_little_endian(dst_format);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (src_endian < 0)
|
|
|
|
|
src_endian = 0;
|
|
|
|
|
if (dst_endian < 0)
|
|
|
|
|
dst_endian = 0;
|
|
|
|
|
|
|
|
|
|
src_width = snd_pcm_format_width(src_format) / 8 - 1;
|
|
|
|
|
dst_width = snd_pcm_format_width(dst_format) / 8 - 1;
|
|
|
|
|
|
|
|
|
|
return src_width * 32 + src_endian * 16 + sign * 8 + dst_width * 2 + dst_endian;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int getput_index(int format)
|
|
|
|
|
{
|
|
|
|
|
int sign, width, endian;
|
|
|
|
|
sign = !snd_pcm_format_signed(format);
|
|
|
|
|
width = snd_pcm_format_width(format) / 8 - 1;
|
|
|
|
|
#ifdef SND_LITTLE_ENDIAN
|
|
|
|
|
endian = snd_pcm_format_big_endian(format);
|
|
|
|
|
#else
|
|
|
|
|
endian = snd_pcm_format_little_endian(format);
|
|
|
|
|
#endif
|
|
|
|
|
if (endian < 0)
|
|
|
|
|
endian = 0;
|
|
|
|
|
return width * 4 + endian * 2 + sign;
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-14 10:31:34 +00:00
|
|
|
snd_pcm_fast_ops_t snd_pcm_plugin_fast_ops = {
|
2000-09-24 09:57:26 +00:00
|
|
|
status: snd_pcm_plugin_status,
|
|
|
|
|
state: snd_pcm_plugin_state,
|
|
|
|
|
delay: snd_pcm_plugin_delay,
|
|
|
|
|
prepare: snd_pcm_plugin_prepare,
|
|
|
|
|
start: snd_pcm_plugin_start,
|
2000-10-02 06:59:59 +00:00
|
|
|
drop: snd_pcm_plugin_drop,
|
2000-09-29 20:49:18 +00:00
|
|
|
drain: snd_pcm_plugin_drain,
|
2000-09-24 09:57:26 +00:00
|
|
|
pause: snd_pcm_plugin_pause,
|
2000-09-26 09:46:05 +00:00
|
|
|
rewind: snd_pcm_plugin_rewind,
|
2000-09-24 09:57:26 +00:00
|
|
|
writei: snd_pcm_plugin_writei,
|
|
|
|
|
writen: snd_pcm_plugin_writen,
|
|
|
|
|
readi: snd_pcm_plugin_readi,
|
|
|
|
|
readn: snd_pcm_plugin_readn,
|
|
|
|
|
channels_mask: snd_pcm_plugin_channels_mask,
|
|
|
|
|
avail_update: snd_pcm_plugin_avail_update,
|
|
|
|
|
mmap_forward: snd_pcm_plugin_mmap_forward,
|
2000-10-16 11:34:11 +00:00
|
|
|
set_avail_min: snd_pcm_plugin_set_avail_min,
|
2000-09-24 09:57:26 +00:00
|
|
|
};
|
|
|
|
|
|