mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
avcodec/v4l2_buffers: return int64_t in v4l2_get_pts
v4l2_pts is type int64_t we should return that instead of uint64_t Signed-off-by: Aman Gupta <aman@tmm1.net>
This commit is contained in:
parent
bad8365b2b
commit
1d36b7b47a
@ -62,7 +62,7 @@ static inline void v4l2_set_pts(V4L2Buffer *out, int64_t pts)
|
||||
out->buf.timestamp.tv_sec = v4l2_pts / USEC_PER_SEC;
|
||||
}
|
||||
|
||||
static inline uint64_t v4l2_get_pts(V4L2Buffer *avbuf)
|
||||
static inline int64_t v4l2_get_pts(V4L2Buffer *avbuf)
|
||||
{
|
||||
V4L2m2mContext *s = buf_to_m2mctx(avbuf);
|
||||
AVRational v4l2_timebase = { 1, USEC_PER_SEC };
|
||||
|
Loading…
Reference in New Issue
Block a user