Browse Source

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>
tags/n4.3
Lukas Rusak Aman Gupta 7 years ago
parent
commit
1d36b7b47a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/v4l2_buffers.c

+ 1
- 1
libavcodec/v4l2_buffers.c View File

@@ -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…
Cancel
Save