Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/mlp.c
diff options
context:
space:
mode:
authorJoshua Bowman <silverbacknet@gmail.com>2012-10-23 23:18:38 +0400
committerRalph Giles <giles@mozilla.com>2012-10-23 23:20:32 +0400
commit3b60e81d794733e7af54ea1557f0879ec50286bd (patch)
tree721224fad04eb9e422e5f119b0573772403fadbf /src/mlp.c
parent027ec51bfef87d7e9f2c48091a66a75bcf524152 (diff)
Fix the MSVC build.
Updates the project files to include the new encoder source files. Use OPUS_RESTRICT and include config.h to set the proper defines for build under MSVC.
Diffstat (limited to 'src/mlp.c')
-rw-r--r--src/mlp.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mlp.c b/src/mlp.c
index f5f34812..32380fd6 100644
--- a/src/mlp.c
+++ b/src/mlp.c
@@ -25,6 +25,9 @@
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
#include <math.h>
#include "mlp.h"