source: roaraudio/roard/driver_esd.c @ 930:62b20281af8d

Last change on this file since 930:62b20281af8d was 930:62b20281af8d, checked in by phi, 15 years ago

added a addition argument fh to vio driver open rutine, added var to save driver id in server stream struct

File size: 2.7 KB
Line 
1//driver_esd.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008
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, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 */
24
25#include "roard.h"
26#ifdef ROAR_HAVE_ESD
27
28/*
29 We could use inst as our fh directly. But esd works with unsigned at 8 bits and
30 signed at 16 bits per sample. (why???) so we need to convert because we get signed at both,
31 8 and 16 bits per sample. so we use inst as an array of two ints: 0: fh, 1: are we in 8 bit mode?
32*/
33
34int driver_esd_open_sysio(DRIVER_USERDATA_T * inst, char * device, struct roar_audio_info * info) {
35 esd_format_t format = ESD_STREAM | ESD_PLAY;
36 char name[80] = "roard";
37 int * di = malloc(sizeof(int)*2);
38
39 if ( di == NULL )
40  return -1;
41
42 *inst = (DRIVER_USERDATA_T)di;
43
44 format |= info->bits     == 16 ? ESD_BITS16 : ESD_BITS8;
45 format |= info->channels ==  2 ? ESD_STEREO : ESD_MONO;
46
47 di[1] = info->bits == 8;
48
49 di[0] = esd_play_stream_fallback(format, info->rate, device, name);
50
51 shutdown(di[0], SHUT_RD);
52
53 if ( di[0] == -1 ) {
54  free(di);
55  *inst = NULL;
56  return -1;
57 }
58
59 return 0;
60}
61
62int driver_esd_open_vio(struct roar_vio_calls * inst, char * device, struct roar_audio_info * info, int fh) {
63
64 if ( fh != -1 )
65  return -1;
66
67 inst->read  = driver_esd_read;
68 inst->write = driver_esd_write;
69 return driver_esd_open_sysio(&(inst->inst), device, info);
70}
71
72int driver_esd_close(DRIVER_USERDATA_T   inst) {
73 int fh;
74
75 inst = ((struct roar_vio_calls *)inst)->inst;
76
77 fh = *(int*)inst;
78
79 free((void*)inst);
80
81 return esd_close(fh);
82}
83
84int driver_esd_pause(DRIVER_USERDATA_T   inst, int newstate) {
85 return -1;
86}
87
88int driver_esd_write(struct roar_vio_calls * inst, void * buf, size_t len) {
89 int * di = (int*)((struct roar_vio_calls *)inst)->inst;
90
91 if ( di[1] )
92  roar_conv_codec_s2u8(buf, buf, len);
93
94 return write(di[0], buf, len);
95}
96
97int driver_esd_read(struct roar_vio_calls * inst, void * buf, size_t len) {
98 return read(*(int*)((struct roar_vio_calls *)inst)->inst, buf, len);
99}
100
101int driver_esd_flush(DRIVER_USERDATA_T   inst) {
102 return 0;
103}
104
105
106#endif
107//ll
Note: See TracBrowser for help on using the repository browser.