mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-04-10 03:06:26 +00:00
kill warnings
Originally committed as revision 5585 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
fb9cc9e7aa
commit
4dddc5e10c
@ -62,15 +62,15 @@ static const uint32_t T[64] = {
|
|||||||
a += T[i];\
|
a += T[i];\
|
||||||
\
|
\
|
||||||
switch(i>>4){\
|
switch(i>>4){\
|
||||||
case 0: a += (d ^ b&(c^d)) + X[ i &15 ]; break;\
|
case 0: a += (d ^ (b&(c^d))) + X[ i &15 ]; break;\
|
||||||
case 1: a += (c ^ d&(c^b)) + X[ (1+5*i)&15 ]; break;\
|
case 1: a += (c ^ (d&(c^b))) + X[ (1+5*i)&15 ]; break;\
|
||||||
case 2: a += (b^c^d) + X[ (5+3*i)&15 ]; break;\
|
case 2: a += (b^c^d) + X[ (5+3*i)&15 ]; break;\
|
||||||
case 3: a += (c^(b|~d)) + X[ ( 7*i)&15 ]; break;\
|
case 3: a += (c^(b|~d)) + X[ ( 7*i)&15 ]; break;\
|
||||||
}\
|
}\
|
||||||
a = b + (( a << t ) | ( a >> (32 - t) ));
|
a = b + (( a << t ) | ( a >> (32 - t) ));
|
||||||
|
|
||||||
static void body(uint32_t ABCD[4], const uint32_t X[16]){
|
static void body(uint32_t ABCD[4], const uint32_t X[16]){
|
||||||
int i, t;
|
int t;
|
||||||
unsigned int a= ABCD[3];
|
unsigned int a= ABCD[3];
|
||||||
unsigned int b= ABCD[2];
|
unsigned int b= ABCD[2];
|
||||||
unsigned int c= ABCD[1];
|
unsigned int c= ABCD[1];
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#ifndef MD5_H
|
#ifndef MD5_H
|
||||||
#define MD5_H
|
#define MD5_H
|
||||||
|
|
||||||
extern const av_md5_size;
|
extern const int av_md5_size;
|
||||||
|
|
||||||
struct AVMD5;
|
struct AVMD5;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user