From 6fdf35fe35d8c1c467708238100648a7a47c930d Mon Sep 17 00:00:00 2001 From: Olivier Langlois Date: Tue, 6 May 2014 17:16:49 -0400 Subject: lavc: Use av_gettime_relative MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Whenever av_gettime() is used to measure relative period of time, av_gettime_relative() is prefered as it guarantee monotonic time on supported platforms. Signed-off-by: Martin Storsjö --- libavcodec/fft-test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/fft-test.c') diff --git a/libavcodec/fft-test.c b/libavcodec/fft-test.c index f62cf0d2bc..b7c83cf800 100644 --- a/libavcodec/fft-test.c +++ b/libavcodec/fft-test.c @@ -439,7 +439,7 @@ int main(int argc, char **argv) /* we measure during about 1 seconds */ nb_its = 1; for (;;) { - time_start = av_gettime(); + time_start = av_gettime_relative(); for (it = 0; it < nb_its; it++) { switch (transform) { case TRANSFORM_MDCT: @@ -464,7 +464,7 @@ int main(int argc, char **argv) #endif /* FFT_FLOAT */ } } - duration = av_gettime() - time_start; + duration = av_gettime_relative() - time_start; if (duration >= 1000000) break; nb_its *= 2; -- cgit v1.2.3