From a8d88e03d24696a56bed6a2d143ff1691d8fcc69 Mon Sep 17 00:00:00 2001
From: Luca Barbato <lu_zero@gentoo.org>
Date: Mon, 3 Jul 2006 09:16:13 +0000
Subject: [PATCH] big endian fix

Originally committed as revision 5592 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavutil/md5.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/libavutil/md5.c b/libavutil/md5.c
index 844bcb0e803..82a2cffc220 100644
--- a/libavutil/md5.c
+++ b/libavutil/md5.c
@@ -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];
-- 
GitLab