v4l2: fix typo in _acquire_format() error messages

Fixes:

https://bugzilla.gnome.org/show_bug.cgi?id=778815
This commit is contained in:
Reynaldo H. Verdejo Pinochet 2017-02-17 15:50:32 -08:00
parent 0f719af307
commit b460f18f17

View file

@ -3736,14 +3736,14 @@ invalid_dimensions:
unsupported_field:
{
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));
return FALSE;
}
unsupported_format:
{
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",
GST_FOURCC_ARGS (fmt.fmt.pix.pixelformat)));
return FALSE;