Merge pull request #4960 from zhaowenlan1779/ffmpeg-cmake-fix
CMakeLists: Fix `find_package` call
This commit is contained in:
commit
a757e9dc47
|
@ -209,7 +209,11 @@ if (ENABLE_FFMPEG)
|
|||
endif()
|
||||
endif()
|
||||
|
||||
find_package(FFmpeg REQUIRED COMPONENTS avcodec avformat avutil swscale swresample)
|
||||
if (ENABLE_FFMPEG_VIDEO_DUMPER)
|
||||
find_package(FFmpeg REQUIRED COMPONENTS avcodec avformat avutil swscale swresample)
|
||||
else()
|
||||
find_package(FFmpeg REQUIRED COMPONENTS avcodec)
|
||||
endif()
|
||||
if ("${FFmpeg_avcodec_VERSION}" VERSION_LESS "57.48.101")
|
||||
message(FATAL_ERROR "Found version for libavcodec is too low. The required version is at least 57.48.101 (included in FFmpeg 3.1 and later).")
|
||||
endif()
|
||||
|
|
Loading…
Reference in New Issue