started conversion of VOIP code (from Joss) into a plugin. Unfinished!

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4945 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2012-02-15 21:17:18 +00:00
parent 8f0f6a9f3e
commit fc15899f0f
23 changed files with 10288 additions and 0 deletions

View file

@ -0,0 +1,19 @@
#ifndef AUDIODEVICEHELPER_H
#define AUDIODEVICEHELPER_H
#include <QtMultimediaKit/QAudioInput>
#include <QtMultimediaKit/QAudioOutput>
class AudioDeviceHelper
{
public:
AudioDeviceHelper();
static QAudioInput* getDefaultInputDevice();
static QAudioInput* getPreferedInputDevice();
//static list getInputDeviceList();
static QAudioOutput* getDefaultOutputDevice();
static QAudioOutput* getPreferedOutputDevice();
//static list getOutputDeviceList();
};
#endif // AUDIODEVICEHELPER_H