v4l2_m2m: Fix integer overflow in timestamp handling

pull/275/head
Mark Thompson 7 years ago committed by Jorge Ramirez-Ortiz
parent 388a0f7869
commit 2e96f52780
  1. 3
      libavcodec/v4l2_buffers.c

@ -69,7 +69,8 @@ static inline uint64_t v4l2_get_pts(V4L2Buffer *avbuf)
int64_t v4l2_pts;
/* convert pts back to encoder timebase */
v4l2_pts = avbuf->buf.timestamp.tv_sec * USEC_PER_SEC + avbuf->buf.timestamp.tv_usec;
v4l2_pts = (int64_t)avbuf->buf.timestamp.tv_sec * USEC_PER_SEC +
avbuf->buf.timestamp.tv_usec;
return av_rescale_q(v4l2_pts, v4l2_timebase, s->avctx->time_base);
}

Loading…
Cancel
Save