source: roaraudio/roard/codecfilter_alaw.c @ 4923:eb6f9e17661a

Last change on this file since 4923:eb6f9e17661a was 4923:eb6f9e17661a, checked in by phi, 13 years ago

use new target syntax of ckport

File size: 2.5 KB
Line 
1//codecfilter_alaw.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2011
5 *
6 *  This file is part of roard a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio 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 software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
23 *
24 */
25
26/* ckport options:
27 * ckport: ignore-symbol: roardsp_conv_pcm162alaw of target libroardsp0
28 * ckport: ignore-symbol: roardsp_conv_alaw2pcm16 of target libroardsp0
29 */
30
31#include "roard.h"
32
33#ifdef ROAR_SUPPORT_ALAW
34
35int cf_alaw_open(CODECFILTER_USERDATA_T * inst, int codec,
36                                            struct roar_stream_server * info,
37                                            struct roar_codecfilter   * filter) {
38 struct roar_stream * s = ROAR_STREAM(info);
39
40
41 *inst = (CODECFILTER_USERDATA_T) info;
42
43 s->info.bits  = 16;
44 s->info.codec = ROAR_CODEC_DEFAULT;
45
46 return 0;
47}
48
49int cf_alaw_close(CODECFILTER_USERDATA_T   inst) {
50 return 0;
51}
52
53int cf_alaw_read(CODECFILTER_USERDATA_T   inst, char * buf, int len) {
54 struct roar_stream_server * s = ROAR_STREAM_SERVER(inst);
55
56 if ( (len = stream_vio_s_read(s, buf, len/2)) < 1 ) {
57  return len;
58 }
59
60 roardsp_conv_alaw2pcm16((int16_t *)buf, buf, len);
61
62 return len*2;
63}
64
65#ifdef ROAR_SUPPORT_ALAW_RW
66int cf_alaw_write(CODECFILTER_USERDATA_T   inst, char * buf, int len) {
67 struct roar_stream_server * s = ROAR_STREAM_SERVER(inst);
68 char * out;
69
70 // TODO: add a more effect way to use memory than allways alloc/freeing it.
71 //       maybe by keeping a buffer over instanzes or by using ca global buffer
72 //       with an refrenze counter so we can free it on last use
73
74 len /= 2;
75
76 if ( (out = (char*)malloc(len)) == NULL )
77  return -1;
78
79 roardsp_conv_pcm162alaw(out, (int16_t*)buf, len);
80
81 len = stream_vio_s_write(s, out, len);
82
83 free(out);
84
85 if ( len > 0 ) {
86  return len*2;
87 } else {
88  return -1;
89 }
90}
91#endif
92
93#endif
94
95//ll
Note: See TracBrowser for help on using the repository browser.