summaryrefslogtreecommitdiff
path: root/libavcodec/aaccoder.c
diff options
context:
space:
mode:
authorAlex Converse <alex.converse@gmail.com>2009-07-17 14:06:53 +0000
committerAlex Converse <alex.converse@gmail.com>2009-07-17 14:06:53 +0000
commitc369e83608251778c92770b14d1bf6403c540826 (patch)
treeccd796f482b5940ea7682ee0faec53336148ea74 /libavcodec/aaccoder.c
parent24524f36a1a81afd97558882c56cbee52562c63e (diff)
Dead code removal in the AAC encoder.
Originally committed as revision 19457 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aaccoder.c')
-rw-r--r--libavcodec/aaccoder.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/aaccoder.c b/libavcodec/aaccoder.c
index 252b3592a3..41f7c208a8 100644
--- a/libavcodec/aaccoder.c
+++ b/libavcodec/aaccoder.c
@@ -89,11 +89,6 @@ static void abs_pow34_v(float *out, const float *in, const int size)
#endif /* USE_REALLY_FULL_SEARCH */
}
-static av_always_inline int quant2(float coef, const float Q)
-{
- return pow(coef * Q, 0.75);
-}
-
static const uint8_t aac_cb_range [12] = {0, 3, 3, 3, 3, 9, 9, 8, 8, 13, 13, 17};
static const uint8_t aac_cb_maxval[12] = {0, 1, 1, 2, 2, 4, 4, 7, 7, 12, 12, 16};