00001 /* 00002 $Id: inverse_echofilter.h,v 1.1 2001/03/06 15:09:12 mbn Exp $ 00003 00004 ------------------------------------------------------------------------ 00005 ClanLib, the platform independent game SDK. 00006 00007 This library is distributed under the GNU LIBRARY GENERAL PUBLIC LICENSE 00008 version 2. See COPYING for details. 00009 00010 For a total list of contributers see CREDITS. 00011 00012 ------------------------------------------------------------------------ 00013 */ 00014 00016 00017 #ifndef header_inverse_echofilter 00018 #define header_inverse_echofilter 00019 00020 #include "../soundfilter.h" 00021 00022 class CL_InverseEchoFilter : public CL_SoundFilter 00023 { 00024 public: 00025 CL_InverseEchoFilter(int buffer_size = 64*1024); 00026 virtual ~CL_InverseEchoFilter(); 00027 00028 virtual void filter(int *data, int size); 00029 00030 private: 00031 CL_InverseEchoFilter(const CL_InverseEchoFilter ©) { return; } // disallow copy construction. 00032 class CL_InverseEchoFilter_Generic *impl; 00033 }; 00034 00035 #endif
1.2.6 written by Dimitri van Heesch,
© 1997-2001