[FFmpeg-cvslog] des: reduce number of iterations in test program

Mans Rullgard git at videolan.org
Mon Jul 4 00:53:46 CEST 2011


ffmpeg | branch: master | Mans Rullgard <mans at mansr.com> | Sun Jul  3 12:55:54 2011 +0100| [66fe5970abdad0964d0e0d0e100b62e715922886] | committer: Mans Rullgard

des: reduce number of iterations in test program

Testing a million random keys takes annoying long time.
1000 iterations should be enough.

Signed-off-by: Mans Rullgard <mans at mansr.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=66fe5970abdad0964d0e0d0e100b62e715922886
---

 libavutil/des.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavutil/des.c b/libavutil/des.c
index a30ef3b..857ca91 100644
--- a/libavutil/des.c
+++ b/libavutil/des.c
@@ -402,7 +402,7 @@ int main(void) {
         printf("Partial Monte-Carlo test failed\n");
         return 1;
     }
-    for (i = 0; i < 1000000; i++) {
+    for (i = 0; i < 1000; i++) {
         key[0] = rand64(); key[1] = rand64(); key[2] = rand64();
         data = rand64();
         av_des_init(&d, key, 192, 0);



More information about the ffmpeg-cvslog mailing list