diff --git a/ext/dash/gstdashdemux.c b/ext/dash/gstdashdemux.c index f20ce104e7..ad80a573aa 100644 --- a/ext/dash/gstdashdemux.c +++ b/ext/dash/gstdashdemux.c @@ -864,7 +864,8 @@ gst_dash_demux_src_query (GstPad * pad, GstObject * parent, GstQuery * query) gst_query_parse_seeking (query, &fmt, NULL, &start, &end); GST_DEBUG_OBJECT (dashdemux, - "Received GST_QUERY_SEEKING with format %d - %i %i", fmt, start, end); + "Received GST_QUERY_SEEKING with format %d - %" G_GINT64_FORMAT + " %" G_GINT64_FORMAT, fmt, start, end); if (fmt == GST_FORMAT_TIME) { GstClockTime duration; @@ -1643,7 +1644,8 @@ gst_dash_demux_select_representations (GstDashDemux * demux) bitrate = gst_download_rate_get_current_rate (&stream->dnl_rate) * demux->bandwidth_usage; - GST_DEBUG_OBJECT (demux, "Trying to change to bitrate: %llu", bitrate); + GST_DEBUG_OBJECT (demux, "Trying to change to bitrate: %" G_GUINT64_FORMAT, + bitrate); /* get representation index with current max_bandwidth */ new_index = diff --git a/ext/dash/gstmpdparser.c b/ext/dash/gstmpdparser.c index 2fab85380f..74738116e4 100644 --- a/ext/dash/gstmpdparser.c +++ b/ext/dash/gstmpdparser.c @@ -2822,7 +2822,8 @@ gst_mpd_client_setup_representation (GstMpdClient * client, guint j, timescale; S = (GstSNode *) list->data; - GST_LOG ("Processing S node: d=%llu r=%d t=%llu", S->d, S->r, S->t); + GST_LOG ("Processing S node: d=%" G_GUINT64_FORMAT " r=%d t=%" + G_GUINT64_FORMAT, S->d, S->r, S->t); duration = S->d * GST_SECOND; timescale = stream->cur_segment_list->MultSegBaseType->SegBaseType->timescale; @@ -2895,7 +2896,8 @@ gst_mpd_client_setup_representation (GstMpdClient * client, guint j, timescale; S = (GstSNode *) list->data; - GST_LOG ("Processing S node: d=%llu r=%u t=%llu", S->d, S->r, S->t); + GST_LOG ("Processing S node: d=%" G_GUINT64_FORMAT " r=%u t=%" + G_GUINT64_FORMAT, S->d, S->r, S->t); duration = S->d * GST_SECOND; timescale = stream->cur_seg_template->MultSegBaseType->SegBaseType->timescale;