gl: add missing break
authorLuis de Bethencourt <luis@debethencourt.com>
Mon, 29 Jun 2015 15:10:39 +0000 (16:10 +0100)
committerLuis de Bethencourt <luis@debethencourt.com>
Mon, 29 Jun 2015 15:10:50 +0000 (16:10 +0100)
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

ext/gl/gstglviewconvert.c

index 6dcad7d..5a3c9fe 100644 (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;