alsa-lib/src/pcm/pcm_plugin.h

130 lines
5.5 KiB
C
Raw Normal View History

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 Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
2000-09-24 09:57:26 +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
* GNU Lesser General Public License for more details.
2000-09-24 09:57:26 +00:00
*
* You should have received a copy of the GNU Lesser General Public
2000-09-24 09:57:26 +00:00
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2000-09-24 09:57:26 +00:00
*
*/
#include "iatomic.h"
#include "pcm_generic.h"
typedef snd_pcm_uframes_t (*snd_pcm_slave_xfer_areas_func_t)
(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);
typedef snd_pcm_sframes_t (*snd_pcm_slave_xfer_areas_undo_func_t)
(snd_pcm_t *pcm,
const snd_pcm_channel_area_t *res_areas, /* result areas */
snd_pcm_uframes_t res_offset, /* offset of result areas */
snd_pcm_uframes_t res_size, /* size of result areas */
snd_pcm_uframes_t slave_undo_size);
2000-09-24 09:57:26 +00:00
typedef struct {
snd_pcm_generic_t gen;
snd_pcm_slave_xfer_areas_func_t read;
snd_pcm_slave_xfer_areas_func_t write;
snd_pcm_slave_xfer_areas_undo_func_t undo_read;
snd_pcm_slave_xfer_areas_undo_func_t undo_write;
snd_pcm_sframes_t (*client_frames)(snd_pcm_t *pcm, snd_pcm_sframes_t frames);
snd_pcm_sframes_t (*slave_frames)(snd_pcm_t *pcm, snd_pcm_sframes_t frames);
2000-09-24 09:57:26 +00:00
int (*init)(snd_pcm_t *pcm);
snd_pcm_uframes_t appl_ptr, hw_ptr;
snd_atomic_write_t watom;
2000-09-24 09:57:26 +00:00
} snd_pcm_plugin_t;
void snd_pcm_plugin_init(snd_pcm_plugin_t *plugin);
2000-09-24 09:57:26 +00:00
extern snd_pcm_fast_ops_t snd_pcm_plugin_fast_ops;
2000-09-24 09:57:26 +00:00
snd_pcm_sframes_t snd_pcm_plugin_undo_read_generic
(snd_pcm_t *pcm,
const snd_pcm_channel_area_t *res_areas, /* result areas */
snd_pcm_uframes_t res_offset, /* offset of result areas */
snd_pcm_uframes_t res_size, /* size of result areas */
snd_pcm_uframes_t slave_undo_size);
snd_pcm_sframes_t snd_pcm_plugin_undo_write_generic
(snd_pcm_t *pcm,
const snd_pcm_channel_area_t *res_areas, /* result areas */
snd_pcm_uframes_t res_offset, /* offset of result areas */
snd_pcm_uframes_t res_size, /* size of result areas */
snd_pcm_uframes_t slave_undo_size);
int snd_pcm_linear_get_index(snd_pcm_format_t src_format, snd_pcm_format_t dst_format);
int snd_pcm_linear_put_index(snd_pcm_format_t src_format, snd_pcm_format_t dst_format);
int snd_pcm_linear_get32_index(snd_pcm_format_t src_format, snd_pcm_format_t dst_format);
int snd_pcm_linear_put32_index(snd_pcm_format_t src_format, snd_pcm_format_t dst_format);
int snd_pcm_linear_convert_index(snd_pcm_format_t src_format, snd_pcm_format_t dst_format);
2000-12-21 20:44:10 +00:00
void snd_pcm_linear_convert(const snd_pcm_channel_area_t *dst_areas, snd_pcm_uframes_t dst_offset,
const snd_pcm_channel_area_t *src_areas, snd_pcm_uframes_t src_offset,
2001-03-29 17:50:28 +00:00
unsigned int channels, snd_pcm_uframes_t frames,
unsigned int convidx);
void snd_pcm_linear_getput(const snd_pcm_channel_area_t *dst_areas, snd_pcm_uframes_t dst_offset,
const snd_pcm_channel_area_t *src_areas, snd_pcm_uframes_t src_offset,
unsigned int channels, snd_pcm_uframes_t frames,
unsigned int get_idx, unsigned int put_idx);
void snd_pcm_alaw_decode(const snd_pcm_channel_area_t *dst_areas,
2001-01-26 09:56:30 +00:00
snd_pcm_uframes_t dst_offset,
const snd_pcm_channel_area_t *src_areas,
2001-01-26 09:56:30 +00:00
snd_pcm_uframes_t src_offset,
2001-03-29 17:50:28 +00:00
unsigned int channels, snd_pcm_uframes_t frames,
unsigned int putidx);
void snd_pcm_alaw_encode(const snd_pcm_channel_area_t *dst_areas,
2001-01-26 09:56:30 +00:00
snd_pcm_uframes_t dst_offset,
const snd_pcm_channel_area_t *src_areas,
snd_pcm_uframes_t src_offset,
2001-03-29 17:50:28 +00:00
unsigned int channels, snd_pcm_uframes_t frames,
unsigned int getidx);
void snd_pcm_mulaw_decode(const snd_pcm_channel_area_t *dst_areas,
2001-01-26 09:56:30 +00:00
snd_pcm_uframes_t dst_offset,
const snd_pcm_channel_area_t *src_areas,
2001-01-26 09:56:30 +00:00
snd_pcm_uframes_t src_offset,
2001-03-29 17:50:28 +00:00
unsigned int channels, snd_pcm_uframes_t frames,
unsigned int putidx);
void snd_pcm_mulaw_encode(const snd_pcm_channel_area_t *dst_areas,
2001-01-26 09:56:30 +00:00
snd_pcm_uframes_t dst_offset,
const snd_pcm_channel_area_t *src_areas,
snd_pcm_uframes_t src_offset,
2001-03-29 17:50:28 +00:00
unsigned int channels, snd_pcm_uframes_t frames,
unsigned int getidx);
2001-01-26 09:56:30 +00:00
typedef struct _snd_pcm_adpcm_state {
int pred_val; /* Calculated predicted value */
int step_idx; /* Previous StepSize lookup index */
} snd_pcm_adpcm_state_t;
void snd_pcm_adpcm_decode(const snd_pcm_channel_area_t *dst_areas,
2001-01-26 09:56:30 +00:00
snd_pcm_uframes_t dst_offset,
const snd_pcm_channel_area_t *src_areas,
snd_pcm_uframes_t src_offset,
2001-03-29 17:50:28 +00:00
unsigned int channels, snd_pcm_uframes_t frames,
unsigned int putidx,
2001-01-26 09:56:30 +00:00
snd_pcm_adpcm_state_t *states);
void snd_pcm_adpcm_encode(const snd_pcm_channel_area_t *dst_areas,
2001-01-26 09:56:30 +00:00
snd_pcm_uframes_t dst_offset,
const snd_pcm_channel_area_t *src_areas,
snd_pcm_uframes_t src_offset,
2001-03-29 17:50:28 +00:00
unsigned int channels, snd_pcm_uframes_t frames,
unsigned int getidx,
2001-01-26 09:56:30 +00:00
snd_pcm_adpcm_state_t *states);