mirror of
https://github.com/danog/php-libtgvoip.git
synced 2024-11-30 04:19:26 +01:00
36 lines
954 B
C++
36 lines
954 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
|