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>
pull/336/head
Ming Qian 5 years ago committed by Andriy Gelman
parent 67de1865b1
commit edee0d0104
  1. 2
      libavcodec/v4l2_m2m_enc.c

@ -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