diff options
-rw-r--r-- | gst/isomp4/gstqtmux.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gst/isomp4/gstqtmux.c b/gst/isomp4/gstqtmux.c index ae78c8073..b1b4ad98e 100644 --- a/gst/isomp4/gstqtmux.c +++ b/gst/isomp4/gstqtmux.c @@ -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; |