/kernel/linux/linux-6.6/drivers/media/platform/renesas/vsp1/ |
H A D | vsp1_drv.c | 160 &vsp1->hgo->histo.video.entity, 0, in vsp1_uapi_create_links() 170 &vsp1->hgt->histo.video.entity, 0, in vsp1_uapi_create_links() 192 ret = media_create_pad_link(&rpf->video->video.entity, 0, in vsp1_uapi_create_links() 203 * Connect the video device to the WPF. All connections are in vsp1_uapi_create_links() 210 &wpf->video->video.entity, 0, in vsp1_uapi_create_links() 223 struct vsp1_video *video, *_video; in vsp1_destroy_entities() local 230 list_for_each_entry_safe(video, _video, &vsp1->videos, list) { in vsp1_destroy_entities() 231 list_del(&video in vsp1_destroy_entities() 386 struct vsp1_video *video = vsp1_video_create(vsp1, rpf); vsp1_create_entities() local 446 struct vsp1_video *video = vsp1_video_create(vsp1, wpf); vsp1_create_entities() local [all...] |
H A D | vsp1_video.h | 36 struct video_device video; member 51 return container_of(vdev, struct vsp1_video, video); in to_vsp1_video() 59 void vsp1_video_cleanup(struct vsp1_video *video);
|
/kernel/linux/linux-6.6/drivers/usb/gadget/function/ |
H A D | uvc_queue.c | 46 struct uvc_video *video = container_of(queue, struct uvc_video, queue); in uvc_queue_setup() local 55 sizes[0] = video->imagesize; in uvc_queue_setup() 57 req_size = video->ep->maxpacket in uvc_queue_setup() 58 * max_t(unsigned int, video->ep->maxburst, 1) in uvc_queue_setup() 59 * (video->ep->mult); in uvc_queue_setup() 66 video->uvc_num_requests = nreq; in uvc_queue_setup() 136 struct uvc_video *video = container_of(queue, struct uvc_video, queue); in uvcg_queue_init() local 137 struct usb_composite_dev *cdev = video->uvc->func.config->cdev; in uvcg_queue_init() 169 * Free the video buffers. 177 * Allocate the video buffer [all...] |
H A D | f_uvc.c | 20 #include <linux/usb/video.h> 285 return uvc->video.ep->enabled ? 1 : 0; in uvc_function_get_alt() 340 if (uvc->video.ep) in uvc_function_set_alt() 341 usb_ep_disable(uvc->video.ep); in uvc_function_set_alt() 354 if (!uvc->video.ep) in uvc_function_set_alt() 358 usb_ep_disable(uvc->video.ep); in uvc_function_set_alt() 361 &(uvc->func), uvc->video.ep); in uvc_function_set_alt() 364 usb_ep_enable(uvc->video.ep); in uvc_function_set_alt() 390 usb_ep_disable(uvc->video.ep); in uvc_function_disable() 445 uvc->vdev.lock = &uvc->video in uvc_register_video() 980 struct uvc_video *video = &uvc->video; uvc_function_unbind() local [all...] |
/kernel/linux/linux-5.10/drivers/media/platform/vsp1/ |
H A D | vsp1_video.h | 36 struct video_device video; member 51 return container_of(vdev, struct vsp1_video, video); in to_vsp1_video() 59 void vsp1_video_cleanup(struct vsp1_video *video);
|
/third_party/ffmpeg/libavformat/ |
H A D | segafilmenc.c | 141 av_log(format_context, AV_LOG_ERROR, "Sega FILM allows a maximum of one video stream.\n"); in film_init() 147 "Incompatible video stream format.\n"); in film_init() 160 av_log(format_context, AV_LOG_ERROR, "No video stream present.\n"); in film_init() 188 AVStream *video = NULL; in film_write_header() local 219 video = format_context->streams[film->video_index]; in film_write_header() 221 /* The only two supported codecs; raw video is rare */ in film_write_header() 222 switch (video->codecpar->codec_id) { in film_write_header() 231 bytestream_put_be32(&ptr, video->codecpar->height); in film_write_header() 232 bytestream_put_be32(&ptr, video->codecpar->width); in film_write_header() 264 bytestream_put_be32(&ptr, av_q2d(av_inv_q(video in film_write_header() [all...] |
/kernel/linux/linux-5.10/drivers/usb/gadget/function/ |
H A D | f_uvc.c | 20 #include <linux/usb/video.h> 272 return uvc->video.ep->enabled ? 1 : 0; in uvc_function_get_alt() 324 if (uvc->video.ep) in uvc_function_set_alt() 325 usb_ep_disable(uvc->video.ep); in uvc_function_set_alt() 338 if (!uvc->video.ep) in uvc_function_set_alt() 342 usb_ep_disable(uvc->video.ep); in uvc_function_set_alt() 345 &(uvc->func), uvc->video.ep); in uvc_function_set_alt() 348 usb_ep_enable(uvc->video.ep); in uvc_function_set_alt() 374 usb_ep_disable(uvc->video.ep); in uvc_function_disable() 426 uvc->vdev.lock = &uvc->video in uvc_register_video() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | omx.c | 471 in_port_params.format.video.pNativeRender = NULL; in omx_component_init() 472 in_port_params.format.video.bFlagErrorConcealment = OMX_FALSE; in omx_component_init() 473 in_port_params.format.video.eColorFormat = s->color_format; in omx_component_init() 478 in_port_params.format.video.nStride = s->stride; in omx_component_init() 479 in_port_params.format.video.nSliceHeight = s->plane_size; in omx_component_init() 480 in_port_params.format.video.nFrameWidth = avctx->width; in omx_component_init() 481 in_port_params.format.video.nFrameHeight = avctx->height; in omx_component_init() 483 in_port_params.format.video.xFramerate = (1LL << 16) * avctx->framerate.num / avctx->framerate.den; in omx_component_init() 485 in_port_params.format.video.xFramerate = (1LL << 16) * avctx->time_base.den / avctx->time_base.num; in omx_component_init() 491 s->stride = in_port_params.format.video in omx_component_init() [all...] |
/kernel/linux/linux-5.10/arch/x86/realmode/rm/ |
H A D | Makefile | 20 wakeup-objs := wakeup_asm.o wakemain.o video-mode.o 22 # The link order of the video-*.o modules can matter. In particular, 23 # video-vga.o *must* be listed first, followed by video-vesa.o. 25 # probed, and video-bios.o should typically be last. 26 wakeup-objs += video-vga.o 27 wakeup-objs += video-vesa.o 28 wakeup-objs += video-bios.o
|
/kernel/linux/linux-5.10/drivers/media/pci/ivtv/ |
H A D | ivtv-routing.c | 3 Audio/video-routing-related ivtv functions. 48 /* Selects the video input and output according to the current 56 v4l2_subdev_call(itv->sd_video, video, s_routing, in ivtv_video_set_io() 70 ivtv_call_hw(itv, IVTV_HW_GPIO, video, s_routing, in ivtv_video_set_io() 84 ivtv_call_hw(itv, IVTV_HW_UPD64031A, video, s_routing, in ivtv_video_set_io() 104 ivtv_call_hw(itv, IVTV_HW_UPD6408X, video, s_routing, in ivtv_video_set_io()
|
/kernel/linux/linux-6.6/drivers/media/pci/ivtv/ |
H A D | ivtv-routing.c | 3 Audio/video-routing-related ivtv functions. 48 /* Selects the video input and output according to the current 56 v4l2_subdev_call(itv->sd_video, video, s_routing, in ivtv_video_set_io() 70 ivtv_call_hw(itv, IVTV_HW_GPIO, video, s_routing, in ivtv_video_set_io() 84 ivtv_call_hw(itv, IVTV_HW_UPD64031A, video, s_routing, in ivtv_video_set_io() 104 ivtv_call_hw(itv, IVTV_HW_UPD6408X, video, s_routing, in ivtv_video_set_io()
|
/kernel/linux/linux-6.6/arch/x86/realmode/rm/ |
H A D | Makefile | 21 wakeup-objs := wakeup_asm.o wakemain.o video-mode.o 23 # The link order of the video-*.o modules can matter. In particular, 24 # video-vga.o *must* be listed first, followed by video-vesa.o. 26 # probed, and video-bios.o should typically be last. 27 wakeup-objs += video-vga.o 28 wakeup-objs += video-vesa.o 29 wakeup-objs += video-bios.o
|
/kernel/linux/linux-5.10/drivers/staging/media/tegra-video/ |
H A D | vi.c | 30 #include "video.h" 127 v4l2_err(chan->video.v4l2_dev, in tegra_channel_buffer_prepare() 203 ret = v4l2_subdev_call(csi_subdev, video, s_stream, true); in tegra_channel_enable_stream() 221 ret = v4l2_subdev_call(src_subdev, video, s_stream, true); in tegra_channel_enable_stream() 234 v4l2_subdev_call(csi_subdev, video, s_stream, false); in tegra_channel_enable_stream() 248 ret = v4l2_subdev_call(subdev, video, s_stream, false); in tegra_channel_disable_stream() 256 ret = v4l2_subdev_call(subdev, video, s_stream, false); in tegra_channel_disable_stream() 340 strscpy(cap->driver, "tegra-video", sizeof(cap->driver)); in tegra_channel_querycap() 341 strscpy(cap->card, chan->video.name, sizeof(cap->card)); in tegra_channel_querycap() 355 return v4l2_g_parm_cap(&chan->video, subde in tegra_channel_g_parm() [all...] |
/third_party/ffmpeg/tests/fate/ |
H A D | video.mak | 59 FATE_BINK_VIDEO += fate-bink-video-b 60 fate-bink-video-b: CMD = framecrc -i $(TARGET_SAMPLES)/bink/RISE.BIK -frames 30 62 FATE_BINK_VIDEO += fate-bink-video-f 63 fate-bink-video-f: CMD = framecrc -i $(TARGET_SAMPLES)/bink/hol2br.bik 65 FATE_BINK_VIDEO += fate-bink-video-i 66 fate-bink-video-i: CMD = framecrc -i $(TARGET_SAMPLES)/bink/RazOnBull.bik -an 70 FATE_VIDEO-$(call FRAMECRC, BMV, BMV_VIDEO, SCALE_FILTER) += fate-bmv-video 71 fate-bmv-video: CMD = framecrc -i $(TARGET_SAMPLES)/bmv/SURFING-partial.BMV -pix_fmt rgb24 -an -vf scale 121 FATE_VIDEO-$(call FRAMECRC, DSICIN, DSICINVIDEO, SCALE_FILTER) += fate-delphine-cin-video 122 fate-delphine-cin-video [all...] |
/kernel/linux/linux-5.10/drivers/media/pci/saa7146/ |
H A D | mxb.c | 78 which has to be switched corresponding to the video source (mxb_channels) */ 348 /* select video mode in saa7111a */ in mxb_init_done() 349 saa7111a_call(mxb, video, s_std, std); in mxb_init_done() 353 saa7111a_call(mxb, video, s_routing, SAA7115_COMPOSITE0, in mxb_init_done() 367 /* set a default video standard */ in mxb_init_done() 371 saa7111a_call(mxb, video, s_std, std); in mxb_init_done() 372 tuner_call(mxb, video, s_std, std); in mxb_init_done() 375 tea6415c_call(mxb, video, s_routing, 3, 17, 0); in mxb_init_done() 378 tea6415c_call(mxb, video, s_routing, 3, 13, 0); in mxb_init_done() 491 err = tea6415c_call(mxb, video, s_routin in vidioc_s_input() [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/rockchip/ |
H A D | cdn-dp-reg.c | 578 DRM_DEV_ERROR(dp->dev, "set video status failed: %d\n", ret); in cdn_dp_set_video_status() 583 static int cdn_dp_get_msa_misc(struct video_info *video, in cdn_dp_get_msa_misc() argument 589 switch (video->color_fmt) { in cdn_dp_get_msa_misc() 606 switch (video->color_depth) { in cdn_dp_get_msa_misc() 625 ((video->color_fmt == Y_ONLY) ? (1 << 14) : 0); in cdn_dp_get_msa_misc() 632 struct video_info *video = &dp->video_info; in cdn_dp_config_video() local 639 bit_per_pix = (video->color_fmt == YCBCR_4_2_2) ? in cdn_dp_config_video() 640 (video->color_depth * 2) : (video->color_depth * 3); in cdn_dp_config_video() 687 switch (video in cdn_dp_config_video() [all...] |
/kernel/linux/linux-6.6/drivers/media/pci/saa7146/ |
H A D | mxb.c | 79 which has to be switched corresponding to the video source (mxb_channels) */ 349 /* select video mode in saa7111a */ in mxb_init_done() 350 saa7111a_call(mxb, video, s_std, std); in mxb_init_done() 353 saa7111a_call(mxb, video, s_routing, SAA7115_COMPOSITE0, in mxb_init_done() 367 /* set a default video standard */ in mxb_init_done() 371 saa7111a_call(mxb, video, s_std, std); in mxb_init_done() 372 tuner_call(mxb, video, s_std, std); in mxb_init_done() 375 tea6415c_call(mxb, video, s_routing, 3, 17, 0); in mxb_init_done() 378 tea6415c_call(mxb, video, s_routing, 3, 13, 0); in mxb_init_done() 491 err = tea6415c_call(mxb, video, s_routin in vidioc_s_input() [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/rockchip/ |
H A D | cdn-dp-reg.c | 578 DRM_DEV_ERROR(dp->dev, "set video status failed: %d\n", ret); in cdn_dp_set_video_status() 583 static int cdn_dp_get_msa_misc(struct video_info *video, in cdn_dp_get_msa_misc() argument 589 switch (video->color_fmt) { in cdn_dp_get_msa_misc() 606 switch (video->color_depth) { in cdn_dp_get_msa_misc() 625 ((video->color_fmt == Y_ONLY) ? (1 << 14) : 0); in cdn_dp_get_msa_misc() 632 struct video_info *video = &dp->video_info; in cdn_dp_config_video() local 639 bit_per_pix = (video->color_fmt == YCBCR_4_2_2) ? in cdn_dp_config_video() 640 (video->color_depth * 2) : (video->color_depth * 3); in cdn_dp_config_video() 687 switch (video in cdn_dp_config_video() [all...] |
/kernel/linux/linux-5.10/drivers/video/fbdev/ |
H A D | pm2fb.c | 41 #include <video/permedia2.h> 42 #include <video/cvisionppc.h> 91 u32 video; /* video flags before blanking */ member 114 * Default video mode. In case the modedb doesn't work. 514 static void set_video(struct pm2fb_par *p, u32 video) in set_video() argument 517 u32 vsync = video; in set_video() 519 DPRINTK("video = 0x%x\n", video); in set_video() 536 if ((video in set_video() 698 u32 video = 0; pm2fb_set_par() local 1005 u32 video = par->video; pm2fb_blank() local [all...] |
H A D | pm3fb.c | 2 * linux/drivers/video/pm3fb.c -- 3DLabs Permedia3 frame buffer device 13 * Based on linux/drivers/video/skeletonfb.c: 15 * Based on linux/driver/video/pm2fb.c: 36 #include <video/pm3fb.h> 62 * you place this in a header file in linux/include/video. This file usually 69 u32 video; /* video flags before blanking */ member 808 unsigned int video = par->video; in pm3fb_write_mode() local 810 video in pm3fb_write_mode() 1156 u32 video = par->video; pm3fb_blank() local [all...] |
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/ |
H A D | atomisp_v4l2.c | 450 int atomisp_video_init(struct atomisp_video_pipe *video, const char *name, in atomisp_video_init() argument 456 switch (video->type) { in atomisp_video_init() 459 video->pad.flags = MEDIA_PAD_FL_SINK; in atomisp_video_init() 460 video->vdev.fops = &atomisp_fops; in atomisp_video_init() 461 video->vdev.ioctl_ops = &atomisp_ioctl_ops; in atomisp_video_init() 465 video->pad.flags = MEDIA_PAD_FL_SOURCE; in atomisp_video_init() 466 video->vdev.fops = &atomisp_file_fops; in atomisp_video_init() 467 video->vdev.ioctl_ops = &atomisp_file_ioctl_ops; in atomisp_video_init() 473 ret = media_entity_pads_init(&video->vdev.entity, 1, &video in atomisp_video_init() 487 atomisp_acc_init(struct atomisp_acc_pipe *video, const char *name) atomisp_acc_init() argument 499 atomisp_video_unregister(struct atomisp_video_pipe *video) atomisp_video_unregister() argument 507 atomisp_acc_unregister(struct atomisp_acc_pipe *video) atomisp_acc_unregister() argument [all...] |
/kernel/linux/linux-6.6/drivers/video/fbdev/ |
H A D | pm2fb.c | 42 #include <video/permedia2.h> 43 #include <video/cvisionppc.h> 92 u32 video; /* video flags before blanking */ member 115 * Default video mode. In case the modedb doesn't work. 516 static void set_video(struct pm2fb_par *p, u32 video) in set_video() argument 519 u32 vsync = video; in set_video() 521 DPRINTK("video = 0x%x\n", video); in set_video() 538 if ((video in set_video() 700 u32 video = 0; pm2fb_set_par() local 1007 u32 video = par->video; pm2fb_blank() local [all...] |
H A D | pm3fb.c | 2 * linux/drivers/video/pm3fb.c -- 3DLabs Permedia3 frame buffer device 13 * Based on linux/drivers/video/skeletonfb.c: 15 * Based on linux/driver/video/pm2fb.c: 37 #include <video/pm3fb.h> 63 * you place this in a header file in linux/include/video. This file usually 70 u32 video; /* video flags before blanking */ member 809 unsigned int video = par->video; in pm3fb_write_mode() local 811 video in pm3fb_write_mode() 1157 u32 video = par->video; pm3fb_blank() local [all...] |
/third_party/mesa3d/src/gallium/frontends/omx/bellagio/ |
H A D | vid_enc.c | 199 port->sPortParam.format.video.nFrameWidth = 176; in vid_enc_Constructor() 200 port->sPortParam.format.video.nFrameHeight = 144; in vid_enc_Constructor() 201 port->sPortParam.format.video.eColorFormat = OMX_COLOR_FormatYUV420SemiPlanar; in vid_enc_Constructor() 212 strcpy(port->sPortParam.format.video.cMIMEType,"video/H264"); in vid_enc_Constructor() 213 port->sPortParam.format.video.nFrameWidth = 176; in vid_enc_Constructor() 214 port->sPortParam.format.video.nFrameHeight = 144; in vid_enc_Constructor() 215 port->sPortParam.format.video.eCompressionFormat = OMX_VIDEO_CodingAVC; in vid_enc_Constructor() 303 buf_templ.width0 = port->sPortParam.format.video.nFrameWidth; in enc_AllocateBackTexture() 304 buf_templ.height0 = port->sPortParam.format.video in enc_AllocateBackTexture() [all...] |
/kernel/linux/linux-5.10/arch/x86/boot/ |
H A D | Makefile | 37 setup-y += pm.o pmjump.o printf.o regs.o string.o tty.o video.o 38 setup-y += video-mode.o version.o 41 # The link order of the video-*.o modules can matter. In particular, 42 # video-vga.o *must* be listed first, followed by video-vesa.o. 44 # probed, and video-bios.o should typically be last. 45 setup-y += video-vga.o 46 setup-y += video-vesa.o 47 setup-y += video-bios.o
|