summaryrefslogtreecommitdiff
path: root/libavcodec/celp_math.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-08-26 17:27:12 +0200
committerDiego Biurrun <diego@biurrun.de>2012-08-27 20:37:48 +0200
commit55498543354335697bf1c5616a2ba94c64fbdcf1 (patch)
tree45bdb9aa1848dbcaef84528b31f3fb4be2a3f309 /libavcodec/celp_math.h
parent8f7c26e39297c8ecc8670a04936e47fbfc33439b (diff)
celp_math: Move ff_cos() to the only place it is used
Diffstat (limited to 'libavcodec/celp_math.h')
-rw-r--r--libavcodec/celp_math.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/libavcodec/celp_math.h b/libavcodec/celp_math.h
index 4a502ca04b..92cc2abf7e 100644
--- a/libavcodec/celp_math.h
+++ b/libavcodec/celp_math.h
@@ -26,14 +26,6 @@
#include <stdint.h>
/**
- * fixed-point implementation of cosine in [0; PI) domain.
- * @param arg fixed-point cosine argument, 0 <= arg < 0x4000
- *
- * @return value of (1<<15) * cos(arg * PI / (1<<14)), -0x8000 <= result <= 0x7fff
- */
-int16_t ff_cos(uint16_t arg);
-
-/**
* fixed-point implementation of exp2(x) in [0; 1] domain.
* @param power argument to exp2, 0 <= power <= 0x7fff
*