opus: Fix incorrect fall-through condition in property getter

This commit is contained in:
Arun Raghavan 2015-04-03 11:46:12 +05:30 committed by Arun Raghavan
parent 48880ea6c7
commit f092c9cb3d

View 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;