[media] media: videobuf2: Restructure vb2_buffer
Remove v4l2 stuff - v4l2_buf, v4l2_plane - from struct vb2_buffer. Add new member variables - bytesused, length, offset, userptr, fd, data_offset - to struct vb2_plane in order to cover all information of v4l2_plane. struct vb2_plane { <snip> unsigned int bytesused; unsigned int length; union { unsigned int offset; unsigned long userptr; int fd; } m; unsigned int data_offset; } Replace v4l2_buf with new member variables - index, type, memory - which are common fields for buffer management. struct vb2_buffer { <snip> unsigned int index; unsigned int type; unsigned int memory; unsigned int num_planes; struct vb2_plane planes[VIDEO_MAX_PLANES]; <snip> }; v4l2 specific fields - flags, field, timestamp, timecode, sequence - are moved to vb2_v4l2_buffer in videobuf2-v4l2.c struct vb2_v4l2_buffer { struct vb2_buffer vb2_buf; __u32 flags; __u32 field; struct timeval timestamp; struct v4l2_timecode timecode; __u32 sequence; }; Signed-off-by: Junghak Sung <jh1009.sung@samsung.com> Signed-off-by: Geunyoung Kim <nenggun.kim@samsung.com> Acked-by: Seung-Woo Kim <sw0312.kim@samsung.com> Acked-by: Inki Dae <inki.dae@samsung.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:

committed by
Mauro Carvalho Chehab

orang tua
c139990e84
melakukan
2d7007153f
@@ -606,7 +606,7 @@ static u16 uvc_video_clock_host_sof(const struct uvc_clock_sample *sample)
|
||||
* timestamp of the sliding window to 1s.
|
||||
*/
|
||||
void uvc_video_clock_update(struct uvc_streaming *stream,
|
||||
struct v4l2_buffer *v4l2_buf,
|
||||
struct vb2_v4l2_buffer *vbuf,
|
||||
struct uvc_buffer *buf)
|
||||
{
|
||||
struct uvc_clock *clock = &stream->clock;
|
||||
@@ -699,14 +699,14 @@ void uvc_video_clock_update(struct uvc_streaming *stream,
|
||||
stream->dev->name,
|
||||
sof >> 16, div_u64(((u64)sof & 0xffff) * 1000000LLU, 65536),
|
||||
y, ts.tv_sec, ts.tv_nsec / NSEC_PER_USEC,
|
||||
v4l2_buf->timestamp.tv_sec,
|
||||
(unsigned long)v4l2_buf->timestamp.tv_usec,
|
||||
vbuf->timestamp.tv_sec,
|
||||
(unsigned long)vbuf->timestamp.tv_usec,
|
||||
x1, first->host_sof, first->dev_sof,
|
||||
x2, last->host_sof, last->dev_sof, y1, y2);
|
||||
|
||||
/* Update the V4L2 buffer. */
|
||||
v4l2_buf->timestamp.tv_sec = ts.tv_sec;
|
||||
v4l2_buf->timestamp.tv_usec = ts.tv_nsec / NSEC_PER_USEC;
|
||||
vbuf->timestamp.tv_sec = ts.tv_sec;
|
||||
vbuf->timestamp.tv_usec = ts.tv_nsec / NSEC_PER_USEC;
|
||||
|
||||
done:
|
||||
spin_unlock_irqrestore(&stream->clock.lock, flags);
|
||||
@@ -1032,10 +1032,10 @@ static int uvc_video_decode_start(struct uvc_streaming *stream,
|
||||
|
||||
uvc_video_get_ts(&ts);
|
||||
|
||||
buf->buf.v4l2_buf.field = V4L2_FIELD_NONE;
|
||||
buf->buf.v4l2_buf.sequence = stream->sequence;
|
||||
buf->buf.v4l2_buf.timestamp.tv_sec = ts.tv_sec;
|
||||
buf->buf.v4l2_buf.timestamp.tv_usec =
|
||||
buf->buf.field = V4L2_FIELD_NONE;
|
||||
buf->buf.sequence = stream->sequence;
|
||||
buf->buf.timestamp.tv_sec = ts.tv_sec;
|
||||
buf->buf.timestamp.tv_usec =
|
||||
ts.tv_nsec / NSEC_PER_USEC;
|
||||
|
||||
/* TODO: Handle PTS and SCR. */
|
||||
@@ -1308,7 +1308,7 @@ static void uvc_video_encode_bulk(struct urb *urb, struct uvc_streaming *stream,
|
||||
if (buf->bytesused == stream->queue.buf_used) {
|
||||
stream->queue.buf_used = 0;
|
||||
buf->state = UVC_BUF_STATE_READY;
|
||||
buf->buf.v4l2_buf.sequence = ++stream->sequence;
|
||||
buf->buf.sequence = ++stream->sequence;
|
||||
uvc_queue_next_buffer(&stream->queue, buf);
|
||||
stream->last_fid ^= UVC_STREAM_FID;
|
||||
}
|
||||
|
Reference in New Issue
Block a user