mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
v4l2object: Don't set empty interlace-mode list
If for some reason we fail to probe formats (all try_fmt calls fail, for example), this is not a critical error, but we end up with an empty list of interlace modes. This causes all subsequent negotiation to fail. This patch fixes interlace-mode setting to be skipped if we failed to detect any. https://bugzilla.gnome.org/show_bug.cgi?id=775702
This commit is contained in:
parent
c3cdae4d6e
commit
1ea9735afb
1 changed files with 6 additions and 1 deletions
|
@ -2172,7 +2172,12 @@ gst_v4l2_object_add_interlace_mode (GstV4l2Object * v4l2object,
|
|||
}
|
||||
|
||||
gst_v4l2src_value_simplify (&interlace_formats);
|
||||
gst_structure_take_value (s, "interlace-mode", &interlace_formats);
|
||||
|
||||
if (gst_value_list_get_size (&interlace_formats) > 0)
|
||||
gst_structure_take_value (s, "interlace-mode", &interlace_formats);
|
||||
else
|
||||
GST_WARNING_OBJECT (v4l2object, "Failed to determine interlace mode");
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue