mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
very slightly smaller object file
Originally committed as revision 8358 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
11bf0eb69a
commit
c6fd617aea
@ -95,9 +95,8 @@ void av_sha1_final(AVSHA1* context, uint8_t digest[20]){
|
|||||||
av_sha1_update(context, "\0", 1);
|
av_sha1_update(context, "\0", 1);
|
||||||
}
|
}
|
||||||
av_sha1_update(context, &finalcount, 8); /* Should cause a transform() */
|
av_sha1_update(context, &finalcount, 8); /* Should cause a transform() */
|
||||||
for (i = 0; i < 20; i++) {
|
for(i=0; i<5; i++)
|
||||||
digest[i] = context->state[i>>2] >> ((3-(i & 3)) * 8) ;
|
((uint32_t*)digest)[i]= be2me_32(context->state[i]);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// use the following to test
|
// use the following to test
|
||||||
|
Loading…
Reference in New Issue
Block a user