v4l2_m2m: Fix integer overflow in timestamp handling

This commit is contained in:
Mark Thompson 2018-01-21 00:52:18 +00:00 committed by Jorge Ramirez-Ortiz
parent 388a0f7869
commit 2e96f52780

View File

@ -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);
}