Skip to content

Commit

Permalink
fix bug in FutureAudioSource
Browse files Browse the repository at this point in the history
  • Loading branch information
CrSjimo committed Oct 14, 2024
1 parent 409182c commit ef3638a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/core/source/FutureAudioSource.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,8 @@ namespace talcs {
void FutureAudioSource::setNextReadPosition(qint64 pos) {
Q_D(FutureAudioSource);
QMutexLocker locker(&d->mutex);
if (d->src)
d->src->setNextReadPosition(pos);
PositionableAudioSource::setNextReadPosition(pos);
}

Expand Down

0 comments on commit ef3638a

Please sign in to comment.