| /OK3568_Linux_fs/kernel/drivers/usb/gadget/function/ |
| H A D | uvc_video.c | 3 * uvc_video.c -- USB Video Class Gadget driver 14 #include <linux/usb/video.h> 25 static bool uvc_using_zero_copy(struct uvc_video *video) in uvc_using_zero_copy() argument 27 struct uvc_device *uvc = container_of(video, struct uvc_device, video); in uvc_using_zero_copy() 30 if (opts && opts->uvc_zero_copy && video->fcc != V4L2_PIX_FMT_YUYV) in uvc_using_zero_copy() 36 static void uvc_wait_req_complete(struct uvc_video *video, struct uvc_request *ureq) in uvc_wait_req_complete() argument 42 spin_lock_irqsave(&video->req_lock, flags); in uvc_wait_req_complete() 44 list_for_each_entry(req, &video->req_free, list) { in uvc_wait_req_complete() 52 spin_unlock_irqrestore(&video->req_lock, flags); in uvc_wait_req_complete() 56 uvcg_warn(&video->uvc->func, in uvc_wait_req_complete() [all …]
|
| H A D | uvc_v4l2.c | 3 * uvc_v4l2.c -- USB Video Class Gadget driver 86 struct uvc_video *video = &uvc->video; in uvc_v4l2_get_format() local 88 fmt->fmt.pix.pixelformat = video->fcc; in uvc_v4l2_get_format() 89 fmt->fmt.pix.width = video->width; in uvc_v4l2_get_format() 90 fmt->fmt.pix.height = video->height; in uvc_v4l2_get_format() 92 fmt->fmt.pix.bytesperline = video->bpp * video->width / 8; in uvc_v4l2_get_format() 93 fmt->fmt.pix.sizeimage = video->imagesize; in uvc_v4l2_get_format() 105 struct uvc_video *video = &uvc->video; in uvc_v4l2_set_format() local 126 video->fcc = format->fcc; in uvc_v4l2_set_format() 127 video->bpp = format->bpp; in uvc_v4l2_set_format() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/platform/ |
| H A D | aspeed-video.c | 34 #define DEVICE_NAME "aspeed-video" 427 static void aspeed_video_update(struct aspeed_video *video, u32 reg, u32 clear, in aspeed_video_update() argument 430 u32 t = readl(video->base + reg); in aspeed_video_update() 435 writel(t, video->base + reg); in aspeed_video_update() 436 dev_dbg(video->dev, "update %03x[%08x -> %08x]\n", reg, before, in aspeed_video_update() 437 readl(video->base + reg)); in aspeed_video_update() 440 static u32 aspeed_video_read(struct aspeed_video *video, u32 reg) in aspeed_video_read() argument 442 u32 t = readl(video->base + reg); in aspeed_video_read() 444 dev_dbg(video->dev, "read %03x[%08x]\n", reg, t); in aspeed_video_read() 448 static void aspeed_video_write(struct aspeed_video *video, u32 reg, u32 val) in aspeed_video_write() argument [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/platform/omap3isp/ |
| H A D | ispvideo.c | 5 * TI OMAP3 ISP - Generic video node 129 * @video: ISP video instance 135 * per line value in the pix format and information from the video instance. 139 static unsigned int isp_video_mbus_to_pix(const struct isp_video *video, in isp_video_mbus_to_pix() argument 165 if (video->bpl_max) in isp_video_mbus_to_pix() 166 bpl = clamp(bpl, min_bpl, video->bpl_max); in isp_video_mbus_to_pix() 170 if (!video->bpl_zero_padding || bpl != min_bpl) in isp_video_mbus_to_pix() 171 bpl = ALIGN(bpl, video->bpl_alignment); in isp_video_mbus_to_pix() 205 isp_video_remote_subdev(struct isp_video *video, u32 *pad) in isp_video_remote_subdev() argument 209 remote = media_entity_remote_pad(&video->pad); in isp_video_remote_subdev() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/staging/media/omap4iss/ |
| H A D | iss_video.c | 3 * TI OMAP4 ISS V4L2 Driver - Generic video node 106 * @video: ISS video instance 112 * per line value in the pix format and information from the video instance. 116 static unsigned int iss_video_mbus_to_pix(const struct iss_video *video, in iss_video_mbus_to_pix() argument 144 if (video->bpl_max) in iss_video_mbus_to_pix() 145 bpl = clamp(bpl, min_bpl, video->bpl_max); in iss_video_mbus_to_pix() 149 if (!video->bpl_zero_padding || bpl != min_bpl) in iss_video_mbus_to_pix() 150 bpl = ALIGN(bpl, video->bpl_alignment); in iss_video_mbus_to_pix() 189 iss_video_remote_subdev(struct iss_video *video, u32 *pad) in iss_video_remote_subdev() argument 193 remote = media_entity_remote_pad(&video->pad); in iss_video_remote_subdev() [all …]
|
| /OK3568_Linux_fs/u-boot/drivers/video/drm/ |
| H A D | analogix_dp_reg.su | |
| H A D | rockchip_vop2.su | |
| H A D | dw_hdmi.su | |
| H A D | drm_mipi_dsi.su | |
| H A D | .built-in.o.cmd | |
| H A D | rockchip_display.su | |
| H A D | rockchip_rgb.su | |
| H A D | dw_mipi_dsi.su | |
| H A D | rockchip_connector.su | |
| /OK3568_Linux_fs/kernel/drivers/media/platform/sunxi/sun6i-csi/ |
| H A D | sun6i_video.c | 76 sun6i_video_remote_subdev(struct sun6i_video *video, u32 *pad) in sun6i_video_remote_subdev() argument 80 remote = media_entity_remote_pad(&video->pad); in sun6i_video_remote_subdev() 97 struct sun6i_video *video = vb2_get_drv_priv(vq); in sun6i_video_queue_setup() local 98 unsigned int size = video->fmt.fmt.pix.sizeimage; in sun6i_video_queue_setup() 114 struct sun6i_video *video = vb2_get_drv_priv(vb->vb2_queue); in sun6i_video_buffer_prepare() local 115 unsigned long size = video->fmt.fmt.pix.sizeimage; in sun6i_video_buffer_prepare() 118 v4l2_err(video->vdev.v4l2_dev, "buffer too small (%lu < %lu)\n", in sun6i_video_buffer_prepare() 127 vbuf->field = video->fmt.fmt.pix.field; in sun6i_video_buffer_prepare() 134 struct sun6i_video *video = vb2_get_drv_priv(vq); in sun6i_video_start_streaming() local 142 video->sequence = 0; in sun6i_video_start_streaming() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/platform/vsp1/ |
| H A D | vsp1_video.c | 3 * vsp1_video.c -- R-Car VSP1 Video Node 63 static int vsp1_video_verify_format(struct vsp1_video *video) in vsp1_video_verify_format() argument 69 subdev = vsp1_video_remote_subdev(&video->pad, &fmt.pad); in vsp1_video_verify_format() 78 if (video->rwpf->fmtinfo->mbus != fmt.format.code || in vsp1_video_verify_format() 79 video->rwpf->format.height != fmt.format.height || in vsp1_video_verify_format() 80 video->rwpf->format.width != fmt.format.width) in vsp1_video_verify_format() 86 static int __vsp1_video_try_format(struct vsp1_video *video, in __vsp1_video_try_format() argument 118 info = vsp1_get_format_info(video->vsp1, pix->pixelformat); in __vsp1_video_try_format() 120 info = vsp1_get_format_info(video->vsp1, VSP1_VIDEO_DEF_FORMAT); in __vsp1_video_try_format() 305 * @video: the video node [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/userspace-api/media/dvb/ |
| H A D | video_function_calls.rst | 6 Video Function Calls 12 video-fopen 13 video-fclose 14 video-fwrite 15 video-stop 16 video-play 17 video-freeze 18 video-continue 19 video-select-source 20 video-set-blank [all …]
|
| /OK3568_Linux_fs/app/qfm/ |
| H A D | mimeapps.list | 109 video/3gp=qplayer.desktop 110 video/3gpp=qplayer.desktop 111 video/3gpp2=qplayer.desktop 112 video/avi=qplayer.desktop 113 video/divx=qplayer.desktop 114 video/dv=qplayer.desktop 115 video/fli=qplayer.desktop 116 video/flv=qplayer.desktop 117 video/mp2t=qplayer.desktop 118 video/mp4=qplayer.desktop [all …]
|
| /OK3568_Linux_fs/kernel/drivers/acpi/ |
| H A D | acpi_video.c | 3 * video.c - ACPI Video Driver 26 #include <acpi/video.h> 31 #define ACPI_VIDEO_BUS_NAME "Video Bus" 32 #define ACPI_VIDEO_DEVICE_NAME "Video Device" 37 ACPI_MODULE_NAME("video"); 40 MODULE_DESCRIPTION("ACPI Video Driver"); 47 * By default, we don't allow duplicate ACPI video bus devices 107 .name = "video", 118 u8 multihead:1; /* can switch video heads */ 119 u8 rom:1; /* can retrieve a video rom */ [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-bsp/grub/files/ |
| H A D | video-Remove-trailing-whitespaces.patch | 4 Subject: [PATCH] video: Remove trailing whitespaces 16 grub-core/video/bochs.c | 2 +- 17 grub-core/video/capture.c | 2 +- 18 grub-core/video/cirrus.c | 4 ++-- 19 grub-core/video/coreboot/cbfb.c | 2 +- 20 grub-core/video/efi_gop.c | 22 +++++++++---------- 21 grub-core/video/fb/fbblit.c | 8 +++---- 22 grub-core/video/fb/video_fb.c | 10 ++++----- 23 grub-core/video/i386/pc/vbe.c | 34 ++++++++++++++--------------- 24 grub-core/video/i386/pc/vga.c | 6 ++--- [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/platform/qcom/camss/ |
| H A D | camss-video.c | 3 * camss-video.c 18 #include "camss-video.h" 275 static struct v4l2_subdev *video_remote_subdev(struct camss_video *video, in video_remote_subdev() argument 280 remote = media_entity_remote_pad(&video->pad); in video_remote_subdev() 291 static int video_get_subdev_format(struct camss_video *video, in video_get_subdev_format() argument 299 subdev = video_remote_subdev(video, &pad); in video_get_subdev_format() 312 video->formats, video->nformats); in video_get_subdev_format() 316 format->type = video->type; in video_get_subdev_format() 319 &video->formats[ret], video->bpl_alignment); in video_get_subdev_format() 323 * Video queue operations [all …]
|
| /OK3568_Linux_fs/u-boot/drivers/video/ |
| H A D | video-uclass.su | |
| /OK3568_Linux_fs/kernel/Documentation/userspace-api/media/mediactl/ |
| H A D | media-types.rst | 34 .. _MEDIA-ENT-F-PROC-VIDEO-COMPOSER: 35 .. _MEDIA-ENT-F-PROC-VIDEO-PIXEL-FORMATTER: 36 .. _MEDIA-ENT-F-PROC-VIDEO-PIXEL-ENC-CONV: 37 .. _MEDIA-ENT-F-PROC-VIDEO-LUT: 38 .. _MEDIA-ENT-F-PROC-VIDEO-SCALER: 39 .. _MEDIA-ENT-F-PROC-VIDEO-STATISTICS: 40 .. _MEDIA-ENT-F-PROC-VIDEO-ENCODER: 41 .. _MEDIA-ENT-F-PROC-VIDEO-DECODER: 88 - Connector for a S-Video signal. 94 - Camera video sensor entity. [all …]
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/libsdl/libsdl-1.2.15/ |
| H A D | CVE-2019-7637.patch | 36 diff -r 4646533663ae -r 9b0e5c555c0f src/video/SDL_pixels.c 37 --- a/src/video/SDL_pixels.c Sat Mar 16 18:35:33 2019 -0700 38 +++ b/src/video/SDL_pixels.c Sat Mar 16 19:16:24 2019 -0700 100 diff -r 4646533663ae -r 9b0e5c555c0f src/video/gapi/SDL_gapivideo.c 101 --- a/src/video/gapi/SDL_gapivideo.c Sat Mar 16 18:35:33 2019 -0700 102 +++ b/src/video/gapi/SDL_gapivideo.c Sat Mar 16 19:16:24 2019 -0700 104 video->w = gapi->w = width; 105 video->h = gapi->h = height; 106 video->pitch = SDL_CalculatePitch(video); 113 diff -r 4646533663ae -r 9b0e5c555c0f src/video/nanox/SDL_nxvideo.c [all …]
|
| /OK3568_Linux_fs/buildroot/package/gstreamer1/gst1-plugins-base/ |
| H A D | 0021-gst-libs-Support-NV16_10LE40.patch | 8 gst-libs/gst/video/video-converter.c | 3 + 9 gst-libs/gst/video/video-format.c | 161 +++++++++++++++++++++++++++ 10 gst-libs/gst/video/video-format.h | 6 +- 11 gst-libs/gst/video/video-info.c | 7 ++ 12 tests/check/libs/video.c | 1 + 15 diff --git a/gst-libs/gst/video/video-converter.c b/gst-libs/gst/video/video-converter.c 17 --- a/gst-libs/gst/video/video-converter.c 18 +++ b/gst-libs/gst/video/video-converter.c 36 diff --git a/gst-libs/gst/video/video-format.c b/gst-libs/gst/video/video-format.c 38 --- a/gst-libs/gst/video/video-format.c [all …]
|