summaryrefslogtreecommitdiff
path: root/celt/celt.c
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2012-10-09 13:43:54 -0400
committerJean-Marc Valin <jmvalin@jmvalin.ca>2012-10-09 13:51:44 -0400
commit0e490591b7af4208df68b33af853216393a1a5c1 (patch)
tree9f0aa4edea229a7d711abd9dbb0cbd2b74e33719 /celt/celt.c
parent7315b35e13a3a7c504ed6b1fe2d28ad500eb2701 (diff)
downloadopus-0e490591b7af4208df68b33af853216393a1a5c1.tar.gz
Gets rid of unused boost analysis code that never worked anyway.
Also removes the -exp_analysis suffix from opus_get_version_string() and fixes a "ISO C90 forbids mixed declarations and code" warning.
Diffstat (limited to 'celt/celt.c')
-rw-r--r--celt/celt.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/celt/celt.c b/celt/celt.c
index 7580fa2d..0a212db7 100644
--- a/celt/celt.c
+++ b/celt/celt.c
@@ -322,7 +322,7 @@ static int transient_analysis(const opus_val32 * OPUS_RESTRICT in, int len, int
opus_val16 follower;
int metric=0;
int fmetric=0, bmetric=0;
- int count1, count2, count3, count4, count5;;
+ int count1, count2, count3, count4, count5;
SAVE_STACK;
ALLOC(tmp, len, opus_val16);
@@ -3180,7 +3180,6 @@ const char *opus_strerror(int error)
const char *opus_get_version_string(void)
{
return "libopus " OPUS_VERSION
- "-exp_analysis"
#ifdef FIXED_POINT
"-fixed"
#endif