Home
last modified time | relevance | path

Searched refs:multiplanar (Results 1 – 15 of 15) sorted by relevance

/openbmc/linux/drivers/media/test-drivers/vivid/
H A Dvivid-touch-cap.c133 if (dev->multiplanar) in vivid_g_fmt_tch()
144 if (!dev->multiplanar) in vivid_g_fmt_tch_mplane()
157 if (parm->type != (dev->multiplanar ? in vivid_g_parm_tch()
H A Dvivid-core.c109 static unsigned multiplanar[VIVID_MAX_DEVS] = { [0 ... (VIVID_MAX_DEVS - 1)] = 1 }; variable
110 module_param_array(multiplanar, uint, NULL, 0444);
111 MODULE_PARM_DESC(multiplanar, " 1 (default) creates a single planar device, 2 creates a multiplanar…
867 if (buf_type == V4L2_BUF_TYPE_VIDEO_CAPTURE && dev->multiplanar) in vivid_create_queue()
869 else if (buf_type == V4L2_BUF_TYPE_VIDEO_OUTPUT && dev->multiplanar) in vivid_create_queue()
909 dev->multiplanar = multiplanar[inst] > 1; in vivid_detect_feature_set()
911 dev->multiplanar ? "multi" : "single "); in vivid_detect_feature_set()
1078 dev->vid_cap_caps = dev->multiplanar ? in vivid_set_capabilities()
1089 dev->vid_out_caps = dev->multiplanar ? in vivid_set_capabilities()
1151 dev->touch_cap_caps |= dev->multiplanar ? in vivid_set_capabilities()
[all …]
H A Dvivid-vid-out.c582 if (!dev->multiplanar) in vidioc_g_fmt_vid_out_mplane()
592 if (!dev->multiplanar) in vidioc_try_fmt_vid_out_mplane()
602 if (!dev->multiplanar) in vidioc_s_fmt_vid_out_mplane()
612 if (dev->multiplanar) in vidioc_g_fmt_vid_out()
622 if (dev->multiplanar) in vidioc_try_fmt_vid_out()
632 if (dev->multiplanar) in vidioc_s_fmt_vid_out()
1110 if (parm->type != (dev->multiplanar ? in vivid_vid_out_g_parm()
H A Dvivid-vid-cap.c807 if (!dev->multiplanar) in vidioc_g_fmt_vid_cap_mplane()
817 if (!dev->multiplanar) in vidioc_try_fmt_vid_cap_mplane()
827 if (!dev->multiplanar) in vidioc_s_fmt_vid_cap_mplane()
837 if (dev->multiplanar) in vidioc_g_fmt_vid_cap()
847 if (dev->multiplanar) in vidioc_try_fmt_vid_cap()
857 if (dev->multiplanar) in vidioc_s_fmt_vid_cap()
1686 if (parm->type != (dev->multiplanar ? in vivid_vid_cap_g_parm()
1705 if (parm->type != (dev->multiplanar ? in vivid_vid_cap_s_parm()
H A Dvivid-vid-common.c765 if (fmt->buffers == 1 || dev->multiplanar) in vivid_get_format()
932 (dev->multiplanar ? 0 : VIVID_MPLANAR_FORMATS)) in vivid_enum_fmt_vid()
H A Dvivid-core.h178 bool multiplanar; member
/openbmc/linux/drivers/media/test-drivers/vicodec/
H A Dvicodec-core.c32 static bool multiplanar; variable
33 module_param(multiplanar, bool, 0444);
34 MODULE_PARM_DESC(multiplanar,
710 if (V4L2_TYPE_IS_MULTIPLANAR(f->type) && !multiplanar) in enum_fmt()
712 if (!V4L2_TYPE_IS_MULTIPLANAR(f->type) && multiplanar) in enum_fmt()
777 if (multiplanar) in vidioc_g_fmt()
795 if (!multiplanar) in vidioc_g_fmt()
899 if (multiplanar) in vidioc_try_fmt_vid_cap()
910 if (!multiplanar) in vidioc_try_fmt_vid_cap()
936 if (multiplanar) in vidioc_try_fmt_vid_out()
[all …]
/openbmc/linux/Documentation/userspace-api/media/v4l/
H A Dvidioc-g-crop.rst93 Unfortunately in the case of multiplanar buffer types
97 other drivers only accepted a non-multiplanar buffer type (i.e. without the
H A Dvidioc-cropcap.rst87 Unfortunately in the case of multiplanar buffer types
91 other drivers only accepted a non-multiplanar buffer type (i.e. without the
H A Dvidioc-g-selection.rst160 Unfortunately in the case of multiplanar buffer types
164 other drivers only accepted a non-multiplanar buffer type (i.e. without the
H A Ddmabuf.rst62 :ref:`VIDIOC_QBUF <VIDIOC_QBUF>` ioctl. In case of multiplanar
H A Dbuffer.rst190 when it refers to an output stream. For multiplanar formats this field
/openbmc/linux/drivers/staging/vc04_services/bcm2835-camera/
H A DTODO16 through the V4L2 "multiplanar" formats, the firmware would have one
/openbmc/linux/Documentation/admin-guide/media/
H A Dvivid.rst34 - Supports all standard YUV and RGB formats, including two multiplanar YUV formats
259 - multiplanar:
1253 YUYV formats, 8, 16, 24 and 32 RGB packed formats and various multiplanar
1261 The driver has to be configured to support the multiplanar formats. By default
1263 multiplanar module option, see section 1 for more details on that option.
1265 If the driver instance is using the multiplanar formats/API, then the first
1266 single planar format (YUYV) and the multiplanar NV16M and NV61M formats the
1286 supported for multiplanar formats. It also honors the struct v4l2_window field
1358 Output overlays are not supported for multiplanar formats. In addition, the
/openbmc/openbmc/meta-raspberrypi/recipes-multimedia/rpidistro-ffmpeg/files/
H A D0001-ffmpeg-5.1.4-rpi_24.patch16592 + int ret, i, multiplanar;
16598 + multiplanar = V4L2_TYPE_IS_MULTIPLANAR(fmt->type);
16630 + if (multiplanar) {
16648 + buf->num_planes = multiplanar ? buf->buffer.length : 1;