2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-29 15:43:59 +08:00
linux-next/drivers/media/usb
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
..
airspy [media] media: videobuf2: Restructure vb2_buffer 2015-10-01 09:04:43 -03:00
as102 [media] as102: fix error return code 2015-05-01 07:00:51 -03:00
au0828 [media] media: videobuf2: Restructure vb2_buffer 2015-10-01 09:04:43 -03:00
b2c2 [media] drivers: media: usb: b2c2: use usb_*_coherent() instead of pci_*_consistent() in flexcop-usb.c 2013-10-17 11:26:41 -03:00
cpia2 [media] media: remove the setting of the flag V4L2_FL_USE_FH_PRIO 2014-07-04 16:14:59 -03:00
cx231xx [media] cx231xx: Use wake_up_interruptible() instead of wake_up_interruptible_nr() 2015-09-03 13:50:52 -03:00
dvb-usb [media] Technisat SkyStar USB HD,(DVB-S/S2) too much URBs for arm devices 2015-08-11 14:43:23 -03:00
dvb-usb-v2 [media] lmedm04: NEC scancode cleanup 2015-07-06 08:26:15 -03:00
em28xx [media] media: videobuf2: Restructure vb2_buffer 2015-10-01 09:04:43 -03:00
go7007 [media] media: videobuf2: Restructure vb2_buffer 2015-10-01 09:04:43 -03:00
gspca [media] use v4l2_get_timestamp where possible 2015-10-01 08:29:23 -03:00
hackrf [media] media: videobuf2: Restructure vb2_buffer 2015-10-01 09:04:43 -03:00
hdpvr [media] hdpvr: embed video_device 2015-04-02 23:36:54 -03:00
msi2500 [media] media: videobuf2: Restructure vb2_buffer 2015-10-01 09:04:43 -03:00
pvrusb2 [media] v4l2: replace s_mbus_fmt by set_fmt in bridge drivers 2015-05-01 09:01:16 -03:00
pwc [media] media: videobuf2: Restructure vb2_buffer 2015-10-01 09:04:43 -03:00
s2255 [media] media: videobuf2: Restructure vb2_buffer 2015-10-01 09:04:43 -03:00
siano [media] siano: avoid a linkedit error if !MC 2015-03-02 14:17:01 -03:00
stk1160 [media] media: videobuf2: Restructure vb2_buffer 2015-10-01 09:04:43 -03:00
stkwebcam [media] stk-webcam: Delete an unnecessary check before the function call "vfree" 2015-03-02 14:53:27 -03:00
tm6000 [media] cx25821, cx88, tm6000: use SNDRV_DEFAULT_ENABLE_PNP 2015-10-01 08:42:52 -03:00
ttusb-budget [media] dvb: Get rid of typedev usage for enums 2015-06-09 17:47:35 -03:00
ttusb-dec [media] ttusb-dec: use swap() in swap_bytes() 2015-07-17 09:02:48 -03:00
usbtv [media] media: videobuf2: Restructure vb2_buffer 2015-10-01 09:04:43 -03:00
usbvision [media] usbvision: move init code to probe() 2015-08-11 06:55:26 -03:00
uvc [media] media: videobuf2: Restructure vb2_buffer 2015-10-01 09:04:43 -03:00
zr364xx [media] usb drivers: use BUG_ON() instead of if () BUG 2015-06-09 18:30:09 -03:00
Kconfig [media] tlg2300: move to staging in preparation for removal 2014-12-16 23:21:43 -02:00
Makefile [media] tlg2300: move to staging in preparation for removal 2014-12-16 23:21:43 -02:00