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

Commit 593be39e authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "stagefright: ACodec: Handle temporal layered encoding error" into av-aosp.lnx.2.0-dev

parents a17b968d d049e945
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -3876,7 +3876,10 @@ status_t ACodec::setupVideoEncoder(
            if (err != OK) {
                ALOGE("Configuring temporal layers (P=%d B=%d) failed: %d",
                        numLayers, numBLayers, err);
                // not a fatal error
                // not a fatal error, set error code to OK
                // This will avoid tear down of session where temporal
                // layer encoding is not supported for some chipsets
                err = OK;
            }
        }
    }