diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-26 11:15:47 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-26 11:15:47 +0000 |
commit | 811bfa76ce88720c7160f5075dc84a246ff2481e (patch) | |
tree | 488c0592cfe2ac15b33d8e80e83f39231c67b74b | |
parent | a6cef9651d033d2f5d7d775c54f148c710b558bb (diff) | |
download | ffmpeg-811bfa76ce88720c7160f5075dc84a246ff2481e.tar.gz |
Remove misleading comment about how to build SHA1 test program.
Generating the test program is integrated into the build system already.
Originally committed as revision 16804 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/sha1.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavutil/sha1.c b/libavutil/sha1.c index 72c2726e3b..9eb02c9264 100644 --- a/libavutil/sha1.c +++ b/libavutil/sha1.c @@ -145,8 +145,6 @@ void av_sha1_final(AVSHA1* ctx, uint8_t digest[20]){ ((uint32_t*)digest)[i]= be2me_32(ctx->state[i]); } -// use the following to test -// gcc -DTEST -DHAVE_AV_CONFIG_H -I.. sha1.c -O2 -W -Wall -o sha1 && time ./sha1 #ifdef TEST #include <stdio.h> #undef printf |