summaryrefslogtreecommitdiffstats
path: root/gst/debug
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2004-08-31 14:12:49 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2004-08-31 14:12:49 +0000
commit436a489e65cc8cfcd94a255c586d6b2ffe975128 (patch)
tree1d2ad69492934b5c3b5c0b29724a7a389368415f /gst/debug
parent8947c41055fa9eb4b8ebb6193cdc14ed14bb22c6 (diff)
ext/alsa/: Re-commit ALSA switches.
Original commit message from CVS: * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list): * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new): Re-commit ALSA switches. * gst/adder/gstadder.c: (gst_adder_loop): 64-bit fix (#151416). * gst/debug/progressreport.c: (gst_progressreport_report): 64-bit fix (#151419). * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_contents): 64-bit fix (#151420). * gst/playback/test3.c: (update_scale): 64-bit fix (#151421).
Diffstat (limited to 'gst/debug')
-rw-r--r--gst/debug/progressreport.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gst/debug/progressreport.c b/gst/debug/progressreport.c
index 3f17b245..9d8a232c 100644
--- a/gst/debug/progressreport.c
+++ b/gst/debug/progressreport.c
@@ -200,12 +200,13 @@ gst_progressreport_report (GstProgressReport * progressreport,
}
if (got_total == TRUE) {
- g_print ("%s (%2d:%2d:%2d): %lld / %lld %s (%3.2g %%)\n",
+ g_print ("%s (%2d:%2d:%2d): %" G_GINT64_FORMAT " / %" G_GINT64_FORMAT
+ " %s (%3.2g %%)\n",
gst_object_get_name (GST_OBJECT (progressreport)), hh, mm, ss,
cur_progress, total_progress, format_name,
((gdouble) (cur_progress)) / total_progress * 100);
} else {
- g_print ("%s (%2d:%2d:%2d): %lld %s\n",
+ g_print ("%s (%2d:%2d:%2d): %" G_GINT64_FORMAT " %s\n",
gst_object_get_name (GST_OBJECT (progressreport)), hh, mm, ss,
cur_progress, format_name);
}