2006-12-18 15:39:33 +01:00
|
|
|
/******************************************************************************\
|
2009-02-15 19:11:15 +01:00
|
|
|
* Copyright (c) 2004-2009
|
2006-12-18 15:39:33 +01: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-23 00:13:59 +01:00
|
|
|
#include <qthread.h>
|
2006-12-18 15:39:33 +01:00
|
|
|
#include <string.h>
|
|
|
|
#include "util.h"
|
2009-02-23 00:13:59 +01:00
|
|
|
#include "soundbase.h"
|
2006-12-18 15:39:33 +01:00
|
|
|
#include "global.h"
|
|
|
|
|
|
|
|
#if WITH_SOUND
|
2009-03-07 23:56:46 +01:00
|
|
|
# if USE_JACK
|
|
|
|
# include <jack/jack.h>
|
|
|
|
# else
|
|
|
|
# define ALSA_PCM_NEW_HW_PARAMS_API
|
|
|
|
# define ALSA_PCM_NEW_SW_PARAMS_API
|
|
|
|
# include <alsa/asoundlib.h>
|
|
|
|
# endif
|
2006-12-18 15:39:33 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* Definitions ****************************************************************/
|
2008-10-31 21:27:55 +01:00
|
|
|
#define NUM_IN_OUT_CHANNELS 2 // always stereo
|
2006-12-18 15:39:33 +01:00
|
|
|
|
2008-10-31 21:27:55 +01:00
|
|
|
// the number of periods is critical for latency
|
2006-12-18 15:39:33 +01:00
|
|
|
#define NUM_PERIOD_BLOCKS_IN 2
|
2009-03-02 10:36:00 +01:00
|
|
|
#define NUM_PERIOD_BLOCKS_OUT 1
|
2006-12-18 15:39:33 +01:00
|
|
|
|
|
|
|
#define MAX_SND_BUF_IN 200
|
|
|
|
#define MAX_SND_BUF_OUT 200
|
|
|
|
|
2009-02-23 00:13:59 +01:00
|
|
|
|
2006-12-18 15:39:33 +01:00
|
|
|
/* Classes ********************************************************************/
|
2009-03-07 23:56:46 +01:00
|
|
|
#if WITH_SOUND
|
|
|
|
# if USE_JACK
|
|
|
|
|
|
|
|
// TODO, see http://jackit.sourceforge.net/cgi-bin/lxr/http/source/example-clients/simple_client.c
|
|
|
|
|
|
|
|
# else
|
2009-02-23 00:13:59 +01:00
|
|
|
class CSound : public CSoundBase
|
2006-12-18 15:39:33 +01:00
|
|
|
{
|
|
|
|
public:
|
2009-02-24 23:56:19 +01:00
|
|
|
CSound ( void (*fpNewCallback) ( CVector<short>& psData, void* arg ), void* arg ) :
|
2009-03-07 23:56:46 +01:00
|
|
|
CSoundBase ( false, fpNewCallback, arg ), rhandle ( NULL ),
|
|
|
|
phandle ( NULL ), iCurPeriodSizeIn ( NUM_PERIOD_BLOCKS_IN ),
|
|
|
|
iCurPeriodSizeOut ( NUM_PERIOD_BLOCKS_OUT ), bChangParamIn ( true ),
|
|
|
|
bChangParamOut ( true ) {}
|
2008-10-31 21:27:55 +01:00
|
|
|
virtual ~CSound() { Close(); }
|
2006-12-18 15:39:33 +01:00
|
|
|
|
2008-10-31 00:23:26 +01: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 15:39:33 +01:00
|
|
|
|
2009-03-01 23:08:06 +01:00
|
|
|
virtual int Init ( const int iNewPrefMonoBufferSize )
|
2009-02-24 23:56:19 +01:00
|
|
|
{
|
|
|
|
// init base class
|
2009-03-01 23:08:06 +01:00
|
|
|
CSoundBase::Init ( iNewPrefMonoBufferSize );
|
2009-02-24 23:56:19 +01:00
|
|
|
|
|
|
|
// set internal buffer size for read and write
|
2009-03-01 23:08:06 +01:00
|
|
|
iBufferSizeIn = iNewPrefMonoBufferSize;
|
|
|
|
iBufferSizeOut = iNewPrefMonoBufferSize;
|
2009-02-24 23:56:19 +01:00
|
|
|
|
|
|
|
InitRecording();
|
|
|
|
InitPlayback();
|
2009-03-01 23:08:06 +01:00
|
|
|
|
|
|
|
return iNewPrefMonoBufferSize;
|
2009-02-24 23:56:19 +01:00
|
|
|
}
|
2009-02-23 00:13:59 +01:00
|
|
|
virtual bool Read ( CVector<short>& psData );
|
|
|
|
virtual bool Write ( CVector<short>& psData );
|
2006-12-18 15:39:33 +01:00
|
|
|
|
|
|
|
protected:
|
2009-03-07 23:56:46 +01:00
|
|
|
void Close();
|
2009-02-23 21:13:03 +01:00
|
|
|
void InitRecording();
|
|
|
|
void InitPlayback();
|
|
|
|
|
2006-12-18 15:39:33 +01:00
|
|
|
snd_pcm_t* rhandle;
|
|
|
|
snd_pcm_t* phandle;
|
|
|
|
|
2008-10-31 21:27:55 +01:00
|
|
|
bool SetHWParams ( snd_pcm_t* handle, const int iBufferSizeIn,
|
|
|
|
const int iNumPeriodBlocks );
|
2006-12-18 15:39:33 +01:00
|
|
|
|
|
|
|
int iBufferSizeOut;
|
|
|
|
int iBufferSizeIn;
|
|
|
|
bool bChangParamIn;
|
|
|
|
int iCurPeriodSizeIn;
|
|
|
|
bool bChangParamOut;
|
|
|
|
int iCurPeriodSizeOut;
|
2009-03-07 23:56:46 +01:00
|
|
|
};
|
|
|
|
# endif // USE_JACK
|
2006-12-18 15:39:33 +01:00
|
|
|
#else
|
2009-03-07 23:56:46 +01:00
|
|
|
// no sound -> dummy class definition
|
|
|
|
class CSound : public CSoundBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CSound ( void (*fpNewCallback) ( CVector<short>& psData, void* arg ), void* arg ) :
|
|
|
|
CSoundBase ( false, fpNewCallback, arg ) {}
|
|
|
|
virtual ~CSound() { Close(); }
|
|
|
|
|
|
|
|
// not used
|
|
|
|
int GetNumDev() { return 1; }
|
|
|
|
std::string GetDeviceName ( const int iDiD ) { return "wave mapper"; }
|
|
|
|
int SetDev ( const int iNewDev ) {} // dummy
|
|
|
|
int GetDev() { return 0; }
|
|
|
|
|
2008-10-31 21:27:55 +01:00
|
|
|
// dummy definitions
|
2009-03-07 23:56:46 +01:00
|
|
|
virtual int Init ( const int iNewPrefMonoBufferSize ) { CSoundBase::Init ( iNewPrefMonoBufferSize ); }
|
2009-02-23 00:13:59 +01:00
|
|
|
virtual bool Read ( CVector<short>& psData ) { printf ( "no sound!" ); return false; }
|
|
|
|
virtual bool Write ( CVector<short>& psData ) { printf ( "no sound!" ); return false; }
|
2006-12-18 15:39:33 +01:00
|
|
|
};
|
2009-03-07 23:56:46 +01:00
|
|
|
#endif // WITH_SOUND
|
2006-12-18 15:39:33 +01:00
|
|
|
|
|
|
|
#endif // !defined(_SOUND_H__9518A621345F78_3634567_8C0D_EEBF182CF549__INCLUDED_)
|