gst/matroska/matroska-mux.c: Replace
authorJulien Moutte <julien@moutte.net>
Sun, 20 Nov 2005 17:04:55 +0000 (17:04 +0000)
committerJulien Moutte <julien@moutte.net>
Sun, 20 Nov 2005 17:04:55 +0000 (17:04 +0000)
Original commit message from CVS:
2005-11-20  Julien MOUTTE  <julien@moutte.net>

* gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Replace
GST_PAD_IS_USABLE by something approaching it.

ChangeLog
gst/matroska/matroska-mux.c

index ebfa870..79b9f07 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2005-11-20  Julien MOUTTE  <julien@moutte.net>
 
+       * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Replace
+       GST_PAD_IS_USABLE by something approaching it.
+
+2005-11-20  Julien MOUTTE  <julien@moutte.net>
+
        * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Fix for
        API changes.
        * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix for API changes,
index bba6ee2..8586c9f 100644 (file)
@@ -1087,7 +1087,8 @@ gst_matroska_mux_start (GstMatroskaMux * mux)
     collect_pad = (GstMatroskaPad *) collected->data;
     thepad = collect_pad->collect.pad;
 
-    if (collect_pad->track->codec_id != 0) {
+    if (gst_pad_is_linked (thepad) && gst_pad_is_active (thepad) &&
+        collect_pad->track->codec_id != 0) {
       collect_pad->track->num = tracknum++;
       child = gst_ebml_write_master_start (ebml, GST_MATROSKA_ID_TRACKENTRY);
       gst_matroska_mux_track_header (mux, collect_pad->track);