From 6d64973d28fc078743c2b8ecb81c6c46d4b31689 Mon Sep 17 00:00:00 2001 From: xufuji456 Date: Thu, 22 Sep 2022 10:31:42 +0800 Subject: [PATCH] Feature: adjust header file --- Live/CMakeLists.txt | 2 +- Live/src/main/cpp/AudioStream.h | 2 +- Live/src/main/cpp/VideoStream.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Live/CMakeLists.txt b/Live/CMakeLists.txt index 5d18965..1853e99 100644 --- a/Live/CMakeLists.txt +++ b/Live/CMakeLists.txt @@ -30,7 +30,7 @@ set_target_properties(x264 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++11") -include_directories(main/cpp/include) +include_directories(src/main/cpp/include) add_library(live SHARED diff --git a/Live/src/main/cpp/AudioStream.h b/Live/src/main/cpp/AudioStream.h index 70b64b1..38b2438 100644 --- a/Live/src/main/cpp/AudioStream.h +++ b/Live/src/main/cpp/AudioStream.h @@ -3,7 +3,7 @@ #define AUDIOSTREAM_H #include "rtmp/rtmp.h" -#include "include/faac/faac.h" +#include "faac/faac.h" #include class AudioStream { diff --git a/Live/src/main/cpp/VideoStream.h b/Live/src/main/cpp/VideoStream.h index 7c2bbb0..fdad427 100644 --- a/Live/src/main/cpp/VideoStream.h +++ b/Live/src/main/cpp/VideoStream.h @@ -5,7 +5,7 @@ #include #include #include "rtmp/rtmp.h" -#include "include/x264/x264.h" +#include "x264/x264.h" class VideoStream { typedef void (*VideoCallback)(RTMPPacket *packet);