Commit 83f5c7f0 authored by diego's avatar diego

Disable unused function, fixes the warning:

tests/tiny_psnr.c:55: warning: ‘exp16’ defined but not used


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10968 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ac7961d7
......@@ -49,7 +49,8 @@ uint64_t exp16_table[21]={
195360063,
582360139072LL,
};
#if 1
#if 0
// 16.16 fixpoint exp()
static unsigned int exp16(unsigned int a){
int i;
......@@ -62,6 +63,8 @@ static unsigned int exp16(unsigned int a){
return out;
}
#endif
// 16.16 fixpoint log()
static int64_t log16(uint64_t a){
int i;
......@@ -80,7 +83,6 @@ static int64_t log16(uint64_t a){
return out;
}
#endif
static uint64_t int_sqrt(uint64_t a)
{
uint64_t ret=0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment