[Ffmpeg-cvslog] CVS: ffmpeg/libavutil Makefile, 1.18, 1.19 mathematics.c, 1.3, 1.4
Michael Niedermayer CVS
michael
Sun Apr 23 12:28:56 CEST 2006
Update of /cvsroot/ffmpeg/ffmpeg/libavutil
In directory mail:/var2/tmp/cvs-serv5927
Modified Files:
Makefile mathematics.c
Log Message:
avoid AVInteger usage in av_rescale
disable integer.* (unused)
libavutil.a 45k -> 32k
Index: Makefile
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavutil/Makefile,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- Makefile 6 Mar 2006 14:13:00 -0000 1.18
+++ Makefile 23 Apr 2006 10:28:54 -0000 1.19
@@ -12,7 +12,6 @@
endif
OBJS= mathematics.o \
- integer.o \
rational.o \
intfloat_readwrite.o \
crc.o \
Index: mathematics.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavutil/mathematics.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- mathematics.c 12 Jan 2006 22:43:26 -0000 1.3
+++ mathematics.c 23 Apr 2006 10:28:54 -0000 1.4
@@ -22,7 +22,6 @@
*/
#include "common.h"
-#include "integer.h"
#include "mathematics.h"
const uint8_t ff_sqrt_tab[128]={
@@ -49,7 +48,6 @@
}
int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding rnd){
- AVInteger ai;
int64_t r=0;
assert(c > 0);
assert(b >=0);
@@ -65,12 +63,40 @@
return (a * b + r)/c;
else
return a/c*b + (a%c*b + r)/c;
- }
+ }else{
+#if 1
+ uint64_t a0= a&0xFFFFFFFF;
+ uint64_t a1= a>>32;
+ uint64_t b0= b&0xFFFFFFFF;
+ uint64_t b1= b>>32;
+ uint64_t t1= a0*b1 + a1*b0;
+ uint64_t t1a= t1<<32;
+ int i;
- ai= av_mul_i(av_int2i(a), av_int2i(b));
- ai= av_add_i(ai, av_int2i(r));
+ a0 = a0*b0 + t1a;
+ a1 = a1*b1 + (t1>>32) + (a0<t1a);
+ a0 += r;
+ a1 += a0<r;
- return av_i2int(av_div_i(ai, av_int2i(c)));
+ for(i=63; i>=0; i--){
+// int o= a1 & 0x8000000000000000ULL;
+ a1+= a1 + ((a0>>i)&1);
+ t1+=t1;
+ if(/*o || */c >= a1){
+ a1 -= c;
+ t1++;
+ }
+ }
+ return t1;
+ }
+#else
+ AVInteger ai;
+ ai= av_mul_i(av_int2i(a), av_int2i(b));
+ ai= av_add_i(ai, av_int2i(r));
+
+ return av_i2int(av_div_i(ai, av_int2i(c)));
+ }
+#endif
}
int64_t av_rescale(int64_t a, int64_t b, int64_t c){
@@ -82,3 +108,25 @@
int64_t c= cq.num * (int64_t)bq.den;
return av_rescale_rnd(a, b, c, AV_ROUND_NEAR_INF);
}
+#if 0
+main(){
+ int64_t a,b,c,d,e;
+
+ for(a=7; a<256*256*256*128LL; a=(a*3)+1){
+ for(b=3; b<256*256*256*128LL; b=(b*5)/4+1){
+ for(c=9; c<256*256*256*128LL; c=(c*7)/5+3 ){
+ int64_t r= c/2;
+ AVInteger ai;
+ ai= av_mul_i(av_int2i(a), av_int2i(b));
+ ai= av_add_i(ai, av_int2i(r));
+
+ d= av_i2int(av_div_i(ai, av_int2i(c)));
+
+ e= av_rescale(a,b,c);
+
+ if(d!=e) printf("%Ld*%Ld/%Ld= %Ld=%Ld\n"L, a, b, c, d, e);
+ }
+ }
+ }
+}
+#endif
\ No newline at end of file
More information about the ffmpeg-cvslog
mailing list