diff options
Diffstat (limited to 'gst/speexresample/gstspeexresample.c')
-rw-r--r-- | gst/speexresample/gstspeexresample.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/speexresample/gstspeexresample.c b/gst/speexresample/gstspeexresample.c index f2fa4859..84057e64 100644 --- a/gst/speexresample/gstspeexresample.c +++ b/gst/speexresample/gstspeexresample.c @@ -864,7 +864,7 @@ gst_speex_resample_check_discont (GstSpeexResample * resample, if (ABS (diff) > (GST_SECOND + resample->inrate - 1) / resample->inrate) { GST_WARNING_OBJECT (resample, "encountered timestamp discontinuity of %s%" GST_TIME_FORMAT, - (diff < 0) ? "-" : "", ABS (diff)); + (diff < 0) ? "-" : "", GST_TIME_ARGS ((GstClockTime) ABS (diff))); return TRUE; } } |