mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 00:14:06 +00:00
44 lines
1.2 KiB
C++
44 lines
1.2 KiB
C++
|
/* This file is (c) 2018 Igor Kushnir <igorkuo@gmail.com>
|
||
|
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
||
|
|
||
|
#ifdef MAKE_QTMULTIMEDIA_PLAYER
|
||
|
|
||
|
#include <QByteArray>
|
||
|
#include <QMediaContent>
|
||
|
#include "multimediaaudioplayer.hh"
|
||
|
|
||
|
MultimediaAudioPlayer::MultimediaAudioPlayer() :
|
||
|
player( 0, QMediaPlayer::StreamPlayback )
|
||
|
{
|
||
|
typedef void( QMediaPlayer::* ErrorSignal )( QMediaPlayer::Error );
|
||
|
connect( &player, static_cast< ErrorSignal >( &QMediaPlayer::error ),
|
||
|
this, &MultimediaAudioPlayer::onMediaPlayerError );
|
||
|
}
|
||
|
|
||
|
QString MultimediaAudioPlayer::play( const char * data, int size )
|
||
|
{
|
||
|
stop();
|
||
|
|
||
|
audioBuffer.setData( data, size );
|
||
|
if( !audioBuffer.open( QIODevice::ReadOnly ) )
|
||
|
return tr( "Couldn't open audio buffer for reading." );
|
||
|
|
||
|
player.setMedia( QMediaContent(), &audioBuffer );
|
||
|
player.play();
|
||
|
return QString();
|
||
|
}
|
||
|
|
||
|
void MultimediaAudioPlayer::stop()
|
||
|
{
|
||
|
player.setMedia( QMediaContent() ); // Forget about audioBuffer.
|
||
|
audioBuffer.close();
|
||
|
audioBuffer.setData( QByteArray() ); // Free memory.
|
||
|
}
|
||
|
|
||
|
void MultimediaAudioPlayer::onMediaPlayerError()
|
||
|
{
|
||
|
emit error( player.errorString() );
|
||
|
}
|
||
|
|
||
|
#endif // MAKE_QTMULTIMEDIA_PLAYER
|