gl: add missing break

gst_gl_view_convert_element_set_property() is missing a break at the end
of the PROP_OUTPUT_DOWNMIX_MODE case. Adding it.

CID #1308949
This commit is contained in:
Luis de Bethencourt 2015-06-29 16:10:39 +01:00 committed by Tim-Philipp Müller
parent 0f3c34f05f
commit 237af0d21c

View file

@ -278,6 +278,7 @@ gst_gl_view_convert_element_set_property (GObject * object, guint prop_id,
case PROP_OUTPUT_DOWNMIX_MODE:
g_object_set_property (G_OBJECT (convert->viewconvert), pspec->name,
value);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;