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

Commit 6007caa5 authored by Lajos Molnar's avatar Lajos Molnar Committed by android-build-merger
Browse files

fix build

am: cc17d003

Change-Id: Id0af1ad23c65f8dc358420e21786f5e7db32fd46
parents 1a05bc6c cc17d003
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -194,7 +194,8 @@ bool SoftVPX::outputBufferSafe(OMX_BUFFERHEADERTYPE *outHeader) {
    uint64_t nFilledLen = width;
    nFilledLen *= height;
    if (nFilledLen > UINT32_MAX / 3) {
        ALOGE("b/29421675, nFilledLen overflow %llu w %u h %u", nFilledLen, width, height);
        ALOGE("b/29421675, nFilledLen overflow %llu w %u h %u",
                (unsigned long long)nFilledLen, width, height);
        android_errorWriteLog(0x534e4554, "29421675");
        return false;
    } else if (outHeader->nAllocLen < outHeader->nFilledLen) {