videotestsrc: add missing break in set_property switch case

To avoid future issue when adding new properties.

https://bugzilla.gnome.org/show_bug.cgi?id=760204
This commit is contained in:
Aurélien Zanelli 2016-01-06 12:14:39 +01:00 committed by Sebastian Dröge
parent 17b16e7a83
commit 9b9f913809

View file

@ -563,6 +563,7 @@ gst_video_test_src_set_property (GObject * object, guint prop_id,
break;
case PROP_HORIZONTAL_SPEED:
src->horizontal_speed = g_value_get_int (value);
break;
default:
break;
}