Mercurial > libavutil.hg
changeset 41:e2d207b1cb8e libavutil
improve selftest
author | michael |
---|---|
date | Mon, 29 May 2006 19:44:17 +0000 |
parents | b6f5cb968a88 |
children | 00f34c83c69b |
files | mathematics.c |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/mathematics.c Wed May 17 23:40:32 2006 +0000 +++ b/mathematics.c Mon May 29 19:44:17 2006 +0000 @@ -109,13 +109,14 @@ return av_rescale_rnd(a, b, c, AV_ROUND_NEAR_INF); } #if 0 +#include "integer.h" #undef printf main(){ int64_t a,b,c,d,e; - for(a=7; a<(1LL<<60); a=(a*3)+1){ - for(b=3; b<(1LL<<60); b=(b*5)/4+1){ - for(c=9; c<(1LL<<60); c=(c*7)/5+3){ + for(a=7; a<(1LL<<62); a+=a/3+1){ + for(b=3; b<(1LL<<62); b+=b/4+1){ + for(c=9; c<(1LL<<62); c+=(c*2)/5+3){ int64_t r= c/2; AVInteger ai; ai= av_mul_i(av_int2i(a), av_int2i(b));