99 lines
3.5 KiB
C++
Executable file
99 lines
3.5 KiB
C++
Executable file
/******************************************************************************\
|
|
* Copyright (c) 2004-2009
|
|
*
|
|
* 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.,
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
\******************************************************************************/
|
|
|
|
#if !defined ( _SOUNDIN_H__9518A621_7F78_11D3_8C0D_EEBF182CF549__INCLUDED_ )
|
|
#define _SOUNDIN_H__9518A621_7F78_11D3_8C0D_EEBF182CF549__INCLUDED_
|
|
|
|
#include <windows.h>
|
|
#include <string>
|
|
#include <qmutex.h>
|
|
#include <qmessagebox.h>
|
|
#include "../src/util.h"
|
|
#include "../src/global.h"
|
|
#include "../src/soundbase.h"
|
|
|
|
// copy the ASIO SDK in the llcon/windows directory: "llcon/windows/ASIOSDK2" to
|
|
// get it work
|
|
#include "asiosys.h"
|
|
#include "asio.h"
|
|
#include "asiodrivers.h"
|
|
|
|
|
|
/* Definitions ****************************************************************/
|
|
#define NUM_IN_OUT_CHANNELS 2 /* Stereo recording (but we only
|
|
use one channel for recording) */
|
|
|
|
#define MAX_SND_BUF_IN 100
|
|
#define MAX_SND_BUF_OUT 100
|
|
|
|
#define NUM_SOUND_BUFFERS_IN 4
|
|
#define NUM_SOUND_BUFFERS_OUT 4
|
|
|
|
|
|
/* Classes ********************************************************************/
|
|
class CSound : public CSoundBase
|
|
{
|
|
public:
|
|
CSound ( void (*fpNewCallback) ( CVector<int16_t>& psData, void* arg ), void* arg );
|
|
virtual ~CSound();
|
|
|
|
virtual int Init ( const int iNewPrefMonoBufferSize );
|
|
virtual void Start();
|
|
virtual void Stop();
|
|
|
|
virtual void OpenDriverSetup() { ASIOControlPanel(); }
|
|
|
|
int GetNumDev() { return lNumDevs; }
|
|
std::string GetDeviceName ( const int iDiD ) { return cDriverNames[iDiD]; }
|
|
|
|
std::string SetDev ( const int iNewDev );
|
|
int GetDev() { return lCurDev; }
|
|
|
|
protected:
|
|
bool LoadAndInitializeFirstValidDriver();
|
|
std::string LoadAndInitializeDriver ( int iIdx );
|
|
int GetActualBufferSize ( const int iDesiredBufferSizeMono );
|
|
std::string CheckDeviceCapabilities();
|
|
|
|
// audio hardware buffer info
|
|
struct sHWBufferInfo
|
|
{
|
|
long lMinSize;
|
|
long lMaxSize;
|
|
long lPreferredSize;
|
|
long lGranularity;
|
|
} HWBufferInfo;
|
|
|
|
// callbacks
|
|
static void bufferSwitch ( long index, ASIOBool processNow );
|
|
static ASIOTime* bufferSwitchTimeInfo ( ASIOTime* timeInfo, long index, ASIOBool processNow );
|
|
static void sampleRateChanged ( ASIOSampleRate sRate ) {}
|
|
static long asioMessages ( long selector, long value, void* message, double* opt );
|
|
|
|
long lNumDevs;
|
|
long lCurDev;
|
|
char* cDriverNames[MAX_NUMBER_SOUND_CARDS];
|
|
};
|
|
|
|
#endif // !defined ( _SOUNDIN_H__9518A621_7F78_11D3_8C0D_EEBF182CF549__INCLUDED_ )
|