aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-12-24 14:26:41 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2017-02-03 15:59:14 +0100
commita0b7a3c8aaa8fa355b899ebe6b55d5f709abc9b2 (patch)
tree04506005436bb25998f0db5ab0cbeda805f915df
parentc4b36ccd0291e221dd9cd793187fd11c8d1a6e57 (diff)
downloadffmpeg-a0b7a3c8aaa8fa355b899ebe6b55d5f709abc9b2.tar.gz
avutil/random_seed: Reduce the time needed on systems with very low precission clock()
This should fix issues on BSD CLOCKS_PER_SEC is 128 on BSD while SUSv2 requires it to be a million Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit c4152fc42e480c41efb7f761b1bbe5f0bc43d5bc) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavutil/random_seed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/random_seed.c b/libavutil/random_seed.c
index 48c6325df1..69bf43466c 100644
--- a/libavutil/random_seed.c
+++ b/libavutil/random_seed.c
@@ -87,7 +87,7 @@ static uint32_t get_generic_seed(void)
for (;;) {
clock_t t = clock();
- if (last_t + 2*last_td + 1 >= t) {
+ if (last_t + 2*last_td + (CLOCKS_PER_SEC > 1000) >= t) {
last_td = t - last_t;
buffer[i & 511] = 1664525*buffer[i & 511] + 1013904223 + (last_td % 3294638521U);
} else {