mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.4 KiB
63 lines
2.4 KiB
# --- FFMPEG --- |
|
if(NOT HAVE_FFMPEG AND OPENCV_FFMPEG_USE_FIND_PACKAGE) |
|
if(OPENCV_FFMPEG_USE_FIND_PACKAGE STREQUAL "1" OR OPENCV_FFMPEG_USE_FIND_PACKAGE STREQUAL "ON") |
|
set(OPENCV_FFMPEG_USE_FIND_PACKAGE "FFMPEG") |
|
endif() |
|
find_package(${OPENCV_FFMPEG_USE_FIND_PACKAGE}) # Required components: AVCODEC AVFORMAT AVUTIL SWSCALE |
|
if(FFMPEG_FOUND OR FFmpeg_FOUND) |
|
set(HAVE_FFMPEG TRUE) |
|
endif() |
|
endif() |
|
|
|
if(NOT HAVE_FFMPEG AND WIN32 AND NOT ARM AND NOT OPENCV_FFMPEG_SKIP_DOWNLOAD) |
|
include("${OpenCV_SOURCE_DIR}/3rdparty/ffmpeg/ffmpeg.cmake") |
|
download_win_ffmpeg(FFMPEG_CMAKE_SCRIPT) |
|
if(FFMPEG_CMAKE_SCRIPT) |
|
include("${FFMPEG_CMAKE_SCRIPT}") |
|
set(FFMPEG_libavcodec_VERSION ${FFMPEG_libavcodec_VERSION} PARENT_SCOPE) # info |
|
set(FFMPEG_libavformat_VERSION ${FFMPEG_libavformat_VERSION} PARENT_SCOPE) # info |
|
set(FFMPEG_libavutil_VERSION ${FFMPEG_libavutil_VERSION} PARENT_SCOPE) # info |
|
set(FFMPEG_libswscale_VERSION ${FFMPEG_libswscale_VERSION} PARENT_SCOPE) # info |
|
set(FFMPEG_libavresample_VERSION ${FFMPEG_libavresample_VERSION} PARENT_SCOPE) # info |
|
set(HAVE_FFMPEG TRUE) |
|
set(HAVE_FFMPEG_WRAPPER TRUE) |
|
endif() |
|
endif() |
|
|
|
if(NOT HAVE_FFMPEG AND PKG_CONFIG_FOUND) |
|
ocv_check_modules(FFMPEG libavcodec libavformat libavutil libswscale) |
|
if(FFMPEG_FOUND) |
|
ocv_check_modules(FFMPEG_libavresample libavresample) # optional |
|
if(FFMPEG_libavresample_FOUND) |
|
list(APPEND FFMPEG_LIBRARIES ${FFMPEG_libavresample_LIBRARIES}) |
|
endif() |
|
set(HAVE_FFMPEG TRUE) |
|
endif() |
|
endif() |
|
|
|
#================================== |
|
|
|
if(HAVE_FFMPEG AND NOT HAVE_FFMPEG_WRAPPER AND NOT OPENCV_FFMPEG_SKIP_BUILD_CHECK) |
|
try_compile(__VALID_FFMPEG |
|
"${OpenCV_BINARY_DIR}" |
|
"${OpenCV_SOURCE_DIR}/cmake/checks/ffmpeg_test.cpp" |
|
CMAKE_FLAGS "-DINCLUDE_DIRECTORIES:STRING=${FFMPEG_INCLUDE_DIRS}" |
|
"-DLINK_LIBRARIES:STRING=${FFMPEG_LIBRARIES}" |
|
OUTPUT_VARIABLE TRY_OUT |
|
) |
|
if(NOT __VALID_FFMPEG) |
|
# message(FATAL_ERROR "FFMPEG: test check build log:\n${TRY_OUT}") |
|
message(STATUS "WARNING: Can't build ffmpeg test code") |
|
set(HAVE_FFMPEG FALSE) |
|
endif() |
|
endif() |
|
|
|
#================================== |
|
|
|
if(HAVE_FFMPEG_WRAPPER) |
|
ocv_add_external_target(ffmpeg "" "" "HAVE_FFMPEG_WRAPPER") |
|
elseif(HAVE_FFMPEG) |
|
ocv_add_external_target(ffmpeg "${FFMPEG_INCLUDE_DIRS}" "${FFMPEG_LIBRARIES}" "HAVE_FFMPEG") |
|
endif() |
|
|
|
set(HAVE_FFMPEG ${HAVE_FFMPEG} PARENT_SCOPE)
|
|
|