2 * \file include/pcm_extplug.h
3 * \brief External Filter-Plugin SDK
4 * \author Takashi Iwai <tiwai@suse.de>
7 * External Filter-Plugin SDK
11 * ALSA external PCM plugin SDK (draft version)
13 * Copyright (c) 2005 Takashi Iwai <tiwai@suse.de>
15 * This library is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU Lesser General Public License as
17 * published by the Free Software Foundation; either version 2.1 of
18 * the License, or (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU Lesser General Public License for more details.
25 * You should have received a copy of the GNU Lesser General Public
26 * License along with this library; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #ifndef __ALSA_PCM_EXTPLUG_H
32 #define __ALSA_PCM_EXTPLUG_H
35 * \defgroup PCM_ExtPlug External Filter plugin SDK
37 * See the \ref pcm page for more details.
41 /** hw constraints for extplug */
43 SND_PCM_EXTPLUG_HW_FORMAT
, /**< format */
44 SND_PCM_EXTPLUG_HW_CHANNELS
, /**< channels */
45 SND_PCM_EXTPLUG_HW_PARAMS
/**< max number of hw constraints */
48 /** Handle of external filter plugin */
49 typedef struct snd_pcm_extplug snd_pcm_extplug_t
;
50 /** Callback table of extplug */
51 typedef struct snd_pcm_extplug_callback snd_pcm_extplug_callback_t
;
56 #define SND_PCM_EXTPLUG_VERSION_MAJOR 1 /**< Protocol major version */
57 #define SND_PCM_EXTPLUG_VERSION_MINOR 0 /**< Protocol minor version */
58 #define SND_PCM_EXTPLUG_VERSION_TINY 1 /**< Protocol tiny version */
60 * Filter-plugin protocol version
62 #define SND_PCM_EXTPLUG_VERSION ((SND_PCM_EXTPLUG_VERSION_MAJOR<<16) |\
63 (SND_PCM_EXTPLUG_VERSION_MINOR<<8) |\
64 (SND_PCM_EXTPLUG_VERSION_TINY))
66 /** Handle of extplug */
67 struct snd_pcm_extplug
{
69 * protocol version; #SND_PCM_EXTPLUG_VERSION must be filled here
70 * before calling #snd_pcm_extplug_create()
74 * name of this plugin; must be filled before calling #snd_pcm_extplug_create()
78 * callbacks of this plugin; must be filled before calling #snd_pcm_extplug_create()
80 const snd_pcm_extplug_callback_t
*callback
;
82 * private data, which can be used freely in the driver callbacks
86 * PCM handle filled by #snd_pcm_extplug_create()
90 * stream direction; read-only status
92 snd_pcm_stream_t stream
;
94 * format hw parameter; filled after hw_params is caled
96 snd_pcm_format_t format
;
98 * subformat hw parameter; filled after hw_params is caled
100 snd_pcm_subformat_t subformat
;
102 * channels hw parameter; filled after hw_params is caled
104 unsigned int channels
;
106 * rate hw parameter; filled after hw_params is caled
110 * slave_format hw parameter; filled after hw_params is caled
112 snd_pcm_format_t slave_format
;
114 * slave_subformat hw parameter; filled after hw_params is caled
116 snd_pcm_subformat_t slave_subformat
;
118 * slave_channels hw parameter; filled after hw_params is caled
120 unsigned int slave_channels
;
123 /** Callback table of extplug */
124 struct snd_pcm_extplug_callback
{
126 * transfer between source and destination; this is a required callback
128 snd_pcm_sframes_t (*transfer
)(snd_pcm_extplug_t
*ext
,
129 const snd_pcm_channel_area_t
*dst_areas
,
130 snd_pcm_uframes_t dst_offset
,
131 const snd_pcm_channel_area_t
*src_areas
,
132 snd_pcm_uframes_t src_offset
,
133 snd_pcm_uframes_t size
);
135 * close the PCM; optional
137 int (*close
)(snd_pcm_extplug_t
*ext
);
139 * hw_params; optional
141 int (*hw_params
)(snd_pcm_extplug_t
*ext
, snd_pcm_hw_params_t
*params
);
145 int (*hw_free
)(snd_pcm_extplug_t
*ext
);
149 void (*dump
)(snd_pcm_extplug_t
*ext
, snd_output_t
*out
);
151 * init; optional initialization called at prepare or reset
153 int (*init
)(snd_pcm_extplug_t
*ext
);
157 int snd_pcm_extplug_create(snd_pcm_extplug_t
*ext
, const char *name
,
158 snd_config_t
*root
, snd_config_t
*slave_conf
,
159 snd_pcm_stream_t stream
, int mode
);
160 int snd_pcm_extplug_delete(snd_pcm_extplug_t
*ext
);
162 /* clear hw_parameter setting */
163 void snd_pcm_extplug_params_reset(snd_pcm_extplug_t
*ext
);
165 /* hw_parameter setting */
166 int snd_pcm_extplug_set_param_list(snd_pcm_extplug_t
*extplug
, int type
, unsigned int num_list
, const unsigned int *list
);
167 int snd_pcm_extplug_set_param_minmax(snd_pcm_extplug_t
*extplug
, int type
, unsigned int min
, unsigned int max
);
168 int snd_pcm_extplug_set_slave_param_list(snd_pcm_extplug_t
*extplug
, int type
, unsigned int num_list
, const unsigned int *list
);
169 int snd_pcm_extplug_set_slave_param_minmax(snd_pcm_extplug_t
*extplug
, int type
, unsigned int min
, unsigned int max
);
172 * set the parameter constraint with a single value
174 static inline int snd_pcm_extplug_set_param(snd_pcm_extplug_t
*extplug
, int type
, unsigned int val
)
176 return snd_pcm_extplug_set_param_list(extplug
, type
, 1, &val
);
180 * set the parameter constraint for slave PCM with a single value
182 static inline int snd_pcm_extplug_set_slave_param(snd_pcm_extplug_t
*extplug
, int type
, unsigned int val
)
184 return snd_pcm_extplug_set_slave_param_list(extplug
, type
, 1, &val
);
189 #endif /* __ALSA_PCM_EXTPLUG_H */