Browse Source

avcodec/v4l2_m2m: fix setting frame period

Currently the driver's frame period is incorrectly set to the frame
rate. This is fixed in the commit.

Signed-off-by: Ming Qian <ming.qian@nxp.com>
Signed-off-by: Andriy Gelman <andriy.gelman@gmail.com>
tags/n4.3
Ming Qian Andriy Gelman 5 years ago
parent
commit
edee0d0104
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/v4l2_m2m_enc.c

+ 1
- 1
libavcodec/v4l2_m2m_enc.c View File

@@ -172,7 +172,7 @@ static int v4l2_prepare_encoder(V4L2m2mContext *s)
* settingss
*/
if (avctx->framerate.num || avctx->framerate.den)
v4l2_set_timeperframe(s, avctx->framerate.num, avctx->framerate.den);
v4l2_set_timeperframe(s, avctx->framerate.den, avctx->framerate.num);

/* set ext ctrls */
v4l2_set_ext_ctrl(s, MPEG_CID(HEADER_MODE), MPEG_VIDEO(HEADER_MODE_SEPARATE), "header mode");


Loading…
Cancel
Save