ES-DE/CMake/Packages/FindFFmpeg.cmake

88 lines
3 KiB
CMake
Raw Normal View History

# Copyright (c) 2014 Matt Coffin <mcoffin13@gmail.com>
#
# This software is provided 'as-is', without any express or implied
# warranty. In no event will the authors be held liable for any damages
# arising from the use of this software.
#
# Permission is granted to anyone to use this software for any purpose,
# including commercial applications, and to alter it and redistribute it
# freely, subject to the following restrictions:
#
# 1. The origin of this software must not be misrepresented; you must not
# claim that you wrote the original software. If you use this software
# in a product, an acknowledgment in the product documentation would be
# appreciated but is not required.
# 2. Altered source versions must be plainly marked as such, and must not be
# misrepresented as being the original software.
# 3. This notice may not be removed or altered from any source distribution.
# - Try to find FFmpeg
# Once done this will define
# FFmpeg_FOUND
# FFmpeg_INCLUDE_DIRS
# FFmpeg_LIBRARIES
# FFmpeg_INCLUDE_FILES
# Author: Matt Coffin <mcoffin13@gmail.com>
include(FindPackageHandleStandardArgs)
if (NOT FFmpeg_FIND_COMPONENTS)
set(FFmpeg_FIND_COMPONENTS avcodec avformat avutil swresample swscale)
endif(NOT FFmpeg_FIND_COMPONENTS)
# Generate component include files and requirements
foreach(comp ${FFmpeg_FIND_COMPONENTS})
if(FFmpeg_FIND_REQUIRED_${comp})
list(APPEND required "FFmpeg_${comp}_FOUND")
endif()
endforeach(comp)
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
set(_lib_suffix 64)
else()
set(_lib_suffix 32)
endif()
set(FFMPEG_PATH_ARCH FFmpegPath${_lib_suffix})
# Find libraries
find_package(PkgConfig QUIET)
foreach(comp ${FFmpeg_FIND_COMPONENTS})
if(PKG_CONFIG_FOUND)
pkg_check_modules(_${comp} QUIET lib${comp})
endif()
find_path(FFmpeg_${comp}_INCLUDE_DIR
NAMES "lib${comp}/${comp}.h"
HINTS
${_${comp}_INCLUDE_DIRS}
ENV FFmpegPath
ENV ${FFMPEG_PATH_ARCH}
PATHS
/usr/include /usr/local/include /opt/local/include /sw/include
PATH_SUFFIXES ffmpeg libav
DOC "FFmpeg include directory")
find_library(FFmpeg_${comp}_LIBRARY
NAMES ${comp} ${comp}-ffmpeg ${_${comp}_LIBRARIES}
HINTS
${_${comp}_LIBRARY_DIRS}
"${FFmpeg_${comp}_INCLUDE_DIR}/../lib"
"${FFmpeg_${comp}_INCLUDE_DIR}/../lib${_lib_suffix}"
"${FFmpeg_${comp}_INCLUDE_DIR}/../libs${_lib_suffix}"
"${FFmpeg_${comp}_INCLUDE_DIR}/lib"
"${FFmpeg_${comp}_INCLUDE_DIR}/lib${_lib_suffix}"
PATHS
/usr/lib /usr/local/lib /opt/local/lib /sw/lib
PATH_SUFFIXES ${comp} lib${comp}
DOC "FFmpeg ${comp} library")
find_package_handle_standard_args(FFmpeg_${comp}
FOUND_VAR FFmpeg_${comp}_FOUND
REQUIRED_VARS FFmpeg_${comp}_LIBRARY FFmpeg_${comp}_INCLUDE_DIR)
if(${FFmpeg_${comp}_FOUND})
list(APPEND FFmpeg_INCLUDE_DIRS ${FFmpeg_${comp}_INCLUDE_DIR})
list(APPEND FFmpeg_LIBRARIES ${FFmpeg_${comp}_LIBRARY})
endif()
endforeach(comp)
# Run checks via find_package_handle_standard_args
find_package_handle_standard_args(FFmpeg
FOUND_VAR FFmpeg_FOUND
REQUIRED_VARS ${required} FFmpeg_INCLUDE_DIRS FFmpeg_LIBRARIES)