mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
Merge pull request #1424 from shenlebantongying/fix/insanly-click-audio-crash
fix: crash when clicking audio insanely fast.
This commit is contained in:
commit
52c07b9291
|
@ -52,11 +52,12 @@ AudioService::~AudioService()
|
|||
void AudioService::playMemory( const char * ptr, int size )
|
||||
{
|
||||
emit cancelPlaying( false );
|
||||
if ( !thread.isNull() ) {
|
||||
thread->wait();
|
||||
}
|
||||
QByteArray audioData( ptr, size );
|
||||
thread = std::make_shared< DecoderThread >( audioData, this );
|
||||
connect( this, &AudioService::cancelPlaying, thread.get(), [ this ]( bool waitFinished ) {
|
||||
thread->cancel( waitFinished );
|
||||
} );
|
||||
thread.reset( new DecoderThread( audioData, this ) );
|
||||
connect( this, &AudioService::cancelPlaying, thread.get(), &DecoderThread::cancel );
|
||||
thread->start();
|
||||
}
|
||||
|
||||
|
@ -263,6 +264,11 @@ bool DecoderContext::openOutputDevice( QString & errorString )
|
|||
}
|
||||
#endif
|
||||
|
||||
if ( audioOutput == nullptr ) {
|
||||
errorString += QStringLiteral( "Failed to create audioOutput." );
|
||||
return false;
|
||||
}
|
||||
|
||||
audioOutput->setAudioFormat( 44100, codecContext_->channels );
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@ class DecoderThread;
|
|||
class AudioService: public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
std::shared_ptr< DecoderThread > thread;
|
||||
QScopedPointer< DecoderThread > thread;
|
||||
|
||||
public:
|
||||
static AudioService & instance();
|
||||
|
|
Loading…
Reference in a new issue