mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-30 13:41:48 +00:00
v4l2: fix typo in _acquire_format() error messages
Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=778815
This commit is contained in:
parent
0f719af307
commit
b460f18f17
1 changed files with 2 additions and 2 deletions
|
@ -3736,14 +3736,14 @@ invalid_dimensions:
|
||||||
unsupported_field:
|
unsupported_field:
|
||||||
{
|
{
|
||||||
GST_ELEMENT_ERROR (v4l2object->element, RESOURCE, SETTINGS,
|
GST_ELEMENT_ERROR (v4l2object->element, RESOURCE, SETTINGS,
|
||||||
(_("Video devices uses an unsupported interlacing method.")),
|
(_("Video device uses an unsupported interlacing method.")),
|
||||||
("V4L2 field type %d not supported", fmt.fmt.pix.field));
|
("V4L2 field type %d not supported", fmt.fmt.pix.field));
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
unsupported_format:
|
unsupported_format:
|
||||||
{
|
{
|
||||||
GST_ELEMENT_ERROR (v4l2object->element, RESOURCE, SETTINGS,
|
GST_ELEMENT_ERROR (v4l2object->element, RESOURCE, SETTINGS,
|
||||||
(_("Video devices uses an unsupported pixel format.")),
|
(_("Video device uses an unsupported pixel format.")),
|
||||||
("V4L2 format %" GST_FOURCC_FORMAT " not supported",
|
("V4L2 format %" GST_FOURCC_FORMAT " not supported",
|
||||||
GST_FOURCC_ARGS (fmt.fmt.pix.pixelformat)));
|
GST_FOURCC_ARGS (fmt.fmt.pix.pixelformat)));
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
Loading…
Reference in a new issue