Commit 9205252f authored by lu_zero's avatar lu_zero

big endian fix

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5592 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d352bb63
......@@ -69,7 +69,11 @@ static const uint32_t T[64] = {
}\
a = b + (( a << t ) | ( a >> (32 - t) ));
#ifdef WORDS_BIGENDIAN
static void body(uint32_t ABCD[4], uint32_t X[16]){
#else
static void body(uint32_t ABCD[4], const uint32_t X[16]){
#endif
int t;
int i attribute_unused;
unsigned int a= ABCD[3];
......
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