[media] s5p-fimc: Remove single-planar capability flags
The driver supports only multi-planar API and conversion to single-planar API should be done in libv4l2. Remove misleading single planar capability flags to avoid problems in applications and libv4l2. Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
566afaace5
commit
8f401543ec
2 changed files with 1 additions and 3 deletions
|
@ -618,8 +618,7 @@ static int fimc_vidioc_querycap_capture(struct file *file, void *priv,
|
||||||
strncpy(cap->driver, fimc->pdev->name, sizeof(cap->driver) - 1);
|
strncpy(cap->driver, fimc->pdev->name, sizeof(cap->driver) - 1);
|
||||||
strncpy(cap->card, fimc->pdev->name, sizeof(cap->card) - 1);
|
strncpy(cap->card, fimc->pdev->name, sizeof(cap->card) - 1);
|
||||||
cap->bus_info[0] = 0;
|
cap->bus_info[0] = 0;
|
||||||
cap->capabilities = V4L2_CAP_STREAMING | V4L2_CAP_VIDEO_CAPTURE |
|
cap->capabilities = V4L2_CAP_STREAMING | V4L2_CAP_VIDEO_CAPTURE_MPLANE;
|
||||||
V4L2_CAP_VIDEO_CAPTURE_MPLANE;
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -864,7 +864,6 @@ static int fimc_m2m_querycap(struct file *file, void *fh,
|
||||||
strncpy(cap->card, fimc->pdev->name, sizeof(cap->card) - 1);
|
strncpy(cap->card, fimc->pdev->name, sizeof(cap->card) - 1);
|
||||||
cap->bus_info[0] = 0;
|
cap->bus_info[0] = 0;
|
||||||
cap->capabilities = V4L2_CAP_STREAMING |
|
cap->capabilities = V4L2_CAP_STREAMING |
|
||||||
V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_VIDEO_OUTPUT |
|
|
||||||
V4L2_CAP_VIDEO_CAPTURE_MPLANE | V4L2_CAP_VIDEO_OUTPUT_MPLANE;
|
V4L2_CAP_VIDEO_CAPTURE_MPLANE | V4L2_CAP_VIDEO_OUTPUT_MPLANE;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in a new issue