diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2015-10-07 23:23:45 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2015-10-07 23:23:45 +0100 |
commit | 2be5416e4a04a16f4b7b0e8565aaa2c5836046af (patch) | |
tree | 289601be533fb9e4f957f1202214c38c0e343193 /gst/rtpmanager/gstrtpbin.c | |
parent | f321bfeaf4058202cf5ab923ebbf01cab5304eab (diff) |
rtpbin: Add missing break
Diffstat (limited to 'gst/rtpmanager/gstrtpbin.c')
-rw-r--r-- | gst/rtpmanager/gstrtpbin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gst/rtpmanager/gstrtpbin.c b/gst/rtpmanager/gstrtpbin.c index e966aefc1..bc7ec6de4 100644 --- a/gst/rtpmanager/gstrtpbin.c +++ b/gst/rtpmanager/gstrtpbin.c @@ -2640,6 +2640,7 @@ gst_rtp_bin_get_property (GObject * object, guint prop_id, GST_RTP_BIN_LOCK (rtpbin); g_value_set_int (value, rtpbin->max_rtcp_rtp_time_diff); GST_RTP_BIN_UNLOCK (rtpbin); + break; case PROP_MAX_DROPOUT_TIME: g_value_set_uint (value, rtpbin->max_dropout_time); break; |