opus: Fix incorrect fall-through condition in property getter
authorArun Raghavan <arun@centricular.com>
Fri, 3 Apr 2015 06:16:12 +0000 (11:46 +0530)
committerArun Raghavan <git@arunraghavan.net>
Fri, 3 Apr 2015 06:17:09 +0000 (11:47 +0530)
ext/opus/gstopusenc.c

index f75175c..0d6612b 100644 (file)
@@ -1019,7 +1019,7 @@ gst_opus_enc_get_property (GObject * object, guint prop_id, GValue * value,
           ("constrained-vbr property is deprecated; use bitrate-type instead");
       g_value_set_boolean (value,
           enc->bitrate_type == BITRATE_TYPE_CONSTRAINED_VBR);
-      /* fall through */
+      break;
     case PROP_BITRATE_TYPE:
       g_value_set_enum (value, enc->bitrate_type);
       break;