kopia lustrzana https://gitlab.com/eliggett/wfview
48 wiersze
841 B
C++
48 wiersze
841 B
C++
#ifndef RXAUDIOHANDLER_H
|
|
#define RXAUDIOHANDLER_H
|
|
|
|
#include <QObject>
|
|
|
|
#include <QtMultimedia/QAudioOutput>
|
|
#include <QMutexLocker>
|
|
#include <QIODevice>
|
|
|
|
#include <QDebug>
|
|
|
|
class rxAudioHandler : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
rxAudioHandler();
|
|
~rxAudioHandler();
|
|
|
|
|
|
public slots:
|
|
void process();
|
|
void setup(const QAudioFormat format, const quint16 bufferSize, const bool isulaw);
|
|
|
|
void incomingAudio(const QByteArray data);
|
|
void changeBufferSize(const quint16 newSize);
|
|
void getBufferSize();
|
|
|
|
signals:
|
|
void audioMessage(QString message);
|
|
void sendBufferSize(quint16 newSize);
|
|
|
|
|
|
private:
|
|
QByteArray uLawDecode(const QByteArray in);
|
|
|
|
QAudioOutput* audio;
|
|
QAudioFormat format;
|
|
QIODevice* device;
|
|
int bufferSize;
|
|
QMutex mutex;
|
|
bool isUlaw;
|
|
|
|
|
|
};
|
|
|
|
#endif // RXAUDIOHANDLER_H
|