Merge pull request #15 from liushuyu/dsp_aac

audio_core: fix msvc include issue
This commit is contained in:
Ben 2018-12-17 19:00:29 +01:00 committed by GitHub
commit 958b4167cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -267,7 +267,7 @@ if (ENABLE_FFMPEG)
if (DEFINED FFmpeg_VER)
download_bundled_external("ffmpeg/" ${FFmpeg_VER} FFmpeg_PREFIX)
set(FFMPEG_DIR "${FFmpeg_PREFIX}")
set(FFMPEG_DIR "${FFmpeg_PREFIX}/../")
set(FFMPEG_FOUND YES)
endif()
else()

View File

@ -9,7 +9,7 @@
#endif // _WIN32
extern "C" {
#include "libavcodec/avcodec.h"
#include <libavcodec/avcodec.h>
}
#ifdef _WIN32