mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-05-12 11:18:56 +00:00
videorate: remove unnecessary break statement
Trivial patch to remove unncessary break statement used after goto statement. https://bugzilla.gnome.org/show_bug.cgi?id=754054
This commit is contained in:
parent
8e5f7f27f5
commit
a1d84edd16
1 changed files with 0 additions and 2 deletions
|
@ -1319,7 +1319,6 @@ gst_video_rate_set_property (GObject * object,
|
|||
latency_changed = new_value != videorate->drop_only;
|
||||
videorate->drop_only = g_value_get_boolean (value);
|
||||
goto reconfigure;
|
||||
break;
|
||||
}
|
||||
case PROP_AVERAGE_PERIOD:
|
||||
videorate->average_period_set = g_value_get_uint64 (value);
|
||||
|
@ -1327,7 +1326,6 @@ gst_video_rate_set_property (GObject * object,
|
|||
case PROP_MAX_RATE:
|
||||
g_atomic_int_set (&videorate->max_rate, g_value_get_int (value));
|
||||
goto reconfigure;
|
||||
break;
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue