mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
v4l2object: always set the GstV4l2Error on error
Some of the error case were conditional to using try_fmt or not. This is slightly unexpected, always set the error so the caller can decide. https://bugzilla.gnome.org/show_bug.cgi?id=785156
This commit is contained in:
parent
059ccf9749
commit
7d3b2628df
1 changed files with 16 additions and 22 deletions
|
@ -3596,36 +3596,30 @@ set_fmt_failed:
|
|||
}
|
||||
invalid_dimensions:
|
||||
{
|
||||
if (!try_only) {
|
||||
GST_V4L2_ERROR (error, RESOURCE, SETTINGS,
|
||||
(_("Device '%s' cannot capture at %dx%d"),
|
||||
v4l2object->videodev, width, height),
|
||||
("Tried to capture at %dx%d, but device returned size %dx%d",
|
||||
width, height, format.fmt.pix.width, format.fmt.pix.height));
|
||||
}
|
||||
GST_V4L2_ERROR (error, RESOURCE, SETTINGS,
|
||||
(_("Device '%s' cannot capture at %dx%d"),
|
||||
v4l2object->videodev, width, height),
|
||||
("Tried to capture at %dx%d, but device returned size %dx%d",
|
||||
width, height, format.fmt.pix.width, format.fmt.pix.height));
|
||||
return FALSE;
|
||||
}
|
||||
invalid_pixelformat:
|
||||
{
|
||||
if (!try_only) {
|
||||
GST_V4L2_ERROR (error, RESOURCE, SETTINGS,
|
||||
(_("Device '%s' cannot capture in the specified format"),
|
||||
v4l2object->videodev),
|
||||
("Tried to capture in %" GST_FOURCC_FORMAT
|
||||
", but device returned format" " %" GST_FOURCC_FORMAT,
|
||||
GST_FOURCC_ARGS (pixelformat),
|
||||
GST_FOURCC_ARGS (format.fmt.pix.pixelformat)));
|
||||
}
|
||||
GST_V4L2_ERROR (error, RESOURCE, SETTINGS,
|
||||
(_("Device '%s' cannot capture in the specified format"),
|
||||
v4l2object->videodev),
|
||||
("Tried to capture in %" GST_FOURCC_FORMAT
|
||||
", but device returned format" " %" GST_FOURCC_FORMAT,
|
||||
GST_FOURCC_ARGS (pixelformat),
|
||||
GST_FOURCC_ARGS (format.fmt.pix.pixelformat)));
|
||||
return FALSE;
|
||||
}
|
||||
invalid_planes:
|
||||
{
|
||||
if (!try_only) {
|
||||
GST_V4L2_ERROR (error, RESOURCE, SETTINGS,
|
||||
(_("Device '%s' does support non-contiguous planes"),
|
||||
v4l2object->videodev),
|
||||
("Device wants %d planes", format.fmt.pix_mp.num_planes));
|
||||
}
|
||||
GST_V4L2_ERROR (error, RESOURCE, SETTINGS,
|
||||
(_("Device '%s' does support non-contiguous planes"),
|
||||
v4l2object->videodev),
|
||||
("Device wants %d planes", format.fmt.pix_mp.num_planes));
|
||||
return FALSE;
|
||||
}
|
||||
invalid_field:
|
||||
|
|
Loading…
Reference in a new issue