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

Commit 786ddba2 authored by Lajos Molnar's avatar Lajos Molnar Committed by android-build-merger
Browse files

fix build am: cc17d003 am: 6007caa5 am: f3c0ccf2

am: 21539313

Change-Id: Id42e3136795a130e0404ae684fc5168f0a707438
parents 839f3636 21539313
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -201,7 +201,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) {