mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
Change i to unsigned in get_generic_seed().
This is clearer than comparing against an unsigned number to force an unsigned comparison that we need. Originally committed as revision 24114 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
9be24c60d3
commit
b65c1ccfe1
@ -43,13 +43,13 @@ static uint32_t get_generic_seed(void)
|
||||
int last_t=0;
|
||||
int bits=0;
|
||||
uint64_t random=0;
|
||||
int i;
|
||||
unsigned i;
|
||||
int s=0;
|
||||
|
||||
for(i=0;bits<64;i++){
|
||||
int t= clock()>>s;
|
||||
if(last_t && t != last_t){
|
||||
if(i<10000U && s<24){
|
||||
if(i<10000 && s<24){
|
||||
s++;
|
||||
i=t=0;
|
||||
}else{
|
||||
|
Loading…
Reference in New Issue
Block a user