diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-03-14 19:43:31 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-03-14 19:43:31 +0000 |
commit | f1505ce3bc9d8635f764e75a3f6ac8c51f0b248b (patch) | |
tree | 562a16528473760c70f5a8c7a6ae2530762b01b1 /libavutil/md5.c | |
parent | 33a0dd378abd98647700a296e5869146de74ed1c (diff) | |
download | ffmpeg-f1505ce3bc9d8635f764e75a3f6ac8c51f0b248b.tar.gz |
explain where the T table comes from
Originally committed as revision 8406 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/md5.c')
-rw-r--r-- | libavutil/md5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/md5.c b/libavutil/md5.c index 7c078bb016..cacae65f45 100644 --- a/libavutil/md5.c +++ b/libavutil/md5.c @@ -49,7 +49,7 @@ static const uint8_t S[4][4] = { { 6, 10, 15, 21 } /* Round 4 */ }; -static const uint32_t T[64] = { +static const uint32_t T[64] = { // T[i]= fabs(sin(i+1)<<32) 0xd76aa478, 0xe8c7b756, 0x242070db, 0xc1bdceee, /* Round 1 */ 0xf57c0faf, 0x4787c62a, 0xa8304613, 0xfd469501, 0x698098d8, 0x8b44f7af, 0xffff5bb1, 0x895cd7be, |