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

Commit 40be0709 authored by James Dong's avatar James Dong Committed by Android Git Automerger
Browse files

am dcd76da5: Merge "Make a small correction in terms of GOP structure in the...

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

* commit 'dcd76da5':
  Make a small correction in terms of GOP structure in the recorded video
parents fff97293 dcd76da5
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;
}