mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
26 lines
514 B
C++
26 lines
514 B
C++
#ifndef AUDIOINPUTPROXY_H
|
|
#define AUDIOINPUTPROXY_H
|
|
|
|
#include <QIODevice>
|
|
#include <functional>
|
|
#include "memring.h"
|
|
|
|
class AudioInputProxy : public QIODevice
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit AudioInputProxy(QObject *parent = 0);
|
|
virtual ~AudioInputProxy();
|
|
|
|
std::function< void() > callback;
|
|
|
|
qint64 readData(char *data, qint64 maxlen);
|
|
qint64 writeData(const char *data, qint64 len);
|
|
qint64 bytesAvailable() const;
|
|
|
|
private:
|
|
MemRing<char> *ring_buffer;
|
|
};
|
|
|
|
#endif // AUDIOINPUTPROXY_H
|