source: roaraudio/roard/codecfilter_alaw.c @ 5381:430b1d26e12d

Last change on this file since 5381:430b1d26e12d was 5381:430b1d26e12d, checked in by phi, 12 years ago

updated copyright years

File size: 2.5 KB
RevLine 
[736]1//codecfilter_alaw.c:
2
3/*
[5381]4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2012
[736]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
[3517]21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
[736]23 *
24 */
25
[4921]26/* ckport options:
[4923]27 * ckport: ignore-symbol: roardsp_conv_pcm162alaw of target libroardsp0
28 * ckport: ignore-symbol: roardsp_conv_alaw2pcm16 of target libroardsp0
[4921]29 */
30
[736]31#include "roard.h"
32
[1065]33#ifdef ROAR_SUPPORT_ALAW
34
[736]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
[5270]40 (void)codec, (void)filter;
[736]41
42 *inst = (CODECFILTER_USERDATA_T) info;
43
[738]44 s->info.bits  = 16;
[736]45 s->info.codec = ROAR_CODEC_DEFAULT;
46
47 return 0;
48}
49
50int cf_alaw_close(CODECFILTER_USERDATA_T   inst) {
[5270]51 (void)inst;
[736]52 return 0;
53}
54
55int cf_alaw_read(CODECFILTER_USERDATA_T   inst, char * buf, int len) {
56 struct roar_stream_server * s = ROAR_STREAM_SERVER(inst);
57
58 if ( (len = stream_vio_s_read(s, buf, len/2)) < 1 ) {
59  return len;
60 }
61
[783]62 roardsp_conv_alaw2pcm16((int16_t *)buf, buf, len);
[736]63
64 return len*2;
65}
66
[1065]67#ifdef ROAR_SUPPORT_ALAW_RW
[736]68int cf_alaw_write(CODECFILTER_USERDATA_T   inst, char * buf, int len) {
[818]69 struct roar_stream_server * s = ROAR_STREAM_SERVER(inst);
70 char * out;
71
72 // TODO: add a more effect way to use memory than allways alloc/freeing it.
73 //       maybe by keeping a buffer over instanzes or by using ca global buffer
74 //       with an refrenze counter so we can free it on last use
75
76 len /= 2;
77
[4957]78 if ( (out = (char*)roar_mm_malloc(len)) == NULL )
[818]79  return -1;
[736]80
[818]81 roardsp_conv_pcm162alaw(out, (int16_t*)buf, len);
82
83 len = stream_vio_s_write(s, out, len);
84
[4957]85 roar_mm_free(out);
[818]86
87 if ( len > 0 ) {
88  return len*2;
89 } else {
90  return -1;
91 }
[736]92}
[1065]93#endif
94
95#endif
[736]96
97//ll
Note: See TracBrowser for help on using the repository browser.