OSDN Git Service

Uniformed arguments order
[android-x86/external-alsa-lib.git] / src / pcm / pcm_alaw.c
1 /*
2  *  PCM - A-Law conversion
3  *  Copyright (c) 2000 by Abramo Bagnara <abramo@alsa-project.org>
4  *
5  *
6  *   This library is free software; you can redistribute it and/or modify
7  *   it under the terms of the GNU Library General Public License as
8  *   published by the Free Software Foundation; either version 2 of
9  *   the License, or (at your option) any later version.
10  *
11  *   This program is distributed in the hope that it will be useful,
12  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *   GNU Library General Public License for more details.
15  *
16  *   You should have received a copy of the GNU Library General Public
17  *   License along with this library; if not, write to the Free Software
18  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  *
20  */
21   
22 #include <byteswap.h>
23 #include "pcm_local.h"
24 #include "pcm_plugin.h"
25
26 typedef void (*alaw_f)(const snd_pcm_channel_area_t *src_areas,
27                         size_t src_offset,
28                         const snd_pcm_channel_area_t *dst_areas,
29                         size_t dst_offset,
30                         size_t channels, size_t frames, int getputidx);
31
32 typedef struct {
33         /* This field need to be the first */
34         snd_pcm_plugin_t plug;
35         int getput_idx;
36         alaw_f func;
37         int sformat;
38 } snd_pcm_alaw_t;
39
40 static inline int val_seg(int val)
41 {
42         int r = 1;
43         val >>= 8;
44         if (val & 0xf0) {
45                 val >>= 4;
46                 r += 4;
47         }
48         if (val & 0x0c) {
49                 val >>= 2;
50                 r += 2;
51         }
52         if (val & 0x02)
53                 r += 1;
54         return r;
55 }
56
57 /*
58  * s16_to_alaw() - Convert a 16-bit linear PCM value to 8-bit A-law
59  *
60  * s16_to_alaw() accepts an 16-bit integer and encodes it as A-law data.
61  *
62  *              Linear Input Code       Compressed Code
63  *      ------------------------        ---------------
64  *      0000000wxyza                    000wxyz
65  *      0000001wxyza                    001wxyz
66  *      000001wxyzab                    010wxyz
67  *      00001wxyzabc                    011wxyz
68  *      0001wxyzabcd                    100wxyz
69  *      001wxyzabcde                    101wxyz
70  *      01wxyzabcdef                    110wxyz
71  *      1wxyzabcdefg                    111wxyz
72  *
73  * For further information see John C. Bellamy's Digital Telephony, 1982,
74  * John Wiley & Sons, pps 98-111 and 472-476.
75  */
76
77 static unsigned char s16_to_alaw(int pcm_val)
78 {
79         int             mask;
80         int             seg;
81         unsigned char   aval;
82
83         if (pcm_val >= 0) {
84                 mask = 0xD5;
85         } else {
86                 mask = 0x55;
87                 pcm_val = -pcm_val;
88                 if (pcm_val > 0x7fff)
89                         pcm_val = 0x7fff;
90         }
91
92         if (pcm_val < 256)
93                 aval = pcm_val >> 4;
94         else {
95                 /* Convert the scaled magnitude to segment number. */
96                 seg = val_seg(pcm_val);
97                 aval = (seg << 4) | ((pcm_val >> (seg + 3)) & 0x0f);
98         }
99         return aval ^ mask;
100 }
101
102 /*
103  * alaw_to_s16() - Convert an A-law value to 16-bit linear PCM
104  *
105  */
106 static int alaw_to_s16(unsigned char a_val)
107 {
108         int             t;
109         int             seg;
110
111         a_val ^= 0x55;
112         t = a_val & 0x7f;
113         if (t < 16)
114                 t = (t << 4) + 8;
115         else {
116                 seg = (t >> 4) & 0x07;
117                 t = ((t & 0x0f) << 4) + 0x108;
118                 t <<= seg -1;
119         }
120         return ((a_val & 0x80) ? t : -t);
121 }
122
123 static void alaw_decode(const snd_pcm_channel_area_t *src_areas,
124                         size_t src_offset,
125                         const snd_pcm_channel_area_t *dst_areas,
126                         size_t dst_offset,
127                         size_t channels, size_t frames, int putidx)
128 {
129 #define PUT16_LABELS
130 #include "plugin_ops.h"
131 #undef PUT16_LABELS
132         void *put = put16_labels[putidx];
133         size_t channel;
134         for (channel = 0; channel < channels; ++channel) {
135                 char *src;
136                 char *dst;
137                 int src_step, dst_step;
138                 size_t frames1;
139                 const snd_pcm_channel_area_t *src_area = &src_areas[channel];
140                 const snd_pcm_channel_area_t *dst_area = &dst_areas[channel];
141 #if 0
142                 if (!src_area->enabled) {
143                         if (dst_area->wanted)
144                                 snd_pcm_area_silence(&dst_areas[channel], dst_offset, frames, dst_sfmt);
145                         dst_area->enabled = 0;
146                         continue;
147                 }
148                 dst_area->enabled = 1;
149 #endif
150                 src = snd_pcm_channel_area_addr(src_area, src_offset);
151                 dst = snd_pcm_channel_area_addr(dst_area, dst_offset);
152                 src_step = snd_pcm_channel_area_step(src_area);
153                 dst_step = snd_pcm_channel_area_step(dst_area);
154                 frames1 = frames;
155                 while (frames1-- > 0) {
156                         int16_t sample = alaw_to_s16(*src);
157                         goto *put;
158 #define PUT16_END after
159 #include "plugin_ops.h"
160 #undef PUT16_END
161                 after:
162                         src += src_step;
163                         dst += dst_step;
164                 }
165         }
166 }
167
168 static void alaw_encode(const snd_pcm_channel_area_t *src_areas,
169                          size_t src_offset,
170                          const snd_pcm_channel_area_t *dst_areas,
171                          size_t dst_offset,
172                          size_t channels, size_t frames, int getidx)
173 {
174 #define GET16_LABELS
175 #include "plugin_ops.h"
176 #undef GET16_LABELS
177         void *get = get16_labels[getidx];
178         size_t channel;
179         int16_t sample = 0;
180         for (channel = 0; channel < channels; ++channel) {
181                 char *src;
182                 char *dst;
183                 int src_step, dst_step;
184                 size_t frames1;
185                 const snd_pcm_channel_area_t *src_area = &src_areas[channel];
186                 const snd_pcm_channel_area_t *dst_area = &dst_areas[channel];
187 #if 0
188                 if (!src_area->enabled) {
189                         if (dst_area->wanted)
190                                 snd_pcm_area_silence(&dst_area->area, 0, frames, dst_sfmt);
191                         dst_area->enabled = 0;
192                         continue;
193                 }
194                 dst_area->enabled = 1;
195 #endif
196                 src = snd_pcm_channel_area_addr(src_area, src_offset);
197                 dst = snd_pcm_channel_area_addr(dst_area, dst_offset);
198                 src_step = snd_pcm_channel_area_step(src_area);
199                 dst_step = snd_pcm_channel_area_step(dst_area);
200                 frames1 = frames;
201                 while (frames1-- > 0) {
202                         goto *get;
203 #define GET16_END after
204 #include "plugin_ops.h"
205 #undef GET16_END
206                 after:
207                         *dst = s16_to_alaw(sample);
208                         src += src_step;
209                         dst += dst_step;
210                 }
211         }
212 }
213
214 static int snd_pcm_alaw_hw_info(snd_pcm_t *pcm, snd_pcm_hw_info_t * info)
215 {
216         snd_pcm_alaw_t *alaw = pcm->private;
217         unsigned int format_mask, access_mask;
218         int err;
219         info->access_mask &= (SND_PCM_ACCBIT_MMAP_INTERLEAVED | 
220                               SND_PCM_ACCBIT_RW_INTERLEAVED |
221                               SND_PCM_ACCBIT_MMAP_NONINTERLEAVED | 
222                               SND_PCM_ACCBIT_RW_NONINTERLEAVED);
223         access_mask = info->access_mask;
224         if (access_mask == 0)
225                 return -EINVAL;
226         if (alaw->sformat == SND_PCM_FORMAT_MU_LAW)
227                 info->format_mask &= SND_PCM_FMTBIT_LINEAR;
228         else
229                 info->format_mask &= SND_PCM_FMTBIT_MU_LAW;
230         format_mask = info->format_mask;
231         if (format_mask == 0)
232                 return -EINVAL;
233
234         info->format_mask = 1U << alaw->sformat;
235         info->access_mask = SND_PCM_ACCBIT_MMAP;
236         err = snd_pcm_hw_info(alaw->plug.slave, info);
237         info->format_mask = format_mask;
238         info->access_mask = access_mask;
239         if (err < 0)
240                 return err;
241         info->info &= ~(SND_PCM_INFO_MMAP | SND_PCM_INFO_MMAP_VALID);
242         snd_pcm_hw_info_complete(info);
243         return 0;
244 }
245
246 static int snd_pcm_alaw_hw_params(snd_pcm_t *pcm, snd_pcm_hw_params_t * params)
247 {
248         snd_pcm_alaw_t *alaw = pcm->private;
249         snd_pcm_t *slave = alaw->plug.slave;
250         snd_pcm_hw_info_t sinfo;
251         snd_pcm_hw_params_t sparams;
252         int err;
253         snd_pcm_hw_params_to_info(params, &sinfo);
254         sinfo.format_mask = 1 << alaw->sformat;
255         sinfo.access_mask = SND_PCM_ACCBIT_MMAP;
256         err = snd_pcm_hw_params_info(slave, &sparams, &sinfo);
257         params->fail_mask = sparams.fail_mask;
258         if (err < 0)
259                 return err;
260         if (pcm->stream == SND_PCM_STREAM_PLAYBACK) {
261                 if (alaw->sformat == SND_PCM_FORMAT_MU_LAW) {
262                         alaw->getput_idx = get_index(params->format, SND_PCM_FORMAT_S16);
263                         alaw->func = alaw_encode;
264                 } else {
265                         alaw->getput_idx = put_index(SND_PCM_FORMAT_S16, alaw->sformat);
266                         alaw->func = alaw_decode;
267                 }
268         } else {
269                 if (alaw->sformat == SND_PCM_FORMAT_MU_LAW) {
270                         alaw->getput_idx = put_index(SND_PCM_FORMAT_S16, params->format);
271                         alaw->func = alaw_decode;
272                 } else {
273                         alaw->getput_idx = get_index(alaw->sformat, SND_PCM_FORMAT_S16);
274                         alaw->func = alaw_encode;
275                 }
276         }
277         return 0;
278 }
279
280 static ssize_t snd_pcm_alaw_write_areas(snd_pcm_t *pcm,
281                                         const snd_pcm_channel_area_t *areas,
282                                         size_t offset,
283                                         size_t size,
284                                         size_t *slave_sizep)
285 {
286         snd_pcm_alaw_t *alaw = pcm->private;
287         snd_pcm_t *slave = alaw->plug.slave;
288         size_t xfer = 0;
289         ssize_t err = 0;
290         if (slave_sizep && *slave_sizep < size)
291                 size = *slave_sizep;
292         assert(size > 0);
293         while (xfer < size) {
294                 size_t frames = snd_pcm_mmap_playback_xfer(slave, size - xfer);
295                 alaw->func(areas, offset, 
296                             snd_pcm_mmap_areas(slave), snd_pcm_mmap_offset(slave),
297                             pcm->channels, frames,
298                             alaw->getput_idx);
299                 err = snd_pcm_mmap_forward(slave, frames);
300                 if (err < 0)
301                         break;
302                 assert((size_t)err == frames);
303                 offset += err;
304                 xfer += err;
305                 snd_pcm_mmap_hw_forward(pcm, err);
306         }
307         if (xfer > 0) {
308                 if (slave_sizep)
309                         *slave_sizep = xfer;
310                 return xfer;
311         }
312         return err;
313 }
314
315 static ssize_t snd_pcm_alaw_read_areas(snd_pcm_t *pcm,
316                                        const snd_pcm_channel_area_t *areas,
317                                        size_t offset,
318                                        size_t size,
319                                        size_t *slave_sizep)
320 {
321         snd_pcm_alaw_t *alaw = pcm->private;
322         snd_pcm_t *slave = alaw->plug.slave;
323         size_t xfer = 0;
324         ssize_t err = 0;
325         if (slave_sizep && *slave_sizep < size)
326                 size = *slave_sizep;
327         assert(size > 0);
328         while (xfer < size) {
329                 size_t frames = snd_pcm_mmap_capture_xfer(slave, size - xfer);
330                 alaw->func(snd_pcm_mmap_areas(slave), snd_pcm_mmap_offset(slave),
331                            areas, offset, 
332                            pcm->channels, frames,
333                            alaw->getput_idx);
334                 err = snd_pcm_mmap_forward(slave, frames);
335                 if (err < 0)
336                         break;
337                 assert((size_t)err == frames);
338                 offset += err;
339                 xfer += err;
340                 snd_pcm_mmap_hw_forward(pcm, err);
341         }
342         if (xfer > 0) {
343                 if (slave_sizep)
344                         *slave_sizep = xfer;
345                 return xfer;
346         }
347         return err;
348 }
349
350 static void snd_pcm_alaw_dump(snd_pcm_t *pcm, FILE *fp)
351 {
352         snd_pcm_alaw_t *alaw = pcm->private;
353         fprintf(fp, "A-Law conversion PCM (%s)\n", 
354                 snd_pcm_format_name(alaw->sformat));
355         if (pcm->setup) {
356                 fprintf(fp, "Its setup is:\n");
357                 snd_pcm_dump_setup(pcm, fp);
358         }
359         fprintf(fp, "Slave: ");
360         snd_pcm_dump(alaw->plug.slave, fp);
361 }
362
363 snd_pcm_ops_t snd_pcm_alaw_ops = {
364         close: snd_pcm_plugin_close,
365         info: snd_pcm_plugin_info,
366         hw_info: snd_pcm_alaw_hw_info,
367         hw_params: snd_pcm_alaw_hw_params,
368         sw_params: snd_pcm_plugin_sw_params,
369         dig_info: snd_pcm_plugin_dig_info,
370         dig_params: snd_pcm_plugin_dig_params,
371         channel_info: snd_pcm_plugin_channel_info,
372         dump: snd_pcm_alaw_dump,
373         nonblock: snd_pcm_plugin_nonblock,
374         async: snd_pcm_plugin_async,
375         mmap: snd_pcm_plugin_mmap,
376         munmap: snd_pcm_plugin_munmap,
377 };
378
379 int snd_pcm_alaw_open(snd_pcm_t **pcmp, char *name, int sformat, snd_pcm_t *slave, int close_slave)
380 {
381         snd_pcm_t *pcm;
382         snd_pcm_alaw_t *alaw;
383         assert(pcmp && slave);
384         if (snd_pcm_format_linear(sformat) != 1 &&
385             sformat != SND_PCM_FORMAT_A_LAW)
386                 return -EINVAL;
387         alaw = calloc(1, sizeof(snd_pcm_alaw_t));
388         if (!alaw) {
389                 return -ENOMEM;
390         }
391         alaw->sformat = sformat;
392         alaw->plug.read = snd_pcm_alaw_read_areas;
393         alaw->plug.write = snd_pcm_alaw_write_areas;
394         alaw->plug.slave = slave;
395         alaw->plug.close_slave = close_slave;
396
397         pcm = calloc(1, sizeof(snd_pcm_t));
398         if (!pcm) {
399                 free(alaw);
400                 return -ENOMEM;
401         }
402         if (name)
403                 pcm->name = strdup(name);
404         pcm->type = SND_PCM_TYPE_ALAW;
405         pcm->stream = slave->stream;
406         pcm->mode = slave->mode;
407         pcm->ops = &snd_pcm_alaw_ops;
408         pcm->op_arg = pcm;
409         pcm->fast_ops = &snd_pcm_plugin_fast_ops;
410         pcm->fast_op_arg = pcm;
411         pcm->private = alaw;
412         pcm->poll_fd = slave->poll_fd;
413         pcm->hw_ptr = &alaw->plug.hw_ptr;
414         pcm->appl_ptr = &alaw->plug.appl_ptr;
415         *pcmp = pcm;
416
417         return 0;
418 }
419
420 int _snd_pcm_alaw_open(snd_pcm_t **pcmp, char *name,
421                          snd_config_t *conf, 
422                          int stream, int mode)
423 {
424         snd_config_iterator_t i;
425         char *sname = NULL;
426         int err;
427         snd_pcm_t *spcm;
428         int sformat = -1;
429         snd_config_foreach(i, conf) {
430                 snd_config_t *n = snd_config_entry(i);
431                 if (strcmp(n->id, "comment") == 0)
432                         continue;
433                 if (strcmp(n->id, "type") == 0)
434                         continue;
435                 if (strcmp(n->id, "stream") == 0)
436                         continue;
437                 if (strcmp(n->id, "sname") == 0) {
438                         err = snd_config_string_get(n, &sname);
439                         if (err < 0) {
440                                 ERR("Invalid type for %s", n->id);
441                                 return -EINVAL;
442                         }
443                         continue;
444                 }
445                 if (strcmp(n->id, "sformat") == 0) {
446                         char *f;
447                         err = snd_config_string_get(n, &f);
448                         if (err < 0) {
449                                 ERR("Invalid type for %s", n->id);
450                                 return -EINVAL;
451                         }
452                         sformat = snd_pcm_format_value(f);
453                         if (sformat < 0) {
454                                 ERR("Unknown sformat");
455                                 return -EINVAL;
456                         }
457                         if (snd_pcm_format_linear(sformat) != 1 &&
458                             sformat != SND_PCM_FORMAT_A_LAW) {
459                                 ERR("Invalid sformat");
460                                 return -EINVAL;
461                         }
462                         continue;
463                 }
464                 ERR("Unknown field %s", n->id);
465                 return -EINVAL;
466         }
467         if (!sname) {
468                 ERR("sname is not defined");
469                 return -EINVAL;
470         }
471         if (sformat < 0) {
472                 ERR("sformat is not defined");
473                 return -EINVAL;
474         }
475         /* This is needed cause snd_config_update may destroy config */
476         sname = strdup(sname);
477         if (!sname)
478                 return  -ENOMEM;
479         err = snd_pcm_open(&spcm, sname, stream, mode);
480         free(sname);
481         if (err < 0)
482                 return err;
483         err = snd_pcm_alaw_open(pcmp, name, sformat, spcm, 1);
484         if (err < 0)
485                 snd_pcm_close(spcm);
486         return err;
487 }
488                                 
489