Skip to content
Snippets Groups Projects
Commit f985f864 authored by Adrien Beraud's avatar Adrien Beraud Committed by Adrien Béraud
Browse files

speex: include speexdsp_types.h instead of speex_config_types.h

speex_config_types.h is not present if only speexdsp is installed

Change-Id: I08798648ffbbfa1e84138b21b12e32c75b47e45f
parent b0e223ff
Branches
No related tags found
No related merge requests found
......@@ -21,8 +21,12 @@
#include "audio/audiolayer.h"
#ifndef _MSC_VER
#if __has_include(<speex/speexdsp_config_types.h>)
#include <speex/speexdsp_config_types.h>
#else
#include <speex/speex_config_types.h>
#endif
#endif
extern "C" {
#include <speex/speex_echo.h>
#include <speex/speex_preprocess.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment