Browse code

Disable unused function, fixes the warning: tests/tiny_psnr.c:55: warning: ‘exp16’ defined but not used

Originally committed as revision 10968 to svn://svn.ffmpeg.org/ffmpeg/trunk

Diego Biurrun authored on 2007/11/09 13:57:28
Showing 1 changed files
... ...
@@ -49,7 +49,8 @@ uint64_t exp16_table[21]={
49 49
  195360063,
50 50
  582360139072LL,
51 51
 };
52
-#if 1
52
+
53
+#if 0
53 54
 // 16.16 fixpoint exp()
54 55
 static unsigned int exp16(unsigned int a){
55 56
     int i;
... ...
@@ -62,6 +63,8 @@ static unsigned int exp16(unsigned int a){
62 62
 
63 63
     return out;
64 64
 }
65
+#endif
66
+
65 67
 // 16.16 fixpoint log()
66 68
 static int64_t log16(uint64_t a){
67 69
     int i;
... ...
@@ -80,7 +83,6 @@ static int64_t log16(uint64_t a){
80 80
     return out;
81 81
 }
82 82
 
83
-#endif
84 83
 static uint64_t int_sqrt(uint64_t a)
85 84
 {
86 85
     uint64_t ret=0;