We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63cb566 commit 8737bffCopy full SHA for 8737bff
CMakeLists.txt
@@ -439,6 +439,9 @@ if (USE_MPEG)
439
find_package(FFMPEG REQUIRED)
440
add_definitions(-DFFMPEG -D__STDC_CONSTANT_MACROS)
441
include_directories(${FFMPEG_INCLUDE_DIR})
442
+ if(USE_GUI)
443
+ target_link_libraries(nggui INTERFACE ${FFMPEG_LIBRARIES})
444
+ endif(USE_GUI)
445
endif (USE_MPEG)
446
447
#######################################################################
ng/encoding.hpp
@@ -3,6 +3,9 @@
3
4
#ifdef FFMPEG
5
6
+#include <mystdlib.h>
7
+using namespace std;
8
+
9
extern "C" {
10
#include <libavutil/avassert.h>
11
#include <libavcodec/avcodec.h>
0 commit comments