matroskamux: Fix audio-only stream conditions
authorSebastian Dröge <sebastian@centricular.com>
Tue, 31 Dec 2024 09:42:04 +0000 (11:42 +0200)
committerSebastian Dröge <sebastian@centricular.com>
Mon, 6 Jan 2025 15:28:36 +0000 (17:28 +0200)
The num_a_streams and related counters are used for pad numbers and don't give
the absolute number of streams in this run of the muxer.

Also, consider the output audio-only if there are more than 1 audio stream too.

Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/4142

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8246>

subprojects/gst-plugins-good/gst/matroska/matroska-mux.c

index 8f1435983b8bc7ead317d259eb2412680112959d..e66a6becb2df5206c44f6ce2ef4edef9c4313905 100644 (file)
@@ -3142,6 +3142,21 @@ gst_matroska_mux_write_chapter_edition (GstMatroskaMux * mux,
   return internal_edition;
 }
 
+static gboolean
+gst_matroska_pads_is_audio_only (GstMatroskaMux * mux)
+{
+  for (GSList * collected = mux->collect->data; collected;
+      collected = g_slist_next (collected)) {
+    GstMatroskaPad *collect_pad = (GstMatroskaPad *) collected->data;
+
+    if (collect_pad->track->type != GST_MATROSKA_TRACK_TYPE_AUDIO) {
+      return FALSE;
+    }
+  }
+
+  return TRUE;
+}
+
 /**
  * gst_matroska_mux_start:
  * @mux: #GstMatroskaMux
@@ -3203,7 +3218,7 @@ gst_matroska_mux_start (GstMatroskaMux * mux, GstMatroskaPad * first_pad,
   gst_pad_push_event (mux->srcpad, gst_event_new_stream_start (s_id));
 
   /* output caps */
-  audio_only = mux->num_v_streams == 0 && mux->num_a_streams > 0;
+  audio_only = gst_matroska_pads_is_audio_only (mux);
   if (mux->is_webm) {
     media_type = (audio_only) ? "audio/webm" : "video/webm";
   } else {
@@ -4094,8 +4109,8 @@ gst_matroska_mux_write_data (GstMatroskaMux * mux, GstMatroskaPad * collect_pad,
    * related arithmetic, so apply the timestamp offset if we have one */
   buffer_timestamp += mux->cluster_timestamp_offset;
 
-  is_audio_only = (collect_pad->track->type == GST_MATROSKA_TRACK_TYPE_AUDIO) &&
-      (mux->num_streams == 1);
+  is_audio_only = gst_matroska_pads_is_audio_only (mux);
+
   is_min_duration_reached = (mux->min_cluster_duration == 0
       || (buffer_timestamp > mux->cluster_time
           && (buffer_timestamp - mux->cluster_time) >=