Corrected conditional compilation errors.
[ahxm.git] / output.c
blob7ff417d6a5c21787b02a2980fe069cbbeb12eaf5
1 /*
3 output.c
5 Copyright (C) 2003 Angel Ortega <angel@triptico.com>
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License
9 as published by the Free Software Foundation; either version 2
10 of the License, or (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 http://www.triptico.com
25 #include <stdio.h>
26 #include <string.h>
27 #include "output.h"
29 /* output drivers */
30 #include "out_raw.h"
31 #include "out_wav.h"
32 #include "out_pipe.h"
33 #include "out_oss.h"
34 #include "out_sgi.h"
36 /*******************
37 Data
38 ********************/
40 static struct
42 char * name;
43 int (* open)(char *);
44 int (* write)(int, int);
45 int (* close)(void);
46 } _drivers[]={
47 { "raw", _out_open_raw, _out_write_raw, _out_close_raw },
48 { "wav", _out_open_wav, _out_write_wav, _out_close_wav },
49 { "pipe", _out_open_pipe, _out_write_pipe, _out_close_pipe },
50 #ifdef LINUX_OSS
51 { "oss", _out_open_oss, _out_write_oss, _out_close_oss },
52 #endif
53 #ifdef SGI
54 { "sgi", _out_open_sgi, _out_write_sgi, _out_close_sgi },
55 #endif
56 { NULL, NULL, NULL, NULL }
59 /* driver in use */
60 static int _driver=-1;
62 /*******************
63 Code
64 ********************/
66 int fget16(FILE * f)
68 int c;
70 c=fgetc(f);
71 c+=(fgetc(f) * 256);
73 return(c);
77 void fput16(short int i, FILE * f)
79 fputc(i & 0x00ff, f);
80 fputc((i & 0xff00) >> 8, f);
84 int fget32(FILE * f)
86 int c;
88 c=fgetc(f);
89 c+=(fgetc(f) * 256);
90 c+=(fgetc(f) * 65536);
91 c+=(fgetc(f) * 16777216);
93 return(c);
97 void fput32(int i, FILE * f)
99 fputc(i & 0x000000ff, f);
100 fputc((i & 0x0000ff00) >> 8, f);
101 fputc((i & 0x00ff0000) >> 16, f);
102 fputc((i & 0xff000000) >> 24, f);
106 int output_open(char * name, char * filename)
108 int n;
110 if(_driver != -1)
111 return(-1);
113 for(n=0;;n++)
115 if(_drivers[n].name == NULL)
116 return(-2);
118 if(strcmp(name, _drivers[n].name)==0)
119 break;
122 _driver=n;
124 return(_drivers[_driver].open(filename));
128 int output_write(int lsample, int rsample)
130 return(_drivers[_driver].write(lsample, rsample));
134 int output_close(void)
136 int r;
138 r=_drivers[_driver].close();
139 _driver=-1;
141 return(r);