splitmuxsink: Increment fragment_id even if no fragment location was provided
authorSebastian Dröge <sebastian@centricular.com>
Thu, 12 Dec 2019 16:53:00 +0000 (18:53 +0200)
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Fri, 13 Dec 2019 22:59:55 +0000 (22:59 +0000)
Applications might handle locations and generally configuration of the
sink by themselves instead of having splitmuxsink set the location on
the sink. Nonetheless it makes sense to increment the fragment_id that
is passed to the signal so that applications know which fragment is
requested.

gst/multifile/gstsplitmuxsink.c

index c2f581a..373b671 100644 (file)
@@ -3175,9 +3175,9 @@ set_next_filename (GstSplitMuxSink * splitmux, MqStreamCtx * ctx)
             "location") != NULL)
       g_object_set (splitmux->sink, "location", fname, NULL);
     g_free (fname);
-
-    splitmux->fragment_id++;
   }
+
+  splitmux->fragment_id++;
 }
 
 /* called with GST_SPLITMUX_LOCK */