jamulus/src/vstsound.h

63 lines
2.3 KiB
C
Raw Normal View History

2010-03-05 06:52:30 +01:00
/******************************************************************************\
2019-06-16 11:31:46 +02:00
* Copyright (c) 2004-2019
2010-03-05 06:52:30 +01:00
*
* Author(s):
* Volker Fischer
*
******************************************************************************
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
2010-03-05 06:52:30 +01:00
*
\******************************************************************************/
#if !defined ( _VSTSOUND_H__9518A346345768_11D3_8C0D_EEBF182CF549__INCLUDED_ )
#define _VSTSOUND_H__9518A346345768_11D3_8C0D_EEBF182CF549__INCLUDED_
#include "../src/util.h"
#include "../src/global.h"
#include "../src/soundbase.h"
/* Classes ********************************************************************/
2010-03-27 08:44:25 +01:00
class CSound : public CSoundBase
2010-03-05 06:52:30 +01:00
{
public:
2010-03-28 18:13:58 +02:00
CSound ( void (*fpNewCallback) ( CVector<int16_t>& psData, void* arg ), void* arg ) :
2019-06-16 11:31:46 +02:00
CSoundBase ( true, fpNewCallback, arg ), iVSTMonoBufferSize ( 0 ) {}
// special VST functions
void SetMonoBufferSize ( const int iNVBS ) { iVSTMonoBufferSize = iNVBS; }
2010-04-06 20:16:35 +02:00
void VSTProcessCallback()
2010-03-31 22:11:01 +02:00
{
2010-04-06 20:16:35 +02:00
CSoundBase::ProcessCallback ( vecsTmpAudioSndCrdStereo );
}
2010-03-31 22:11:01 +02:00
virtual int Init ( const int )
{
2010-03-31 22:11:01 +02:00
// init base class
CSoundBase::Init ( iVSTMonoBufferSize );
2010-04-06 20:16:35 +02:00
vecsTmpAudioSndCrdStereo.Init ( 2 * iVSTMonoBufferSize /* stereo */);
2010-03-31 22:11:01 +02:00
return iVSTMonoBufferSize;
}
2010-04-06 20:16:35 +02:00
// this vector must be accessible from the outside (quick hack solution)
CVector<int16_t> vecsTmpAudioSndCrdStereo;
protected:
int iVSTMonoBufferSize;
2010-03-05 06:52:30 +01:00
};
#endif // !defined ( _VSTSOUND_H__9518A346345768_11D3_8C0D_EEBF182CF549__INCLUDED_ )