ALSA project - the C library reference
pcm_ioplug.h
Go to the documentation of this file.
1 
10 /*
11  * ALSA external PCM plugin SDK
12  *
13  * Copyright (c) 2005 Takashi Iwai <tiwai@suse.de>
14  *
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.
19  *
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.
24  *
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
28  *
29  */
30 
31 #ifndef __ALSA_PCM_IOPLUG_H
32 #define __ALSA_PCM_IOPLUG_H
33 
42 enum {
51 };
52 
54 typedef struct snd_pcm_ioplug snd_pcm_ioplug_t;
57 #ifdef DOC_HIDDEN
58 /* redefine typedefs for stupid doxygen */
61 #endif
62 
63 /*
64  * bit flags for additional conditions
65  */
66 #define SND_PCM_IOPLUG_FLAG_LISTED (1<<0)
67 #define SND_PCM_IOPLUG_FLAG_MONOTONIC (1<<1)
69 #define SND_PCM_IOPLUG_FLAG_BOUNDARY_WA (1<<2)
70 
71 /*
72  * Protocol version
73  */
74 #define SND_PCM_IOPLUG_VERSION_MAJOR 1
75 #define SND_PCM_IOPLUG_VERSION_MINOR 0
76 #define SND_PCM_IOPLUG_VERSION_TINY 2
80 #define SND_PCM_IOPLUG_VERSION ((SND_PCM_IOPLUG_VERSION_MAJOR<<16) |\
81  (SND_PCM_IOPLUG_VERSION_MINOR<<8) |\
82  (SND_PCM_IOPLUG_VERSION_TINY))
83 
90  unsigned int version;
94  const char *name;
95  unsigned int flags;
96  int poll_fd;
97  unsigned int poll_events;
98  unsigned int mmap_rw;
111 
112  snd_pcm_stream_t stream;
113  snd_pcm_state_t state;
116  int nonblock;
118  snd_pcm_access_t access;
119  snd_pcm_format_t format;
120  unsigned int channels;
121  unsigned int rate;
124 };
125 
131  int (*start)(snd_pcm_ioplug_t *io);
135  int (*stop)(snd_pcm_ioplug_t *io);
147  const snd_pcm_channel_area_t *areas,
148  snd_pcm_uframes_t offset,
149  snd_pcm_uframes_t size);
153  int (*close)(snd_pcm_ioplug_t *io);
173  int (*drain)(snd_pcm_ioplug_t *io);
177  int (*pause)(snd_pcm_ioplug_t *io, int enable);
189  int (*poll_descriptors)(snd_pcm_ioplug_t *io, struct pollfd *pfd, unsigned int space);
193  int (*poll_revents)(snd_pcm_ioplug_t *io, struct pollfd *pfd, unsigned int nfds, unsigned short *revents);
197  void (*dump)(snd_pcm_ioplug_t *io, snd_output_t *out);
205  snd_pcm_chmap_query_t **(*query_chmaps)(snd_pcm_ioplug_t *io);
209  snd_pcm_chmap_t *(*get_chmap)(snd_pcm_ioplug_t *io);
213  int (*set_chmap)(snd_pcm_ioplug_t *io, const snd_pcm_chmap_t *map);
214 };
215 
216 
217 int snd_pcm_ioplug_create(snd_pcm_ioplug_t *io, const char *name,
218  snd_pcm_stream_t stream, int mode);
220 
221 /* update poll_fd and mmap_rw */
223 
224 /* get a mmap area (for mmap_rw only) */
225 const snd_pcm_channel_area_t *snd_pcm_ioplug_mmap_areas(snd_pcm_ioplug_t *ioplug);
226 
227 /* clear hw_parameter setting */
229 
230 /* hw_parameter setting */
231 int snd_pcm_ioplug_set_param_minmax(snd_pcm_ioplug_t *io, int type, unsigned int min, unsigned int max);
232 int snd_pcm_ioplug_set_param_list(snd_pcm_ioplug_t *io, int type, unsigned int num_list, const unsigned int *list);
233 
234 /* change PCM status */
235 int snd_pcm_ioplug_set_state(snd_pcm_ioplug_t *ioplug, snd_pcm_state_t state);
236 
237 /* calucalte the available frames */
239  const snd_pcm_uframes_t hw_ptr,
240  const snd_pcm_uframes_t appl_ptr);
242  const snd_pcm_uframes_t hw_ptr,
243  const snd_pcm_uframes_t appl_ptr);
244 
247 #endif /* __ALSA_PCM_IOPLUG_H */
SND_PCM_IOPLUG_HW_PERIODS
@ SND_PCM_IOPLUG_HW_PERIODS
Definition: pcm_ioplug.h:49
snd_pcm_ioplug::mmap_rw
unsigned int mmap_rw
Definition: pcm_ioplug.h:98
snd_pcm_sframes_t
long snd_pcm_sframes_t
Definition: pcm.h:376
SND_PCM_IOPLUG_HW_BUFFER_BYTES
@ SND_PCM_IOPLUG_HW_BUFFER_BYTES
Definition: pcm_ioplug.h:48
snd_pcm_ioplug_avail
snd_pcm_uframes_t snd_pcm_ioplug_avail(const snd_pcm_ioplug_t *const ioplug, const snd_pcm_uframes_t hw_ptr, const snd_pcm_uframes_t appl_ptr)
Get the available frames. This function can be used to calculate the the available frames before call...
Definition: pcm_ioplug.c:1240
snd_pcm_ioplug_callback::poll_descriptors
int(* poll_descriptors)(snd_pcm_ioplug_t *io, struct pollfd *pfd, unsigned int space)
Definition: pcm_ioplug.h:189
SND_PCM_IOPLUG_HW_PARAMS
@ SND_PCM_IOPLUG_HW_PARAMS
Definition: pcm_ioplug.h:50
snd_pcm_ioplug_set_param_minmax
int snd_pcm_ioplug_set_param_minmax(snd_pcm_ioplug_t *io, int type, unsigned int min, unsigned int max)
Set parameter as the min/max values.
Definition: pcm_ioplug.c:1164
snd_pcm_t
struct _snd_pcm snd_pcm_t
Definition: pcm.h:394
snd_pcm_ioplug
Definition: pcm_ioplug.h:85
snd_pcm_ioplug::callback
const snd_pcm_ioplug_callback_t * callback
Definition: pcm_ioplug.h:102
snd_pcm_ioplug::poll_events
unsigned int poll_events
Definition: pcm_ioplug.h:97
snd_pcm_ioplug_callback::hw_free
int(* hw_free)(snd_pcm_ioplug_t *io)
Definition: pcm_ioplug.h:161
snd_pcm_ioplug_callback::poll_descriptors_count
int(* poll_descriptors_count)(snd_pcm_ioplug_t *io)
Definition: pcm_ioplug.h:185
snd_pcm_ioplug::nonblock
int nonblock
Definition: pcm_ioplug.h:116
snd_output_t
struct _snd_output snd_output_t
Internal structure for an output object.
Definition: output.h:54
snd_pcm_ioplug::poll_fd
int poll_fd
Definition: pcm_ioplug.h:96
snd_pcm_ioplug_create
int snd_pcm_ioplug_create(snd_pcm_ioplug_t *io, const char *name, snd_pcm_stream_t stream, int mode)
Create an ioplug instance.
Definition: pcm_ioplug.c:1059
snd_pcm_hw_params_t
struct _snd_pcm_hw_params snd_pcm_hw_params_t
Definition: pcm.h:64
snd_pcm_ioplug_callback
Definition: pcm_ioplug.h:127
snd_pcm_ioplug_callback::set_chmap
int(* set_chmap)(snd_pcm_ioplug_t *io, const snd_pcm_chmap_t *map)
Definition: pcm_ioplug.h:213
snd_pcm_ioplug::private_data
void * private_data
Definition: pcm_ioplug.h:106
snd_pcm_ioplug::version
unsigned int version
Definition: pcm_ioplug.h:90
snd_pcm_ioplug_callback::sw_params
int(* sw_params)(snd_pcm_ioplug_t *io, snd_pcm_sw_params_t *params)
Definition: pcm_ioplug.h:165
snd_pcm_ioplug::buffer_size
snd_pcm_uframes_t buffer_size
Definition: pcm_ioplug.h:123
snd_pcm_uframes_t
unsigned long snd_pcm_uframes_t
Definition: pcm.h:374
SND_PCM_IOPLUG_HW_CHANNELS
@ SND_PCM_IOPLUG_HW_CHANNELS
Definition: pcm_ioplug.h:45
snd_pcm_ioplug_callback_t
snd_pcm_ioplug_callback snd_pcm_ioplug_callback_t
Definition: pcm_ioplug.h:60
snd_pcm_ioplug_set_state
int snd_pcm_ioplug_set_state(snd_pcm_ioplug_t *ioplug, snd_pcm_state_t state)
Change the ioplug PCM status.
Definition: pcm_ioplug.c:1226
snd_pcm_ioplug_delete
int snd_pcm_ioplug_delete(snd_pcm_ioplug_t *io)
Delete the ioplug instance.
Definition: pcm_ioplug.c:1111
snd_pcm_ioplug::period_size
snd_pcm_uframes_t period_size
Definition: pcm_ioplug.h:122
snd_pcm_ioplug_set_param_list
int snd_pcm_ioplug_set_param_list(snd_pcm_ioplug_t *io, int type, unsigned int num_list, const unsigned int *list)
Set parameter as the list.
Definition: pcm_ioplug.c:1140
snd_pcm_ioplug::state
snd_pcm_state_t state
Definition: pcm_ioplug.h:113
snd_pcm_ioplug::rate
unsigned int rate
Definition: pcm_ioplug.h:121
snd_pcm_ioplug::name
const char * name
Definition: pcm_ioplug.h:94
snd_pcm_ioplug_callback::poll_revents
int(* poll_revents)(snd_pcm_ioplug_t *io, struct pollfd *pfd, unsigned int nfds, unsigned short *revents)
Definition: pcm_ioplug.h:193
snd_pcm_ioplug_callback::pointer
snd_pcm_sframes_t(* pointer)(snd_pcm_ioplug_t *io)
Definition: pcm_ioplug.h:142
snd_pcm_ioplug::format
snd_pcm_format_t format
Definition: pcm_ioplug.h:119
SND_PCM_IOPLUG_HW_RATE
@ SND_PCM_IOPLUG_HW_RATE
Definition: pcm_ioplug.h:46
snd_pcm_ioplug_callback::delay
int(* delay)(snd_pcm_ioplug_t *io, snd_pcm_sframes_t *delayp)
Definition: pcm_ioplug.h:201
snd_pcm_ioplug_callback::resume
int(* resume)(snd_pcm_ioplug_t *io)
Definition: pcm_ioplug.h:181
snd_pcm_ioplug_t
snd_pcm_ioplug snd_pcm_ioplug_t
Definition: pcm_ioplug.h:59
snd_pcm_sw_params_t
struct _snd_pcm_sw_params snd_pcm_sw_params_t
Definition: pcm.h:67
SND_PCM_IOPLUG_HW_ACCESS
@ SND_PCM_IOPLUG_HW_ACCESS
Definition: pcm_ioplug.h:43
snd_pcm_ioplug_callback::stop
int(* stop)(snd_pcm_ioplug_t *io)
Definition: pcm_ioplug.h:135
SND_PCM_IOPLUG_HW_FORMAT
@ SND_PCM_IOPLUG_HW_FORMAT
Definition: pcm_ioplug.h:44
snd_pcm_ioplug_callback::start
int(* start)(snd_pcm_ioplug_t *io)
Definition: pcm_ioplug.h:131
snd_pcm_ioplug::access
snd_pcm_access_t access
Definition: pcm_ioplug.h:118
snd_pcm_ioplug::flags
unsigned int flags
Definition: pcm_ioplug.h:95
snd_pcm_ioplug_params_reset
void snd_pcm_ioplug_params_reset(snd_pcm_ioplug_t *io)
Reset ioplug parameters.
Definition: pcm_ioplug.c:1123
snd_pcm_ioplug_callback::transfer
snd_pcm_sframes_t(* transfer)(snd_pcm_ioplug_t *io, const snd_pcm_channel_area_t *areas, snd_pcm_uframes_t offset, snd_pcm_uframes_t size)
Definition: pcm_ioplug.h:146
snd_pcm_ioplug::stream
snd_pcm_stream_t stream
Definition: pcm_ioplug.h:112
snd_pcm_ioplug_callback::dump
void(* dump)(snd_pcm_ioplug_t *io, snd_output_t *out)
Definition: pcm_ioplug.h:197
snd_pcm_ioplug_callback::pause
int(* pause)(snd_pcm_ioplug_t *io, int enable)
Definition: pcm_ioplug.h:177
snd_pcm_ioplug_callback::prepare
int(* prepare)(snd_pcm_ioplug_t *io)
Definition: pcm_ioplug.h:169
snd_pcm_ioplug_reinit_status
int snd_pcm_ioplug_reinit_status(snd_pcm_ioplug_t *ioplug)
Reinitialize the poll and mmap status.
Definition: pcm_ioplug.c:1189
snd_pcm_ioplug::channels
unsigned int channels
Definition: pcm_ioplug.h:120
snd_pcm_ioplug_callback::drain
int(* drain)(snd_pcm_ioplug_t *io)
Definition: pcm_ioplug.h:173
snd_pcm_ioplug_hw_avail
snd_pcm_uframes_t snd_pcm_ioplug_hw_avail(const snd_pcm_ioplug_t *const ioplug, const snd_pcm_uframes_t hw_ptr, const snd_pcm_uframes_t appl_ptr)
Get the available frames. This function can be used to calculate the the available frames before call...
Definition: pcm_ioplug.c:1255
snd_pcm_ioplug_callback::close
int(* close)(snd_pcm_ioplug_t *io)
Definition: pcm_ioplug.h:153
snd_pcm_ioplug::hw_ptr
volatile snd_pcm_uframes_t hw_ptr
Definition: pcm_ioplug.h:115
SND_PCM_IOPLUG_HW_PERIOD_BYTES
@ SND_PCM_IOPLUG_HW_PERIOD_BYTES
Definition: pcm_ioplug.h:47
snd_pcm_ioplug::appl_ptr
volatile snd_pcm_uframes_t appl_ptr
Definition: pcm_ioplug.h:114
snd_pcm_ioplug_callback::hw_params
int(* hw_params)(snd_pcm_ioplug_t *io, snd_pcm_hw_params_t *params)
Definition: pcm_ioplug.h:157
snd_pcm_ioplug_mmap_areas
const snd_pcm_channel_area_t * snd_pcm_ioplug_mmap_areas(snd_pcm_ioplug_t *ioplug)
Get mmap area of ioplug.
Definition: pcm_ioplug.c:1209
snd_pcm_ioplug::pcm
snd_pcm_t * pcm
Definition: pcm_ioplug.h:110