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

Commit de7c96af authored by Andy McFadden's avatar Andy McFadden Committed by Android (Google) Code Review
Browse files

Merge "Don't abort on unusual state transition"

parents d1fbc465 ba812e3b
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -130,10 +130,12 @@ void GraphicBufferSource::omxExecuting() {

void GraphicBufferSource::omxLoaded(){
    Mutex::Autolock autoLock(mMutex);
    ALOGV("--> loaded");
    CHECK(mExecuting);
    if (!mExecuting) {
        // This can happen if something failed very early.
        ALOGW("Dropped back down to Loaded without Executing");
    }

    ALOGV("Dropped down to loaded, avail=%d eos=%d eosSent=%d",
    ALOGV("--> loaded; avail=%d eos=%d eosSent=%d",
            mNumFramesAvailable, mEndOfStream, mEndOfStreamSent);

    // Codec is no longer executing.  Discard all codec-related state.