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
44 int (* write
)(int, int);
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
},
51 { "oss", _out_open_oss
, _out_write_oss
, _out_close_oss
},
54 { "sgi", _out_open_sgi
, _out_write_sgi
, _out_close_sgi
},
56 { NULL
, NULL
, NULL
, NULL
}
60 static int _driver
=-1;
77 void fput16(short int i
, FILE * f
)
80 fputc((i
& 0xff00) >> 8, f
);
90 c
+=(fgetc(f
) * 65536);
91 c
+=(fgetc(f
) * 16777216);
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
)
115 if(_drivers
[n
].name
== NULL
)
118 if(strcmp(name
, _drivers
[n
].name
)==0)
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)
138 r
=_drivers
[_driver
].close();