1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-23 21:54:53 +02:00

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
This commit is contained in:
Diego Biurrun
2007-11-09 04:57:28 +00:00
parent 2c18784703
commit e9b67fe42e

View File

@@ -49,7 +49,8 @@ uint64_t exp16_table[21]={
195360063, 195360063,
582360139072LL, 582360139072LL,
}; };
#if 1
#if 0
// 16.16 fixpoint exp() // 16.16 fixpoint exp()
static unsigned int exp16(unsigned int a){ static unsigned int exp16(unsigned int a){
int i; int i;
@@ -62,6 +63,8 @@ static unsigned int exp16(unsigned int a){
return out; return out;
} }
#endif
// 16.16 fixpoint log() // 16.16 fixpoint log()
static int64_t log16(uint64_t a){ static int64_t log16(uint64_t a){
int i; int i;
@@ -80,7 +83,6 @@ static int64_t log16(uint64_t a){
return out; return out;
} }
#endif
static uint64_t int_sqrt(uint64_t a) static uint64_t int_sqrt(uint64_t a)
{ {
uint64_t ret=0; uint64_t ret=0;