1 // ****************************************************************************
3 // CIndigoDspCommObject.H
5 // Include file for EchoGals generic driver CIndigo DSP interface class.
7 // ----------------------------------------------------------------------------
9 // This file is part of Echo Digital Audio's generic driver library.
10 // Copyright Echo Digital Audio Corporation (c) 1998 - 2005
11 // All rights reserved
14 // This library is free software; you can redistribute it and/or
15 // modify it under the terms of the GNU Lesser General Public
16 // License as published by the Free Software Foundation; either
17 // version 2.1 of the License, or (at your option) any later version.
19 // This library is distributed in the hope that it will be useful,
20 // but WITHOUT ANY WARRANTY; without even the implied warranty of
21 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 // Lesser General Public License for more details.
24 // You should have received a copy of the GNU Lesser General Public
25 // License along with this library; if not, write to the Free Software
26 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 // ****************************************************************************
30 #ifndef _INDIGO_DSPCOMMOBJECT_
31 #define _INDIGO_DSPCOMMOBJECT_
33 #include "CDspCommObjectVmixer.h"
35 class CIndigoDspCommObject
: public CDspCommObjectVmixer
39 // Construction/destruction
41 CIndigoDspCommObject( PDWORD pdwRegBase
, PCOsSupport pOsSupport
);
42 virtual ~CIndigoDspCommObject();
45 // Set the DSP sample rate.
46 // Return rate that was set, -1 if error
48 virtual DWORD
SetSampleRate( DWORD dwNewSampleRate
);
50 // Send current setting to DSP & return what it is
52 virtual DWORD
SetSampleRate()
53 { return( SetSampleRate( GetSampleRate() ) ); }
58 virtual WORD
GetCardType()
64 virtual ECHOSTATUS
SetInputClock(WORD wClock
);
66 }; // class CIndigoDspCommObject
68 typedef CIndigoDspCommObject
* PCIndigoDspCommObject
;
72 // **** CIndigoDspCommObject.h ****