mirror of
https://github.com/danog/php-libtgvoip.git
synced 2024-12-02 09:17:55 +01:00
34 lines
849 B
C++
34 lines
849 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_AUDIOINPUTPHP_H
|
|
#define LIBTGVOIP_AUDIOINPUTPHP_H
|
|
|
|
#include "phpcpp.h"
|
|
#include "libtgvoip/audio/AudioInput.h"
|
|
#include "libtgvoip/threading.h"
|
|
|
|
namespace tgvoip{ namespace audio{
|
|
class AudioInputPHP : public AudioInput{
|
|
|
|
public:
|
|
AudioInputPHP(Php::Value callbacks);
|
|
virtual ~AudioInputPHP();
|
|
Php::Value configureMethod;
|
|
Php::Value startMethod;
|
|
Php::Value stopMethod;
|
|
|
|
virtual void Configure(uint32_t sampleRate, uint32_t bitsPerSample, uint32_t channels);
|
|
virtual void Start();
|
|
virtual void Stop();
|
|
virtual void writeFrames(Php::Parameters ¶ms);
|
|
private:
|
|
bool running;
|
|
};
|
|
}}
|
|
|
|
#endif //LIBTGVOIP_AUDIOINPUTPHP_H
|