2017-05-12 18:29:35 +02: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_AUDIOINPUTPULSE_H
|
|
|
|
#define LIBTGVOIP_AUDIOINPUTPULSE_H
|
|
|
|
|
|
|
|
#include "../../audio/AudioInput.h"
|
|
|
|
#include "../../threading.h"
|
|
|
|
#include <pulse/pulseaudio.h>
|
|
|
|
|
|
|
|
#define DECLARE_DL_FUNCTION(name) typeof(name)* _import_##name
|
|
|
|
|
|
|
|
namespace tgvoip{
|
|
|
|
namespace audio{
|
|
|
|
|
|
|
|
class AudioInputPulse : public AudioInput{
|
|
|
|
public:
|
|
|
|
AudioInputPulse(std::string devID);
|
|
|
|
virtual ~AudioInputPulse();
|
|
|
|
virtual void Configure(uint32_t sampleRate, uint32_t bitsPerSample, uint32_t channels);
|
|
|
|
virtual void Start();
|
|
|
|
virtual void Stop();
|
|
|
|
virtual bool IsRecording();
|
|
|
|
virtual void SetCurrentDevice(std::string devID);
|
|
|
|
static void EnumerateDevices(std::vector<AudioInputDevice>& devs);
|
|
|
|
static bool IsAvailable();
|
|
|
|
|
|
|
|
private:
|
|
|
|
static void ContextStateCallback(pa_context* context, void* arg);
|
|
|
|
static void StreamStateCallback(pa_stream* s, void* arg);
|
|
|
|
static void StreamSuccessCallback(pa_stream* stream, int success, void* userdata);
|
|
|
|
static void StreamReadCallback(pa_stream* stream, size_t requested_bytes, void* userdata);
|
|
|
|
void StreamReadCallback(pa_stream* stream, size_t requestedBytes);
|
|
|
|
|
|
|
|
pa_threaded_mainloop* mainloop;
|
|
|
|
pa_mainloop_api* mainloopApi;
|
|
|
|
pa_context* context;
|
|
|
|
pa_stream* stream;
|
|
|
|
void* lib;
|
|
|
|
|
|
|
|
DECLARE_DL_FUNCTION(pa_threaded_mainloop_new);
|
|
|
|
DECLARE_DL_FUNCTION(pa_threaded_mainloop_get_api);
|
|
|
|
DECLARE_DL_FUNCTION(pa_context_new);
|
|
|
|
DECLARE_DL_FUNCTION(pa_context_set_state_callback);
|
|
|
|
DECLARE_DL_FUNCTION(pa_threaded_mainloop_lock);
|
|
|
|
DECLARE_DL_FUNCTION(pa_threaded_mainloop_unlock);
|
|
|
|
DECLARE_DL_FUNCTION(pa_threaded_mainloop_start);
|
|
|
|
DECLARE_DL_FUNCTION(pa_context_connect);
|
|
|
|
DECLARE_DL_FUNCTION(pa_context_get_state);
|
|
|
|
DECLARE_DL_FUNCTION(pa_threaded_mainloop_wait);
|
|
|
|
DECLARE_DL_FUNCTION(pa_stream_new);
|
|
|
|
DECLARE_DL_FUNCTION(pa_stream_set_state_callback);
|
|
|
|
DECLARE_DL_FUNCTION(pa_stream_set_read_callback);
|
|
|
|
DECLARE_DL_FUNCTION(pa_stream_connect_record);
|
|
|
|
DECLARE_DL_FUNCTION(pa_operation_unref);
|
|
|
|
DECLARE_DL_FUNCTION(pa_stream_cork);
|
|
|
|
DECLARE_DL_FUNCTION(pa_threaded_mainloop_stop);
|
|
|
|
DECLARE_DL_FUNCTION(pa_stream_disconnect);
|
|
|
|
DECLARE_DL_FUNCTION(pa_stream_unref);
|
|
|
|
DECLARE_DL_FUNCTION(pa_context_disconnect);
|
|
|
|
DECLARE_DL_FUNCTION(pa_context_unref);
|
|
|
|
DECLARE_DL_FUNCTION(pa_threaded_mainloop_free);
|
|
|
|
DECLARE_DL_FUNCTION(pa_threaded_mainloop_signal);
|
|
|
|
DECLARE_DL_FUNCTION(pa_stream_peek);
|
|
|
|
DECLARE_DL_FUNCTION(pa_stream_drop);
|
|
|
|
DECLARE_DL_FUNCTION(pa_stream_get_state);
|
|
|
|
DECLARE_DL_FUNCTION(pa_strerror);
|
|
|
|
|
|
|
|
bool isRecording;
|
|
|
|
bool isConnected;
|
2017-05-21 16:50:23 +02:00
|
|
|
bool didStart;
|
2017-05-21 20:15:42 +02:00
|
|
|
bool isLocked;
|
2017-05-12 18:29:35 +02:00
|
|
|
unsigned char remainingData[10240];
|
|
|
|
size_t remainingDataSize;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef DECLARE_DL_FUNCTION
|
|
|
|
|
|
|
|
#endif //LIBTGVOIP_AUDIOINPUTPULSE_H
|