Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 632c3790 authored by Haynes Mathew George's avatar Haynes Mathew George Committed by Android Git Automerger
Browse files

am 7c206e5b: am e0cd1051: audioflinger: update track ready condition

* commit '7c206e5b':
  audioflinger: update track ready condition
parents 4f9e38c6 7c206e5b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -551,7 +551,7 @@ size_t AudioFlinger::PlaybackThread::Track::framesReleased() const

// Don't call for fast tracks; the framesReady() could result in priority inversion
bool AudioFlinger::PlaybackThread::Track::isReady() const {
    if (mFillingUpStatus != FS_FILLING || isStopped() || isPausing()) {
    if (mFillingUpStatus != FS_FILLING || isStopped() || isPausing() || isStopping()) {
        return true;
    }