w.i.p - correctly remap ColorModel_TrueColor images.
[AROS.git] / workbench / devs / AHI / Device / dspechofuncs.h
blob558d489f3004de0ead8bafeb74c029b3df7a8ab0
1 /*
2 AHI - Hardware independent audio subsystem
3 Copyright (C) 1996-2005 Martin Blom <martin@blom.org>
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with this library; if not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330, Cambridge,
18 MA 02139, USA.
21 #ifndef ahi_dspechofuncs_h
22 #define ahi_dspechofuncs_h
24 #include <config.h>
26 #include "ahi_def.h"
27 #include "dspecho.h"
29 void
30 EchoMono16( LONG loops,
31 struct Echo *es,
32 void **buffer,
33 void **srcptr,
34 void **dstptr);
36 void
37 EchoStereo16( LONG loops,
38 struct Echo *es,
39 void **buffer,
40 void **srcptr,
41 void **dstptr);
43 void
44 EchoMono32 ( LONG loops,
45 struct Echo *es,
46 void **buffer,
47 void **srcptr,
48 void **dstptr);
50 void
51 EchoStereo32 ( LONG loops,
52 struct Echo *es,
53 void **buffer,
54 void **srcptr,
55 void **dstptr);
57 void
58 EchoMulti32 ( LONG loops,
59 struct Echo *es,
60 void **buffer,
61 void **srcptr,
62 void **dstptr);
65 #endif /* ahi_dspechofuncs_h */