From c6fd617aea137c69b985a237c1e4111c15dd0680 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 12 Mar 2007 21:33:38 +0000 Subject: very slightly smaller object file Originally committed as revision 8358 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/sha1.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libavutil/sha1.c b/libavutil/sha1.c index 4314055c1b..05f7426155 100644 --- a/libavutil/sha1.c +++ b/libavutil/sha1.c @@ -95,9 +95,8 @@ void av_sha1_final(AVSHA1* context, uint8_t digest[20]){ av_sha1_update(context, "\0", 1); } av_sha1_update(context, &finalcount, 8); /* Should cause a transform() */ - for (i = 0; i < 20; i++) { - digest[i] = context->state[i>>2] >> ((3-(i & 3)) * 8) ; - } + for(i=0; i<5; i++) + ((uint32_t*)digest)[i]= be2me_32(context->state[i]); } // use the following to test -- cgit v1.2.3