home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 106 / EnigmaAmiga106CD.iso / software / sviluppo / ahisrc / device / dspecho.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-04-22  |  2.0 KB  |  68 lines

  1. /* $Id: dspecho.h,v 4.4 1999/04/22 19:42:09 lcs Exp $ */
  2.  
  3. /*
  4.      AHI - Hardware independent audio subsystem
  5.      Copyright (C) 1996-1999 Martin Blom <martin@blom.org>
  6.      
  7.      This library is free software; you can redistribute it and/or
  8.      modify it under the terms of the GNU Library General Public
  9.      License as published by the Free Software Foundation; either
  10.      version 2 of the License, or (at your option) any later version.
  11.      
  12.      This library 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 GNU
  15.      Library General Public License for more details.
  16.      
  17.      You should have received a copy of the GNU Library General Public
  18.      License along with this library; if not, write to the
  19.      Free Software Foundation, Inc., 59 Temple Place - Suite 330, Cambridge,
  20.      MA 02139, USA.
  21. */
  22.  
  23. #ifndef _DSPECHO_H_
  24. #define _DSPECHO_H_
  25.  
  26. #include <config.h>
  27. #include <CompilerSpecific.h>
  28.  
  29. #include "ahi_def.h"
  30. #include "dsp.h"
  31.  
  32. #ifndef VERSION68K
  33.  
  34.  
  35. void
  36. do_DSPEchoMono32 ( struct Echo *es,
  37.                    void *buf,
  38.                    struct AHIPrivAudioCtrl *audioctrl );
  39.  
  40. void
  41. do_DSPEchoStereo32 ( struct Echo *es,
  42.                      void *buf,
  43.                      struct AHIPrivAudioCtrl *audioctrl );
  44.  
  45.  
  46. #else /* VERSION68K */
  47.  
  48.  
  49. #define REGS REG(a0, struct Echo *es),\
  50.              REG(a1, void *buf),\
  51.              REG(a2, struct AHIPrivAudioCtrl *audioctrl)
  52.  
  53. void ASMCALL do_DSPEchoMono16 ( REGS );
  54. void ASMCALL do_DSPEchoMono16Fast ( REGS );
  55. void ASMCALL do_DSPEchoStereo16 ( REGS );
  56. void ASMCALL do_DSPEchoStereo16Fast ( REGS );
  57. void ASMCALL do_DSPEchoMono32 ( REGS );
  58. void ASMCALL do_DSPEchoStereo32 ( REGS );
  59. void ASMCALL do_DSPEchoMono16NCFM ( REGS );
  60. void ASMCALL do_DSPEchoStereo16NCFM ( REGS );
  61. void ASMCALL do_DSPEchoMono16NCFMFast ( REGS );
  62. void ASMCALL do_DSPEchoStereo16NCFMFast ( REGS );
  63.  
  64.  
  65. #endif /* VERSION68K */
  66.  
  67. #endif /* _DSPECHO_H_ */
  68.