Skip to content
Snippets Groups Projects
Commit a8d88e03 authored by Luca Barbato's avatar Luca Barbato
Browse files

big endian fix

Originally committed as revision 5592 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e4bf0302
No related merge requests found
......@@ -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];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment