multiqueue: Fix set/get property
authorEdward Hervey <edward@centricular.com>
Wed, 2 Dec 2015 15:28:23 +0000 (16:28 +0100)
committerEdward Hervey <bilboed@bilboed.com>
Wed, 2 Dec 2015 15:28:58 +0000 (16:28 +0100)
Blame it on the rebasing :)

plugins/elements/gstmultiqueue.c

index d98bd6d..8d1f961 100644 (file)
@@ -651,6 +651,7 @@ gst_multi_queue_set_property (GObject * object, guint prop_id,
       break;
     case PROP_USE_INTERLEAVE:
       mq->use_interleave = g_value_get_boolean (value);
+      break;
     case PROP_UNLINKED_CACHE_TIME:
       GST_MULTI_QUEUE_MUTEX_LOCK (mq);
       mq->unlinked_cache_time = g_value_get_uint64 (value);
@@ -704,6 +705,7 @@ gst_multi_queue_get_property (GObject * object, guint prop_id,
       break;
     case PROP_USE_INTERLEAVE:
       g_value_set_boolean (value, mq->use_interleave);
+      break;
     case PROP_UNLINKED_CACHE_TIME:
       g_value_set_uint64 (value, mq->unlinked_cache_time);
       break;