2006-12-18 14:39:33 +00:00
|
|
|
/******************************************************************************\
|
2009-02-15 18:11:15 +00:00
|
|
|
* Copyright (c) 2004-2009
|
2006-12-18 14:39:33 +00:00
|
|
|
*
|
|
|
|
* Author(s):
|
|
|
|
* Volker Fischer, Alexander Kurpiers
|
|
|
|
*
|
|
|
|
* This code is based on the Open-Source sound interface implementation of
|
|
|
|
* the Dream DRM Receiver project.
|
|
|
|
*
|
|
|
|
\******************************************************************************/
|
|
|
|
|
|
|
|
#if !defined(_SOUND_H__9518A621345F78_3634567_8C0D_EEBF182CF549__INCLUDED_)
|
|
|
|
#define _SOUND_H__9518A621345F78_3634567_8C0D_EEBF182CF549__INCLUDED_
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2009-02-22 23:13:59 +00:00
|
|
|
#include <qthread.h>
|
2006-12-18 14:39:33 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include "util.h"
|
2009-02-22 23:13:59 +00:00
|
|
|
#include "soundbase.h"
|
2006-12-18 14:39:33 +00:00
|
|
|
#include "global.h"
|
|
|
|
|
|
|
|
#if WITH_SOUND
|
|
|
|
# define ALSA_PCM_NEW_HW_PARAMS_API
|
|
|
|
# define ALSA_PCM_NEW_SW_PARAMS_API
|
|
|
|
# include <alsa/asoundlib.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* Definitions ****************************************************************/
|
2008-10-31 20:27:55 +00:00
|
|
|
#define NUM_IN_OUT_CHANNELS 2 // always stereo
|
2006-12-18 14:39:33 +00:00
|
|
|
|
2008-10-31 20:27:55 +00:00
|
|
|
// the number of periods is critical for latency
|
2006-12-18 14:39:33 +00:00
|
|
|
#define NUM_PERIOD_BLOCKS_IN 2
|
2009-03-02 09:36:00 +00:00
|
|
|
#define NUM_PERIOD_BLOCKS_OUT 1
|
2006-12-18 14:39:33 +00:00
|
|
|
|
|
|
|
#define MAX_SND_BUF_IN 200
|
|
|
|
#define MAX_SND_BUF_OUT 200
|
|
|
|
|
2009-02-22 23:13:59 +00:00
|
|
|
|
2006-12-18 14:39:33 +00:00
|
|
|
/* Classes ********************************************************************/
|
2009-02-22 23:13:59 +00:00
|
|
|
class CSound : public CSoundBase
|
2006-12-18 14:39:33 +00:00
|
|
|
{
|
|
|
|
public:
|
2009-02-24 22:56:19 +00:00
|
|
|
CSound ( void (*fpNewCallback) ( CVector<short>& psData, void* arg ), void* arg ) :
|
2006-12-18 14:39:33 +00:00
|
|
|
#if WITH_SOUND
|
2009-03-01 11:17:35 +00:00
|
|
|
CSoundBase ( false, fpNewCallback, arg ), rhandle ( NULL ),
|
2009-02-22 23:13:59 +00:00
|
|
|
phandle ( NULL ), iCurPeriodSizeIn ( NUM_PERIOD_BLOCKS_IN ),
|
2008-10-31 20:27:55 +00:00
|
|
|
iCurPeriodSizeOut ( NUM_PERIOD_BLOCKS_OUT ), bChangParamIn ( true ),
|
2009-02-24 22:56:19 +00:00
|
|
|
bChangParamOut ( true ) {}
|
2008-12-28 22:37:16 +00:00
|
|
|
#else
|
2009-03-01 11:17:35 +00:00
|
|
|
CSoundBase ( false, fpNewCallback, arg ) {}
|
2008-12-28 22:37:16 +00:00
|
|
|
#endif
|
2008-10-31 20:27:55 +00:00
|
|
|
virtual ~CSound() { Close(); }
|
2006-12-18 14:39:33 +00:00
|
|
|
|
2008-10-30 23:23:26 +00:00
|
|
|
// not implemented yet, always return one device and default string
|
|
|
|
int GetNumDev() { return 1; }
|
|
|
|
std::string GetDeviceName ( const int iDiD ) { return "wave mapper"; }
|
|
|
|
int SetDev ( const int iNewDev ) {} // dummy
|
|
|
|
int GetDev() { return 0; }
|
2006-12-18 14:39:33 +00:00
|
|
|
|
|
|
|
#if WITH_SOUND
|
2009-03-01 22:08:06 +00:00
|
|
|
virtual int Init ( const int iNewPrefMonoBufferSize )
|
2009-02-24 22:56:19 +00:00
|
|
|
{
|
|
|
|
// init base class
|
2009-03-01 22:08:06 +00:00
|
|
|
CSoundBase::Init ( iNewPrefMonoBufferSize );
|
2009-02-24 22:56:19 +00:00
|
|
|
|
|
|
|
// set internal buffer size for read and write
|
2009-03-01 22:08:06 +00:00
|
|
|
iBufferSizeIn = iNewPrefMonoBufferSize;
|
|
|
|
iBufferSizeOut = iNewPrefMonoBufferSize;
|
2009-02-24 22:56:19 +00:00
|
|
|
|
|
|
|
InitRecording();
|
|
|
|
InitPlayback();
|
2009-03-01 22:08:06 +00:00
|
|
|
|
|
|
|
return iNewPrefMonoBufferSize;
|
2009-02-24 22:56:19 +00:00
|
|
|
}
|
2009-02-22 23:13:59 +00:00
|
|
|
virtual bool Read ( CVector<short>& psData );
|
|
|
|
virtual bool Write ( CVector<short>& psData );
|
2009-02-24 09:56:11 +00:00
|
|
|
virtual void Close();
|
2006-12-18 14:39:33 +00:00
|
|
|
|
|
|
|
protected:
|
2009-02-23 20:13:03 +00:00
|
|
|
void InitRecording();
|
|
|
|
void InitPlayback();
|
|
|
|
|
2006-12-18 14:39:33 +00:00
|
|
|
snd_pcm_t* rhandle;
|
|
|
|
snd_pcm_t* phandle;
|
|
|
|
|
2008-10-31 20:27:55 +00:00
|
|
|
bool SetHWParams ( snd_pcm_t* handle, const int iBufferSizeIn,
|
|
|
|
const int iNumPeriodBlocks );
|
2006-12-18 14:39:33 +00:00
|
|
|
|
|
|
|
int iBufferSizeOut;
|
|
|
|
int iBufferSizeIn;
|
|
|
|
bool bChangParamIn;
|
|
|
|
int iCurPeriodSizeIn;
|
|
|
|
bool bChangParamOut;
|
|
|
|
int iCurPeriodSizeOut;
|
|
|
|
#else
|
2008-10-31 20:27:55 +00:00
|
|
|
// dummy definitions
|
2009-03-01 22:08:06 +00:00
|
|
|
virtual int Init ( const int iNewPrefMonoBufferSize ) { CSoundBase::Init ( iNewPrefMonoBufferSize ); }
|
2009-02-22 23:13:59 +00:00
|
|
|
virtual bool Read ( CVector<short>& psData ) { printf ( "no sound!" ); return false; }
|
|
|
|
virtual bool Write ( CVector<short>& psData ) { printf ( "no sound!" ); return false; }
|
2009-02-24 09:56:11 +00:00
|
|
|
virtual void Close() {}
|
2006-12-18 14:39:33 +00:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // !defined(_SOUND_H__9518A621345F78_3634567_8C0D_EEBF182CF549__INCLUDED_)
|