mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 04:22:27 +00:00
v4l2: Fix typo contol -> control
https://bugzilla.gnome.org/show_bug.cgi?id=725632
This commit is contained in:
parent
d3bd3ecc3e
commit
4f47442c7f
1 changed files with 2 additions and 2 deletions
|
@ -1026,7 +1026,7 @@ ctrl_failed:
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
set_contol (GQuark field_id, const GValue * value, gpointer user_data)
|
set_control (GQuark field_id, const GValue * value, gpointer user_data)
|
||||||
{
|
{
|
||||||
GstV4l2Object *v4l2object = user_data;
|
GstV4l2Object *v4l2object = user_data;
|
||||||
GQuark normalised_field_id;
|
GQuark normalised_field_id;
|
||||||
|
@ -1070,7 +1070,7 @@ set_contol (GQuark field_id, const GValue * value, gpointer user_data)
|
||||||
gboolean
|
gboolean
|
||||||
gst_v4l2_set_controls (GstV4l2Object * v4l2object, GstStructure * controls)
|
gst_v4l2_set_controls (GstV4l2Object * v4l2object, GstStructure * controls)
|
||||||
{
|
{
|
||||||
return gst_structure_foreach (controls, set_contol, v4l2object);
|
return gst_structure_foreach (controls, set_control, v4l2object);
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
|
|
Loading…
Reference in a new issue