2013-05-05 10:22:12 +00:00
|
|
|
#ifndef __FFMPEGAUDIO_HH_INCLUDED__
|
|
|
|
#define __FFMPEGAUDIO_HH_INCLUDED__
|
|
|
|
|
2013-06-18 01:11:21 +00:00
|
|
|
#ifndef DISABLE_INTERNAL_PLAYER
|
|
|
|
|
2013-05-05 10:22:12 +00:00
|
|
|
#include <QObject>
|
|
|
|
#include <QMutex>
|
|
|
|
#include <QAtomicInt>
|
|
|
|
#include <QByteArray>
|
|
|
|
#include <QThread>
|
|
|
|
|
|
|
|
namespace Ffmpeg
|
|
|
|
{
|
|
|
|
|
|
|
|
class AudioPlayer : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
static AudioPlayer & instance();
|
2018-03-21 16:51:18 +00:00
|
|
|
void playMemory( const char * ptr, int size );
|
2013-06-23 09:53:10 +00:00
|
|
|
void stop();
|
2013-05-05 10:22:12 +00:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void cancelPlaying( bool waitUntilFinished );
|
|
|
|
void error( QString const & message );
|
|
|
|
|
|
|
|
private:
|
|
|
|
AudioPlayer();
|
|
|
|
~AudioPlayer();
|
|
|
|
AudioPlayer( AudioPlayer const & );
|
|
|
|
AudioPlayer & operator=( AudioPlayer const & );
|
|
|
|
};
|
|
|
|
|
|
|
|
class DecoderThread: public QThread
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
static QMutex deviceMutex_;
|
|
|
|
QAtomicInt isCancelled_;
|
|
|
|
QByteArray audioData_;
|
|
|
|
|
|
|
|
public:
|
|
|
|
DecoderThread( QByteArray const & audioData, QObject * parent );
|
|
|
|
virtual ~DecoderThread();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void run();
|
|
|
|
void cancel( bool waitUntilFinished );
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void error( QString const & message );
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-06-18 01:11:21 +00:00
|
|
|
#endif // DISABLE_INTERNAL_PLAYER
|
|
|
|
|
2013-05-05 10:22:12 +00:00
|
|
|
#endif // __FFMPEGAUDIO_HH_INCLUDED__
|