2002-01-13 11:11:42 +00:00
|
|
|
/**
|
|
|
|
|
* \file pcm/pcm_copy.c
|
|
|
|
|
* \ingroup PCM_Plugins
|
|
|
|
|
* \brief PCM Copy Plugin Interface
|
|
|
|
|
* \author Abramo Bagnara <abramo@alsa-project.org>
|
|
|
|
|
* \date 2000-2001
|
|
|
|
|
*/
|
2000-12-11 11:16:07 +00:00
|
|
|
/*
|
|
|
|
|
* PCM - Copy conversion
|
|
|
|
|
* Copyright (c) 2000 by Abramo Bagnara <abramo@alsa-project.org>
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or modify
|
2001-12-30 09:22:54 +00:00
|
|
|
* it under the terms of the GNU Lesser General Public License as
|
|
|
|
|
* published by the Free Software Foundation; either version 2.1 of
|
2000-12-11 11:16:07 +00:00
|
|
|
* 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
|
2001-12-30 09:22:54 +00:00
|
|
|
* GNU Lesser General Public License for more details.
|
2000-12-11 11:16:07 +00:00
|
|
|
*
|
2001-12-30 09:22:54 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2000-12-11 11:16:07 +00:00
|
|
|
* License along with this library; if not, write to the Free Software
|
2001-12-30 09:22:54 +00:00
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2000-12-11 11:16:07 +00:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <byteswap.h>
|
|
|
|
|
#include "pcm_local.h"
|
|
|
|
|
#include "pcm_plugin.h"
|
|
|
|
|
|
2001-10-24 14:14:11 +00:00
|
|
|
#ifndef PIC
|
|
|
|
|
/* entry for static linking */
|
|
|
|
|
const char *_snd_module_pcm_copy = "";
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-01-13 11:11:42 +00:00
|
|
|
#ifndef DOC_HIDDEN
|
2000-12-11 11:16:07 +00:00
|
|
|
typedef struct {
|
|
|
|
|
/* This field need to be the first */
|
|
|
|
|
snd_pcm_plugin_t plug;
|
|
|
|
|
} snd_pcm_copy_t;
|
2002-01-13 11:11:42 +00:00
|
|
|
#endif
|
2000-12-11 11:16:07 +00:00
|
|
|
|
2001-01-18 18:20:31 +00:00
|
|
|
static int snd_pcm_copy_hw_refine_cprepare(snd_pcm_t *pcm ATTRIBUTE_UNUSED, snd_pcm_hw_params_t *params)
|
2000-12-11 11:16:07 +00:00
|
|
|
{
|
|
|
|
|
int err;
|
2001-03-21 16:31:31 +00:00
|
|
|
snd_pcm_access_mask_t access_mask = { SND_PCM_ACCBIT_SHM };
|
2001-02-04 17:03:17 +00:00
|
|
|
err = _snd_pcm_hw_param_set_mask(params, SND_PCM_HW_PARAM_ACCESS,
|
2001-02-04 18:57:05 +00:00
|
|
|
&access_mask);
|
2000-12-21 20:44:10 +00:00
|
|
|
if (err < 0)
|
|
|
|
|
return err;
|
|
|
|
|
params->info &= ~(SND_PCM_INFO_MMAP | SND_PCM_INFO_MMAP_VALID);
|
2001-01-18 18:20:31 +00:00
|
|
|
return 0;
|
2000-12-11 11:16:07 +00:00
|
|
|
}
|
|
|
|
|
|
2001-01-18 18:20:31 +00:00
|
|
|
static int snd_pcm_copy_hw_refine_sprepare(snd_pcm_t *pcm ATTRIBUTE_UNUSED, snd_pcm_hw_params_t *sparams)
|
2000-12-11 11:16:07 +00:00
|
|
|
{
|
2001-02-04 18:57:05 +00:00
|
|
|
snd_pcm_access_mask_t saccess_mask = { SND_PCM_ACCBIT_MMAP };
|
2001-01-18 18:20:31 +00:00
|
|
|
_snd_pcm_hw_params_any(sparams);
|
2001-02-04 17:03:17 +00:00
|
|
|
_snd_pcm_hw_param_set_mask(sparams, SND_PCM_HW_PARAM_ACCESS,
|
2001-02-04 18:57:05 +00:00
|
|
|
&saccess_mask);
|
2001-01-18 18:20:31 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
2000-12-21 20:44:10 +00:00
|
|
|
|
2001-01-18 18:20:31 +00:00
|
|
|
static int snd_pcm_copy_hw_refine_schange(snd_pcm_t *pcm ATTRIBUTE_UNUSED, snd_pcm_hw_params_t *params,
|
|
|
|
|
snd_pcm_hw_params_t *sparams)
|
|
|
|
|
{
|
|
|
|
|
int err;
|
|
|
|
|
unsigned int links = ~SND_PCM_HW_PARBIT_ACCESS;
|
|
|
|
|
err = _snd_pcm_hw_params_refine(sparams, links, params);
|
2000-12-21 20:44:10 +00:00
|
|
|
if (err < 0)
|
|
|
|
|
return err;
|
2001-01-18 18:20:31 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int snd_pcm_copy_hw_refine_cchange(snd_pcm_t *pcm ATTRIBUTE_UNUSED, snd_pcm_hw_params_t *params,
|
|
|
|
|
snd_pcm_hw_params_t *sparams)
|
|
|
|
|
{
|
|
|
|
|
int err;
|
|
|
|
|
unsigned int links = ~SND_PCM_HW_PARBIT_ACCESS;
|
|
|
|
|
err = _snd_pcm_hw_params_refine(params, links, sparams);
|
|
|
|
|
if (err < 0)
|
|
|
|
|
return err;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int snd_pcm_copy_hw_refine(snd_pcm_t *pcm, snd_pcm_hw_params_t *params)
|
|
|
|
|
{
|
|
|
|
|
return snd_pcm_hw_refine_slave(pcm, params,
|
|
|
|
|
snd_pcm_copy_hw_refine_cprepare,
|
|
|
|
|
snd_pcm_copy_hw_refine_cchange,
|
|
|
|
|
snd_pcm_copy_hw_refine_sprepare,
|
|
|
|
|
snd_pcm_copy_hw_refine_schange,
|
|
|
|
|
snd_pcm_plugin_hw_refine_slave);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int snd_pcm_copy_hw_params(snd_pcm_t *pcm, snd_pcm_hw_params_t *params)
|
|
|
|
|
{
|
|
|
|
|
return snd_pcm_hw_params_slave(pcm, params,
|
|
|
|
|
snd_pcm_copy_hw_refine_cchange,
|
|
|
|
|
snd_pcm_copy_hw_refine_sprepare,
|
|
|
|
|
snd_pcm_copy_hw_refine_schange,
|
|
|
|
|
snd_pcm_plugin_hw_params_slave);
|
2000-12-11 11:16:07 +00:00
|
|
|
}
|
|
|
|
|
|
2001-02-27 13:42:12 +00:00
|
|
|
static snd_pcm_uframes_t
|
|
|
|
|
snd_pcm_copy_write_areas(snd_pcm_t *pcm,
|
|
|
|
|
const snd_pcm_channel_area_t *areas,
|
|
|
|
|
snd_pcm_uframes_t offset,
|
|
|
|
|
snd_pcm_uframes_t size,
|
|
|
|
|
const snd_pcm_channel_area_t *slave_areas,
|
|
|
|
|
snd_pcm_uframes_t slave_offset,
|
|
|
|
|
snd_pcm_uframes_t *slave_sizep)
|
2000-12-11 11:16:07 +00:00
|
|
|
{
|
2001-02-27 13:42:12 +00:00
|
|
|
if (size > *slave_sizep)
|
2000-12-11 11:16:07 +00:00
|
|
|
size = *slave_sizep;
|
2001-02-27 13:42:12 +00:00
|
|
|
snd_pcm_areas_copy(slave_areas, slave_offset,
|
|
|
|
|
areas, offset,
|
|
|
|
|
pcm->channels, size, pcm->format);
|
|
|
|
|
*slave_sizep = size;
|
|
|
|
|
return size;
|
2000-12-11 11:16:07 +00:00
|
|
|
}
|
|
|
|
|
|
2001-02-27 13:42:12 +00:00
|
|
|
static snd_pcm_uframes_t
|
|
|
|
|
snd_pcm_copy_read_areas(snd_pcm_t *pcm,
|
|
|
|
|
const snd_pcm_channel_area_t *areas,
|
|
|
|
|
snd_pcm_uframes_t offset,
|
|
|
|
|
snd_pcm_uframes_t size,
|
|
|
|
|
const snd_pcm_channel_area_t *slave_areas,
|
|
|
|
|
snd_pcm_uframes_t slave_offset,
|
|
|
|
|
snd_pcm_uframes_t *slave_sizep)
|
2000-12-11 11:16:07 +00:00
|
|
|
{
|
2001-02-27 13:42:12 +00:00
|
|
|
if (size > *slave_sizep)
|
2000-12-11 11:16:07 +00:00
|
|
|
size = *slave_sizep;
|
2001-02-27 13:42:12 +00:00
|
|
|
snd_pcm_areas_copy(areas, offset,
|
|
|
|
|
slave_areas, slave_offset,
|
|
|
|
|
pcm->channels, size, pcm->format);
|
|
|
|
|
*slave_sizep = size;
|
|
|
|
|
return size;
|
2000-12-11 11:16:07 +00:00
|
|
|
}
|
|
|
|
|
|
2001-01-17 11:00:32 +00:00
|
|
|
static void snd_pcm_copy_dump(snd_pcm_t *pcm, snd_output_t *out)
|
2000-12-11 11:16:07 +00:00
|
|
|
{
|
2001-02-11 15:45:35 +00:00
|
|
|
snd_pcm_copy_t *copy = pcm->private_data;
|
2001-01-17 11:00:32 +00:00
|
|
|
snd_output_printf(out, "Copy conversion PCM\n");
|
2000-12-11 11:16:07 +00:00
|
|
|
if (pcm->setup) {
|
2001-01-17 11:00:32 +00:00
|
|
|
snd_output_printf(out, "Its setup is:\n");
|
|
|
|
|
snd_pcm_dump_setup(pcm, out);
|
2000-12-11 11:16:07 +00:00
|
|
|
}
|
2001-01-17 11:00:32 +00:00
|
|
|
snd_output_printf(out, "Slave: ");
|
|
|
|
|
snd_pcm_dump(copy->plug.slave, out);
|
2000-12-11 11:16:07 +00:00
|
|
|
}
|
|
|
|
|
|
2002-01-13 11:11:42 +00:00
|
|
|
static snd_pcm_ops_t snd_pcm_copy_ops = {
|
2000-12-11 11:16:07 +00:00
|
|
|
close: snd_pcm_plugin_close,
|
|
|
|
|
info: snd_pcm_plugin_info,
|
2000-12-21 20:44:10 +00:00
|
|
|
hw_refine: snd_pcm_copy_hw_refine,
|
2000-12-11 11:16:07 +00:00
|
|
|
hw_params: snd_pcm_copy_hw_params,
|
2001-01-19 13:10:50 +00:00
|
|
|
hw_free: snd_pcm_plugin_hw_free,
|
2000-12-11 11:16:07 +00:00
|
|
|
sw_params: snd_pcm_plugin_sw_params,
|
|
|
|
|
channel_info: snd_pcm_plugin_channel_info,
|
|
|
|
|
dump: snd_pcm_copy_dump,
|
|
|
|
|
nonblock: snd_pcm_plugin_nonblock,
|
|
|
|
|
async: snd_pcm_plugin_async,
|
|
|
|
|
mmap: snd_pcm_plugin_mmap,
|
|
|
|
|
munmap: snd_pcm_plugin_munmap,
|
|
|
|
|
};
|
|
|
|
|
|
2002-01-13 11:11:42 +00:00
|
|
|
/**
|
|
|
|
|
* \brief Creates a new copy PCM
|
|
|
|
|
* \param pcmp Returns created PCM handle
|
|
|
|
|
* \param name Name of PCM
|
|
|
|
|
* \param slave Slave PCM handle
|
|
|
|
|
* \param close_slave When set, the slave PCM handle is closed with copy PCM
|
|
|
|
|
* \retval zero on success otherwise a negative error code
|
|
|
|
|
* \warning Using of this function might be dangerous in the sense
|
|
|
|
|
* of compatibility reasons. The prototype might be freely
|
|
|
|
|
* changed in future.
|
|
|
|
|
*/
|
2001-02-11 15:45:35 +00:00
|
|
|
int snd_pcm_copy_open(snd_pcm_t **pcmp, const char *name, snd_pcm_t *slave, int close_slave)
|
2000-12-11 11:16:07 +00:00
|
|
|
{
|
|
|
|
|
snd_pcm_t *pcm;
|
|
|
|
|
snd_pcm_copy_t *copy;
|
2001-06-20 20:52:12 +00:00
|
|
|
int err;
|
2000-12-11 11:16:07 +00:00
|
|
|
assert(pcmp && slave);
|
|
|
|
|
copy = calloc(1, sizeof(snd_pcm_copy_t));
|
|
|
|
|
if (!copy) {
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
}
|
2002-02-21 15:01:34 +00:00
|
|
|
snd_pcm_plugin_init(©->plug);
|
2000-12-11 11:16:07 +00:00
|
|
|
copy->plug.read = snd_pcm_copy_read_areas;
|
|
|
|
|
copy->plug.write = snd_pcm_copy_write_areas;
|
2002-02-21 15:01:34 +00:00
|
|
|
copy->plug.undo_read = snd_pcm_plugin_undo_read_generic;
|
|
|
|
|
copy->plug.undo_write = snd_pcm_plugin_undo_write_generic;
|
2000-12-11 11:16:07 +00:00
|
|
|
copy->plug.slave = slave;
|
|
|
|
|
copy->plug.close_slave = close_slave;
|
|
|
|
|
|
2001-06-20 20:52:12 +00:00
|
|
|
err = snd_pcm_new(&pcm, SND_PCM_TYPE_COPY, name, slave->stream, slave->mode);
|
|
|
|
|
if (err < 0) {
|
2000-12-11 11:16:07 +00:00
|
|
|
free(copy);
|
2001-06-20 20:52:12 +00:00
|
|
|
return err;
|
2000-12-11 11:16:07 +00:00
|
|
|
}
|
|
|
|
|
pcm->ops = &snd_pcm_copy_ops;
|
|
|
|
|
pcm->fast_ops = &snd_pcm_plugin_fast_ops;
|
2001-02-11 15:45:35 +00:00
|
|
|
pcm->private_data = copy;
|
2000-12-11 11:16:07 +00:00
|
|
|
pcm->poll_fd = slave->poll_fd;
|
2002-04-23 15:51:29 +00:00
|
|
|
snd_pcm_set_hw_ptr(pcm, ©->plug.hw_ptr, -1, 0);
|
|
|
|
|
snd_pcm_set_appl_ptr(pcm, ©->plug.appl_ptr, -1, 0);
|
2000-12-11 11:16:07 +00:00
|
|
|
*pcmp = pcm;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-13 11:11:42 +00:00
|
|
|
/*! \page pcm_plugins
|
|
|
|
|
|
|
|
|
|
\section pcm_plugins_copy Plugin: copy
|
|
|
|
|
|
|
|
|
|
This plugin copies samples from master copy PCM to given slave PCM.
|
|
|
|
|
The channel count, format and rate must match for both of them.
|
|
|
|
|
|
|
|
|
|
\code
|
|
|
|
|
pcm.name {
|
|
|
|
|
type copy # Copy PCM
|
|
|
|
|
slave STR # Slave name
|
|
|
|
|
# or
|
|
|
|
|
slave { # Slave definition
|
|
|
|
|
pcm STR # Slave PCM name
|
|
|
|
|
# or
|
|
|
|
|
pcm { } # Slave PCM definition
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
\endcode
|
|
|
|
|
|
|
|
|
|
\subsection pcm_plugins_copy_funcref Function reference
|
|
|
|
|
|
|
|
|
|
<UL>
|
|
|
|
|
<LI>snd_pcm_copy_open()
|
|
|
|
|
<LI>_snd_pcm_copy_open()
|
|
|
|
|
</UL>
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* \brief Creates a new copy PCM
|
|
|
|
|
* \param pcmp Returns created PCM handle
|
|
|
|
|
* \param name Name of PCM
|
|
|
|
|
* \param root Root configuration node
|
|
|
|
|
* \param conf Configuration node with copy PCM description
|
|
|
|
|
* \param stream Stream type
|
|
|
|
|
* \param mode Stream mode
|
|
|
|
|
* \retval zero on success otherwise a negative error code
|
|
|
|
|
* \warning Using of this function might be dangerous in the sense
|
|
|
|
|
* of compatibility reasons. The prototype might be freely
|
|
|
|
|
* changed in future.
|
|
|
|
|
*/
|
2001-02-11 15:45:35 +00:00
|
|
|
int _snd_pcm_copy_open(snd_pcm_t **pcmp, const char *name,
|
2001-06-11 13:35:48 +00:00
|
|
|
snd_config_t *root, snd_config_t *conf,
|
2001-05-14 15:44:37 +00:00
|
|
|
snd_pcm_stream_t stream, int mode)
|
2000-12-11 11:16:07 +00:00
|
|
|
{
|
2001-02-11 15:45:35 +00:00
|
|
|
snd_config_iterator_t i, next;
|
2000-12-11 11:16:07 +00:00
|
|
|
int err;
|
|
|
|
|
snd_pcm_t *spcm;
|
2001-05-14 15:44:37 +00:00
|
|
|
snd_config_t *slave = NULL, *sconf;
|
2001-02-11 15:45:35 +00:00
|
|
|
snd_config_for_each(i, next, conf) {
|
2001-02-07 11:34:33 +00:00
|
|
|
snd_config_t *n = snd_config_iterator_entry(i);
|
2001-11-19 08:14:21 +00:00
|
|
|
const char *id;
|
|
|
|
|
if (snd_config_get_id(n, &id) < 0)
|
|
|
|
|
continue;
|
2001-06-04 18:04:18 +00:00
|
|
|
if (snd_pcm_conf_generic_id(id))
|
2000-12-11 11:16:07 +00:00
|
|
|
continue;
|
2001-03-17 16:34:43 +00:00
|
|
|
if (strcmp(id, "slave") == 0) {
|
|
|
|
|
slave = n;
|
2000-12-11 11:16:07 +00:00
|
|
|
continue;
|
|
|
|
|
}
|
2001-03-04 20:39:02 +00:00
|
|
|
SNDERR("Unknown field %s", id);
|
2000-12-11 11:16:07 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
2001-03-17 16:34:43 +00:00
|
|
|
if (!slave) {
|
|
|
|
|
SNDERR("slave is not defined");
|
2000-12-11 11:16:07 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
2001-06-15 08:47:59 +00:00
|
|
|
err = snd_pcm_slave_conf(root, slave, &sconf, 0);
|
2001-03-17 16:34:43 +00:00
|
|
|
if (err < 0)
|
|
|
|
|
return err;
|
2001-06-15 08:47:59 +00:00
|
|
|
err = snd_pcm_open_slave(&spcm, root, sconf, stream, mode);
|
2001-06-16 22:03:23 +00:00
|
|
|
snd_config_delete(sconf);
|
2000-12-11 11:16:07 +00:00
|
|
|
if (err < 0)
|
|
|
|
|
return err;
|
|
|
|
|
err = snd_pcm_copy_open(pcmp, name, spcm, 1);
|
|
|
|
|
if (err < 0)
|
|
|
|
|
snd_pcm_close(spcm);
|
|
|
|
|
return err;
|
|
|
|
|
}
|
2002-01-13 11:11:42 +00:00
|
|
|
#ifndef DOC_HIDDEN
|
2001-10-24 14:14:11 +00:00
|
|
|
SND_DLSYM_BUILD_VERSION(_snd_pcm_copy_open, SND_PCM_DLSYM_VERSION);
|
2002-01-13 11:11:42 +00:00
|
|
|
#endif
|