mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 04:56:24 +00:00
qtdemux: Avoid warning when reporting about decryptors
https://bugzilla.gnome.org/show_bug.cgi?id=796652
This commit is contained in:
parent
cac9aab107
commit
56669205eb
1 changed files with 3 additions and 1 deletions
|
@ -8113,7 +8113,9 @@ gst_qtdemux_request_protection_context (GstQTDemux * qtdemux,
|
||||||
qtdemux->protection_system_ids->len - 1);
|
qtdemux->protection_system_ids->len - 1);
|
||||||
GST_TRACE_OBJECT (qtdemux, "detected %u protection systems, we have "
|
GST_TRACE_OBJECT (qtdemux, "detected %u protection systems, we have "
|
||||||
"decryptors for %u of them, running context request",
|
"decryptors for %u of them, running context request",
|
||||||
qtdemux->protection_system_ids->len, g_strv_length (filtered_sys_ids));
|
qtdemux->protection_system_ids->len,
|
||||||
|
filtered_sys_ids ? g_strv_length (filtered_sys_ids) : 0);
|
||||||
|
|
||||||
|
|
||||||
if (stream->protection_scheme_event_queue.length) {
|
if (stream->protection_scheme_event_queue.length) {
|
||||||
GST_TRACE_OBJECT (qtdemux, "using stream event queue, length %u",
|
GST_TRACE_OBJECT (qtdemux, "using stream event queue, length %u",
|
||||||
|
|
Loading…
Reference in a new issue