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

Commit dcd76da5 authored by James Dong's avatar James Dong Committed by Android (Google) Code Review
Browse files

Merge "Make a small correction in terms of GOP structure in the recorded video" into jb-mr1-dev

parents cb66d22f 08654f9d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -890,7 +890,7 @@ static OMX_U32 setPFramesSpacing(int32_t iFramesInterval, int32_t frameRate) {
    } else if (iFramesInterval == 0) {
        return 0;
    }
    OMX_U32 ret = frameRate * iFramesInterval;
    OMX_U32 ret = frameRate * iFramesInterval - 1;
    CHECK(ret > 1);
    return ret;
}