Skip to content
Snippets Groups Projects
Commit 5aa57e4f authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

Configure option for custom modes

parent 4d3e105a
No related branches found
No related tags found
No related merge requests found
......@@ -124,6 +124,13 @@ AC_ARG_ENABLE(experimental-postfilter, [ --enable-experimental-postfilter E
AC_DEFINE([ENABLE_POSTFILTER], , [Postfilter])
fi])
ac_enable_custom_modes="no"
AC_ARG_ENABLE(custom-modes, [ --enable-custom-modes Enable non-Opus modes, like 44.1 kHz and powers of two ],
[if test "$enableval" = yes; then
ac_enable_custom_modes="yes"
AC_DEFINE([CUSTOM_MODES], , [Custom modes])
fi])
float_approx=$has_float_approx
AC_ARG_ENABLE(float-approx, [ --enable-float-approx enable fast approximations for floating point],
[ if test "$enableval" = yes; then
......
......@@ -41,7 +41,7 @@
#include "entenc.h"
#include "entdec.h"
#define CELT_BITSTREAM_VERSION 0x8000000f
#define CELT_BITSTREAM_VERSION 0x80000010
#define MAX_PERIOD 1024
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment