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

Commit 051b8572 authored by Wei Jia's avatar Wei Jia Committed by Android Git Automerger
Browse files

am 91860b89: SoftAVCEncoder: fix auto merge error, member names have changed.

* commit '91860b89':
  SoftAVCEncoder: fix auto merge error, member names have changed.
parents e264b770 91860b89
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -244,7 +244,7 @@ OMX_ERRORTYPE SoftAVCEncoder::initEncParams() {
    if (mColorFormat != OMX_COLOR_FormatYUV420Planar || mInputDataIsMeta) {
        // Color conversion is needed.
        free(mInputFrameData);
        if (((uint64_t)mVideoWidth * mVideoHeight) > ((uint64_t)INT32_MAX / 3)) {
        if (((uint64_t)mWidth * mHeight) > ((uint64_t)INT32_MAX / 3)) {
            ALOGE("Buffer size is too big.");
            return OMX_ErrorUndefined;
        }