提交 a8d88e03 编写于 作者: L Luca Barbato

big endian fix

Originally committed as revision 5592 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 e4bf0302
......@@ -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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册