[xiph-commits] r14120 - trunk/speex

jm at svn.xiph.org jm at svn.xiph.org
Fri Nov 9 13:14:45 PST 2007


Author: jm
Date: 2007-11-09 13:14:45 -0800 (Fri, 09 Nov 2007)
New Revision: 14120

Modified:
   trunk/speex/TODO
   trunk/speex/configure.ac
Log:
autoconf cleanup


Modified: trunk/speex/TODO
===================================================================
--- trunk/speex/TODO	2007-11-09 21:14:33 UTC (rev 14119)
+++ trunk/speex/TODO	2007-11-09 21:14:45 UTC (rev 14120)
@@ -1,15 +1,14 @@
 For 1.2beta3:
-Merge TriMedia stuff
 Control delay in new AEC API.
-packet dump
-make sure speex_alloc() and speex_free() are exported properly
-split misc.h into spx_types.h and spx_sys.h
-remove misc.h
-proper error reporting
+Implement speex_header_free()
+better error reporting
 get rid of floats in initialisation (make the lag window a const array)
+split encoder and decoder?
 
 
 Eventually:
+Merge TriMedia stuff
+packet dump
 Do VAD properly
 Warning/error handling
 --enable-{aec,preprocessor,jitter,resampler}

Modified: trunk/speex/configure.ac
===================================================================
--- trunk/speex/configure.ac	2007-11-09 21:14:33 UTC (rev 14119)
+++ trunk/speex/configure.ac	2007-11-09 21:14:45 UTC (rev 14120)
@@ -96,15 +96,11 @@
 AC_DEFINE_UNQUOTED(SPEEX_MICRO_VERSION, ${SPEEX_MICRO_VERSION}, [Version micro])
 AC_DEFINE_UNQUOTED(SPEEX_EXTRA_VERSION, "${SPEEX_EXTRA_VERSION}", [Version extra])
 
-AC_ARG_ENABLE(wideband, [  --disable-wideband      Disable wideband codec],
-[if test "$enableval" = no; then
-  AC_DEFINE([DISABLE_WIDEBAND], , [Disable wideband codec])
-fi])
-
-AC_ARG_ENABLE(vorbis-psy, [  --enable-vorbis-psy       Enable Vorbis-style psychoacoustics (EXPERIMENTAL)],
+AC_ARG_ENABLE(floating-point, [  --enable-floating-point   Compile as floating-point (default)],
 [if test "$enableval" = yes; then
-  AC_DEFINE([VORBIS_PSYCHO], , [Enable Vorbis-style psychoacoustics (EXPERIMENTAL)])
-fi])
+  AC_DEFINE([FLOATING_POINT], , [Compile as floating-point])
+fi],
+AC_DEFINE([FLOATING_POINT], , [Compile as floating-point]))
 
 AC_ARG_ENABLE(valgrind, [  --enable-valgrind       Enable valgrind extra checks],
 [if test "$enableval" = yes; then
@@ -143,22 +139,12 @@
   AC_DEFINE([FIXED_DEBUG], , [Debug fixed-point implementation])
 fi])
 
-AC_ARG_ENABLE(epic-48k, [  --enable-epic-48k       Enable support for Epic 4.8 kbps mode],
-[if test "$enableval" = yes; then
-  AC_DEFINE([EPIC_48K], , [Enable support for Epic 4.8 kbps mode])
-fi])
-
 AC_ARG_ENABLE(ti-c55x, [  --enable-ti-c55x        Enable support for TI C55X DSP],
 [if test "$enableval" = yes; then
   has_char16=yes;
   AC_DEFINE([TI_C55X], , [Enable support for TI C55X DSP])
 fi])
 
-AC_ARG_ENABLE(16bit-precision, [  --enable-16bit-precision Reduce precision to 16 bits (EXPERIMENTAL)],
-[if test "$enableval" = yes; then
-  AC_DEFINE([PRECISION16], , [Reduce precision to 16 bits (EXPERIMENTAL)])
-fi])
-
 AC_CHECK_SIZEOF(short)
 AC_CHECK_SIZEOF(int)
 AC_CHECK_SIZEOF(long)



More information about the commits mailing list