1
0
mirror of https://github.com/danog/php-libtgvoip.git synced 2024-12-02 17:28:12 +01:00
php-libtgvoip/audio/AudioOutputModule.h
2017-07-06 18:12:49 +02:00

36 lines
955 B
C++

//
// libtgvoip is free and unencumbered public domain software.
// For more information, see http://unlicense.org or the UNLICENSE file
// you should have received with this source code distribution.
//
#ifndef LIBTGVOIP_AUDIOOUTPUTPHP_H
#define LIBTGVOIP_AUDIOOUTPUTPHP_H
#include "../libtgvoip/audio/AudioOutput.h"
#include "../main.h"
#include "../libtgvoip/VoIPController.h"
namespace tgvoip{ namespace audio{
class AudioOutputModule : public AudioOutput{
public:
AudioOutputModule(std::string deviceID, void* controller);
virtual ~AudioOutputModule();
virtual void Configure(uint32_t sampleRate, uint32_t bitsPerSample, uint32_t channels);
virtual void Start();
virtual void Stop();
virtual bool IsPlaying() override;
virtual float GetLevel() override;
unsigned char * readFrames();
static void EnumerateDevices(std::vector<AudioOutputDevice>& devs);
private:
VoIP *wrapper;
bool running;
};
}}
#endif //LIBTGVOIP_AUDIOOUTPUTPHP_H