1 // ****************************************************************************
3 // CDspCommObjectVmixer.H
5 // DSP comm object with vmixer support
7 // ----------------------------------------------------------------------------
9 // ----------------------------------------------------------------------------
11 // This file is part of Echo Digital Audio's generic driver library.
12 // Copyright Echo Digital Audio Corporation (c) 1998 - 2005
13 // All rights reserved
16 // This library is free software; you can redistribute it and/or
17 // modify it under the terms of the GNU Lesser General Public
18 // License as published by the Free Software Foundation; either
19 // version 2.1 of the License, or (at your option) any later version.
21 // This library is distributed in the hope that it will be useful,
22 // but WITHOUT ANY WARRANTY; without even the implied warranty of
23 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 // Lesser General Public License for more details.
26 // You should have received a copy of the GNU Lesser General Public
27 // License along with this library; if not, write to the Free Software
28 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30 // ****************************************************************************
32 #ifndef _DSPCOMMOBJECT_VMIXER_H_
33 #define _DSPCOMMOBJECT_VMIXER_H_
35 #include "CDspCommObject.h"
37 class CDspCommObjectVmixer
: public CDspCommObject
41 // Construction/destruction
43 CDspCommObjectVmixer( PDWORD pdwRegBase
, PCOsSupport pOsSupport
);
44 virtual ~CDspCommObjectVmixer();
46 virtual ECHOSTATUS GetAudioMeters
48 PECHOGALS_METERS pMeters
51 virtual ECHOSTATUS SetPipeOutGain
56 BOOL fImmediate
= TRUE
59 virtual ECHOSTATUS GetPipeOutGain
66 virtual ECHOSTATUS
UpdateVmixerLevel();
68 virtual ECHOSTATUS
SetBusOutGain(WORD wBusOut
,INT32 iGain
);
70 }; // class CDspCommObjectVmixer
72 typedef CDspCommObjectVmixer
* PCDspCommObjectVmixer
;
74 #endif // _DSPCOMMOBJECT_VMIXER_H_
76 // **** CDspCommObjectVmixer.h ****