Commit 75255175 authored by Michael Niedermayer's avatar Michael Niedermayer

libavutil/random_seed: Ensure that get_generic_seed() spends at least 1/32 sec gathering entropy

This may fix the failures on windows
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 5dbce512
......@@ -68,6 +68,7 @@ static uint32_t get_generic_seed(void)
struct AVSHA *sha = (void*)tmp;
clock_t last_t = 0;
clock_t last_td = 0;
clock_t init_t = 0;
static uint64_t i = 0;
static uint32_t buffer[512] = { 0 };
unsigned char digest[20];
......@@ -93,10 +94,13 @@ static uint32_t get_generic_seed(void)
} else {
last_td = t - last_t;
buffer[++i & 511] += last_td % 3294638521U;
if (last_i && i - last_i > 4 || i - last_i > 64 || TEST && i - last_i > 8)
break;
if ((t - init_t) >= CLOCKS_PER_SEC>>5)
if (last_i && i - last_i > 4 || i - last_i > 64 || TEST && i - last_i > 8)
break;
}
last_t = t;
if (!init_t)
init_t = t;
}
if(TEST) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment