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
48 int (* write
)(int, int);
51 { "raw", _out_open_raw
, _out_write_raw
, _out_close_raw
},
52 { "wav", _out_open_wav
, _out_write_wav
, _out_close_wav
},
53 { "pipe", _out_open_pipe
, _out_write_pipe
, _out_close_pipe
},
55 { "oss", _out_open_oss
, _out_write_oss
, _out_close_oss
},
58 { "sgi", _out_open_sgi
, _out_write_sgi
, _out_close_sgi
},
60 { NULL
, NULL
, NULL
, NULL
}
64 static int _driver
=-1;
70 void fput16(short int i
, FILE * f
)
73 fputc((i
& 0xff00) >> 8, f
);
77 void fput32(int i
, FILE * f
)
79 fputc(i
& 0x000000ff, f
);
80 fputc((i
& 0x0000ff00) >> 8, f
);
81 fputc((i
& 0x00ff0000) >> 16, f
);
82 fputc((i
& 0xff000000) >> 24, f
);
86 void trim_samples(int * left
, int * right
)
88 if(*left
< -32768) *left
=-32768;
89 if(*left
> 32767) *left
=32767;
90 if(*right
< -32768) *right
=-32768;
91 if(*right
> 32767) *right
=32767;
95 int output_open(char * name
, char * filename
)
104 if(_drivers
[n
].name
== NULL
)
107 if(strcmp(name
, _drivers
[n
].name
)==0)
113 return(_drivers
[_driver
].open(filename
));
117 int output_write(int lsample
, int rsample
)
119 trim_samples(&lsample
, &rsample
);
121 return(_drivers
[_driver
].write(lsample
, rsample
));
125 int output_close(void)
129 r
=_drivers
[_driver
].close();