1
0
mirror of https://github.com/danog/libtgvoip.git synced 2024-11-27 12:44:37 +01:00
libtgvoip/os/android/AudioInputAndroid.h

39 lines
957 B
C
Raw Normal View History

2017-02-02 17:24:40 +01:00
//
// 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_AUDIOINPUTANDROID_H
#define LIBTGVOIP_AUDIOINPUTANDROID_H
#include <jni.h>
#include "../../audio/AudioInput.h"
2017-03-30 16:06:59 +02:00
#include "../../threading.h"
2017-02-02 17:24:40 +01:00
namespace tgvoip{ namespace audio{
class AudioInputAndroid : public AudioInput{
2017-02-02 17:24:40 +01:00
public:
AudioInputAndroid();
virtual ~AudioInputAndroid();
2017-02-02 17:24:40 +01:00
virtual void Configure(uint32_t sampleRate, uint32_t bitsPerSample, uint32_t channels);
virtual void Start();
virtual void Stop();
void HandleCallback(JNIEnv* env, jobject buffer);
static jmethodID initMethod;
static jmethodID releaseMethod;
static jmethodID startMethod;
static jmethodID stopMethod;
static jclass jniClass;
private:
jobject javaObject;
bool running;
2017-03-30 16:06:59 +02:00
tgvoip_mutex_t mutex;
2017-02-02 17:24:40 +01:00
};
}}
2017-02-02 17:24:40 +01:00
#endif //LIBTGVOIP_AUDIOINPUTANDROID_H