summaryrefslogtreecommitdiffstats
path: root/ext/flac
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2008-08-09 08:58:26 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2008-08-09 08:58:26 +0000
commit530c36d9e7177463a00d74cb840f415eaa0f1fab (patch)
treef3c75b0c3b104a1e43a87f14e63e60e1134a5b60 /ext/flac
parentba69194f332856cc53a870ee381a806b0fd65ff5 (diff)
ext/flac/gstflacenc.c: Actually provide the variables required for the format string.
Original commit message from CVS: * ext/flac/gstflacenc.c: (gst_flac_enc_check_discont): Actually provide the variables required for the format string.
Diffstat (limited to 'ext/flac')
-rw-r--r--ext/flac/gstflacenc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/flac/gstflacenc.c b/ext/flac/gstflacenc.c
index 4440fcca..4974fb84 100644
--- a/ext/flac/gstflacenc.c
+++ b/ext/flac/gstflacenc.c
@@ -1125,7 +1125,8 @@ gst_flac_enc_check_discont (GstFlacEnc * flacenc, GstClockTime expected,
GST_ELEMENT_WARNING (flacenc, STREAM, FORMAT, (NULL),
("Stream discontinuity detected (wanted %" GST_TIME_FORMAT " got %"
GST_TIME_FORMAT "). The output will have wrong timestamps,"
- " consider using audiorate to handle discontinuities"));
+ " consider using audiorate to handle discontinuities",
+ GST_TIME_ARGS (expected), GST_TIME_ARGS (timestamp)));
return TRUE;
}