qtmux: Don't deref NULL pads in debug output

That tends to crash.
This commit is contained in:
Sebastian Dröge 2016-11-02 14:33:28 +02:00
parent 324cc4dc4a
commit 09c4cc55f2

View file

@ -3591,8 +3591,12 @@ find_best_pad (GstQTMux * qtmux, GstCollectPads * pads)
gst_buffer_unref (tmp_buf);
}
GST_DEBUG_OBJECT (qtmux, "Choosing pad %s:%s",
GST_DEBUG_PAD_NAME (best_pad->collect.pad));
if (best_pad) {
GST_DEBUG_OBJECT (qtmux, "Choosing pad %s:%s",
GST_DEBUG_PAD_NAME (best_pad->collect.pad));
} else {
GST_DEBUG_OBJECT (qtmux, "No best pad: EOS");
}
}
return best_pad;