linux/drivers/media/pci/saa7134
Junghak Sung 2d7007153f [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>
2015-10-01 09:04:43 -03:00
..
Kconfig [media] saa7134: Fix compilation breakage when go7007 is not selected 2014-09-23 16:13:47 -03:00
Makefile [media] saa7134: Fix compilation breakage when go7007 is not selected 2014-09-23 16:13:47 -03:00
saa7134-alsa.c [media] saa7134: fix CodingStyle issues on the lines touched by pr_foo refactor 2015-05-13 14:16:43 -03:00
saa7134-cards.c [media] saa7134: add Leadtek Winfast TV2100 FM card support 2015-09-25 17:19:17 -03:00
saa7134-core.c [media] media: videobuf2: Restructure vb2_buffer 2015-10-01 09:04:43 -03:00
saa7134-dvb.c [media] dvb: Get rid of typedev usage for enums 2015-06-09 17:47:35 -03:00
saa7134-empress.c [media] saa7134: fix CodingStyle issues on the lines touched by pr_foo refactor 2015-05-13 14:16:43 -03:00
saa7134-go7007.c [media] saa7134: fix page size on some archs 2015-06-24 08:38:28 -03:00
saa7134-i2c.c [media] saa7134: fix CodingStyle issues on the lines touched by pr_foo refactor 2015-05-13 14:16:43 -03:00
saa7134-input.c [media] saa7134: add Leadtek Winfast TV2100 FM card support 2015-09-25 17:19:17 -03:00
saa7134-reg.h [media] saa7134: add vidioc_querystd 2014-05-23 12:56:01 -03:00
saa7134-ts.c [media] media: videobuf2: Restructure vb2_buffer 2015-10-01 09:04:43 -03:00
saa7134-tvaudio.c [media] saa7134: fix CodingStyle issues on the lines touched by pr_foo refactor 2015-05-13 14:16:43 -03:00
saa7134-vbi.c [media] media: videobuf2: Restructure vb2_buffer 2015-10-01 09:04:43 -03:00
saa7134-video.c [media] media: videobuf2: Restructure vb2_buffer 2015-10-01 09:04:43 -03:00
saa7134.h [media] media: videobuf2: Restructure vb2_buffer 2015-10-01 09:04:43 -03:00