projects
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9be24c6
)
Change i to unsigned in get_generic_seed().
author
Michael Niedermayer
<michaelni@gmx.at>
Thu, 8 Jul 2010 17:49:39 +0000
(17:49 +0000)
committer
Michael Niedermayer
<michaelni@gmx.at>
Thu, 8 Jul 2010 17:49:39 +0000
(17:49 +0000)
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
libavutil/random_seed.c
patch
|
blob
|
blame
|
history
diff --git
a/libavutil/random_seed.c
b/libavutil/random_seed.c
index
f8e7f83
..
762e02e
100644
(file)
--- a/
libavutil/random_seed.c
+++ b/
libavutil/random_seed.c
@@
-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<10000
U
&& s<24){
+ if(i<10000 && s<24){
s++;
i=t=0;
}else{