blob: a5035c2369a62fccaf55c727b1ef41f70d07f32c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __PCM_PLUGIN_H
2#define __PCM_PLUGIN_H
3
4/*
5 * Digital Audio (Plugin interface) abstract layer
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02006 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
24
Jaroslav Kysela21a34792006-01-13 09:12:11 +010025#ifdef CONFIG_SND_PCM_OSS_PLUGINS
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#define snd_pcm_plug_stream(plug) ((plug)->stream)
28
Takashi Iwai6ac77bc2005-11-17 14:01:49 +010029enum snd_pcm_plugin_action {
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 INIT = 0,
31 PREPARE = 1,
Takashi Iwai6ac77bc2005-11-17 14:01:49 +010032};
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Takashi Iwai6ac77bc2005-11-17 14:01:49 +010034struct snd_pcm_channel_area {
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 void *addr; /* base address of channel samples */
36 unsigned int first; /* offset to first sample in bits */
37 unsigned int step; /* samples distance in bits */
Takashi Iwai6ac77bc2005-11-17 14:01:49 +010038};
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Takashi Iwai6ac77bc2005-11-17 14:01:49 +010040struct snd_pcm_plugin_channel {
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 void *aptr; /* pointer to the allocated area */
Takashi Iwai6ac77bc2005-11-17 14:01:49 +010042 struct snd_pcm_channel_area area;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 snd_pcm_uframes_t frames; /* allocated frames */
44 unsigned int enabled:1; /* channel need to be processed */
45 unsigned int wanted:1; /* channel is wanted */
Takashi Iwai6ac77bc2005-11-17 14:01:49 +010046};
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Takashi Iwai6ac77bc2005-11-17 14:01:49 +010048struct snd_pcm_plugin_format {
Clemens Ladischfea952e2011-02-14 11:00:47 +010049 snd_pcm_format_t format;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 unsigned int rate;
51 unsigned int channels;
Takashi Iwai6ac77bc2005-11-17 14:01:49 +010052};
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Takashi Iwai6ac77bc2005-11-17 14:01:49 +010054struct snd_pcm_plugin {
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 const char *name; /* plug-in name */
56 int stream;
Takashi Iwai6ac77bc2005-11-17 14:01:49 +010057 struct snd_pcm_plugin_format src_format; /* source format */
58 struct snd_pcm_plugin_format dst_format; /* destination format */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 int src_width; /* sample width in bits */
60 int dst_width; /* sample width in bits */
Clemens Ladischfea952e2011-02-14 11:00:47 +010061 snd_pcm_access_t access;
Takashi Iwai6ac77bc2005-11-17 14:01:49 +010062 snd_pcm_sframes_t (*src_frames)(struct snd_pcm_plugin *plugin, snd_pcm_uframes_t dst_frames);
63 snd_pcm_sframes_t (*dst_frames)(struct snd_pcm_plugin *plugin, snd_pcm_uframes_t src_frames);
64 snd_pcm_sframes_t (*client_channels)(struct snd_pcm_plugin *plugin,
65 snd_pcm_uframes_t frames,
66 struct snd_pcm_plugin_channel **channels);
Takashi Iwai6ac77bc2005-11-17 14:01:49 +010067 snd_pcm_sframes_t (*transfer)(struct snd_pcm_plugin *plugin,
68 const struct snd_pcm_plugin_channel *src_channels,
69 struct snd_pcm_plugin_channel *dst_channels,
70 snd_pcm_uframes_t frames);
71 int (*action)(struct snd_pcm_plugin *plugin,
72 enum snd_pcm_plugin_action action,
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 unsigned long data);
Takashi Iwai6ac77bc2005-11-17 14:01:49 +010074 struct snd_pcm_plugin *prev;
75 struct snd_pcm_plugin *next;
76 struct snd_pcm_substream *plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 void *private_data;
Takashi Iwai6ac77bc2005-11-17 14:01:49 +010078 void (*private_free)(struct snd_pcm_plugin *plugin);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 char *buf;
80 snd_pcm_uframes_t buf_frames;
Takashi Iwai6ac77bc2005-11-17 14:01:49 +010081 struct snd_pcm_plugin_channel *buf_channels;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 char extra_data[0];
83};
84
Takashi Iwai6ac77bc2005-11-17 14:01:49 +010085int snd_pcm_plugin_build(struct snd_pcm_substream *handle,
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 const char *name,
Takashi Iwai6ac77bc2005-11-17 14:01:49 +010087 struct snd_pcm_plugin_format *src_format,
88 struct snd_pcm_plugin_format *dst_format,
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 size_t extra,
Takashi Iwai6ac77bc2005-11-17 14:01:49 +010090 struct snd_pcm_plugin **ret);
91int snd_pcm_plugin_free(struct snd_pcm_plugin *plugin);
92int snd_pcm_plugin_clear(struct snd_pcm_plugin **first);
93int snd_pcm_plug_alloc(struct snd_pcm_substream *plug, snd_pcm_uframes_t frames);
94snd_pcm_sframes_t snd_pcm_plug_client_size(struct snd_pcm_substream *handle, snd_pcm_uframes_t drv_size);
95snd_pcm_sframes_t snd_pcm_plug_slave_size(struct snd_pcm_substream *handle, snd_pcm_uframes_t clt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97#define FULL ROUTE_PLUGIN_RESOLUTION
98#define HALF ROUTE_PLUGIN_RESOLUTION / 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Takashi Iwai6ac77bc2005-11-17 14:01:49 +0100100int snd_pcm_plugin_build_io(struct snd_pcm_substream *handle,
101 struct snd_pcm_hw_params *params,
102 struct snd_pcm_plugin **r_plugin);
103int snd_pcm_plugin_build_linear(struct snd_pcm_substream *handle,
104 struct snd_pcm_plugin_format *src_format,
105 struct snd_pcm_plugin_format *dst_format,
106 struct snd_pcm_plugin **r_plugin);
107int snd_pcm_plugin_build_mulaw(struct snd_pcm_substream *handle,
108 struct snd_pcm_plugin_format *src_format,
109 struct snd_pcm_plugin_format *dst_format,
110 struct snd_pcm_plugin **r_plugin);
111int snd_pcm_plugin_build_rate(struct snd_pcm_substream *handle,
112 struct snd_pcm_plugin_format *src_format,
113 struct snd_pcm_plugin_format *dst_format,
114 struct snd_pcm_plugin **r_plugin);
115int snd_pcm_plugin_build_route(struct snd_pcm_substream *handle,
116 struct snd_pcm_plugin_format *src_format,
117 struct snd_pcm_plugin_format *dst_format,
Takashi Iwai6ac77bc2005-11-17 14:01:49 +0100118 struct snd_pcm_plugin **r_plugin);
119int snd_pcm_plugin_build_copy(struct snd_pcm_substream *handle,
120 struct snd_pcm_plugin_format *src_format,
121 struct snd_pcm_plugin_format *dst_format,
122 struct snd_pcm_plugin **r_plugin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Takashi Iwai6ac77bc2005-11-17 14:01:49 +0100124int snd_pcm_plug_format_plugins(struct snd_pcm_substream *substream,
125 struct snd_pcm_hw_params *params,
126 struct snd_pcm_hw_params *slave_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Clemens Ladischfea952e2011-02-14 11:00:47 +0100128snd_pcm_format_t snd_pcm_plug_slave_format(snd_pcm_format_t format,
129 struct snd_mask *format_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Takashi Iwai6ac77bc2005-11-17 14:01:49 +0100131int snd_pcm_plugin_append(struct snd_pcm_plugin *plugin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Takashi Iwai6ac77bc2005-11-17 14:01:49 +0100133snd_pcm_sframes_t snd_pcm_plug_write_transfer(struct snd_pcm_substream *handle,
134 struct snd_pcm_plugin_channel *src_channels,
135 snd_pcm_uframes_t size);
136snd_pcm_sframes_t snd_pcm_plug_read_transfer(struct snd_pcm_substream *handle,
137 struct snd_pcm_plugin_channel *dst_channels_final,
138 snd_pcm_uframes_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Takashi Iwai6ac77bc2005-11-17 14:01:49 +0100140snd_pcm_sframes_t snd_pcm_plug_client_channels_buf(struct snd_pcm_substream *handle,
141 char *buf, snd_pcm_uframes_t count,
142 struct snd_pcm_plugin_channel **channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Takashi Iwai6ac77bc2005-11-17 14:01:49 +0100144snd_pcm_sframes_t snd_pcm_plugin_client_channels(struct snd_pcm_plugin *plugin,
145 snd_pcm_uframes_t frames,
146 struct snd_pcm_plugin_channel **channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Takashi Iwai6ac77bc2005-11-17 14:01:49 +0100148int snd_pcm_area_silence(const struct snd_pcm_channel_area *dst_channel,
149 size_t dst_offset,
Clemens Ladischfea952e2011-02-14 11:00:47 +0100150 size_t samples, snd_pcm_format_t format);
Takashi Iwai6ac77bc2005-11-17 14:01:49 +0100151int snd_pcm_area_copy(const struct snd_pcm_channel_area *src_channel,
152 size_t src_offset,
153 const struct snd_pcm_channel_area *dst_channel,
154 size_t dst_offset,
Clemens Ladischfea952e2011-02-14 11:00:47 +0100155 size_t samples, snd_pcm_format_t format);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Takashi Iwai6ac77bc2005-11-17 14:01:49 +0100157void *snd_pcm_plug_buf_alloc(struct snd_pcm_substream *plug, snd_pcm_uframes_t size);
158void snd_pcm_plug_buf_unlock(struct snd_pcm_substream *plug, void *ptr);
159snd_pcm_sframes_t snd_pcm_oss_write3(struct snd_pcm_substream *substream,
160 const char *ptr, snd_pcm_uframes_t size,
161 int in_kernel);
162snd_pcm_sframes_t snd_pcm_oss_read3(struct snd_pcm_substream *substream,
163 char *ptr, snd_pcm_uframes_t size, int in_kernel);
164snd_pcm_sframes_t snd_pcm_oss_writev3(struct snd_pcm_substream *substream,
165 void **bufs, snd_pcm_uframes_t frames,
166 int in_kernel);
167snd_pcm_sframes_t snd_pcm_oss_readv3(struct snd_pcm_substream *substream,
168 void **bufs, snd_pcm_uframes_t frames,
169 int in_kernel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Jaroslav Kysela21a34792006-01-13 09:12:11 +0100171#else
172
173static inline snd_pcm_sframes_t snd_pcm_plug_client_size(struct snd_pcm_substream *handle, snd_pcm_uframes_t drv_size) { return drv_size; }
174static inline snd_pcm_sframes_t snd_pcm_plug_slave_size(struct snd_pcm_substream *handle, snd_pcm_uframes_t clt_size) { return clt_size; }
175static inline int snd_pcm_plug_slave_format(int format, struct snd_mask *format_mask) { return format; }
176
177#endif
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179#ifdef PLUGIN_DEBUG
Takashi Iwai006de2672009-02-05 15:51:04 +0100180#define pdprintf(fmt, args...) printk(KERN_DEBUG "plugin: " fmt, ##args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181#else
Takashi Iwai006de2672009-02-05 15:51:04 +0100182#define pdprintf(fmt, args...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183#endif
184
185#endif /* __PCM_PLUGIN_H */