Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Langlois <olivier@trillion01.com>2014-05-07 01:16:49 +0400
committerMartin Storsjö <martin@martin.st>2014-10-24 10:53:42 +0400
commit6fdf35fe35d8c1c467708238100648a7a47c930d (patch)
treef1d0796748588ce66b97db9142b4be92a15bf0ff /libavcodec/fft-test.c
parent1bd0bdcdc236099d5c0d179696951f35f5310fa5 (diff)
lavc: Use av_gettime_relative
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ö <martin@martin.st>
Diffstat (limited to 'libavcodec/fft-test.c')
-rw-r--r--libavcodec/fft-test.c4
1 files changed, 2 insertions, 2 deletions
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;