aboutsummaryrefslogtreecommitdiff
path: root/ports/ffmpeg
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2020-02-04 15:50:10 -0800
committerRobert Schumacher <roschuma@microsoft.com>2020-02-04 15:50:10 -0800
commit6f66ad14fe9da11d4bf50f5b25b4da86ed971c53 (patch)
tree0f5dbcd1719cd6a8e486c4058cfefd607d58aa6c /ports/ffmpeg
parentd502f061bb3ee0258d6453acbf258b9e5d93d564 (diff)
parentd808514c9df44bb97d6eccff952bfe8ec4e156f7 (diff)
downloadvcpkg-6f66ad14fe9da11d4bf50f5b25b4da86ed971c53.tar.gz
vcpkg-6f66ad14fe9da11d4bf50f5b25b4da86ed971c53.zip
Merge remote-tracking branch 'origin/master' into HEAD
Diffstat (limited to 'ports/ffmpeg')
-rw-r--r--ports/ffmpeg/0002-detect-openssl.patch2
-rw-r--r--ports/ffmpeg/CONTROL2
-rw-r--r--ports/ffmpeg/FindFFMPEG.cmake.in8
3 files changed, 6 insertions, 6 deletions
diff --git a/ports/ffmpeg/0002-detect-openssl.patch b/ports/ffmpeg/0002-detect-openssl.patch
index 87a7656c8..a095af6b1 100644
--- a/ports/ffmpeg/0002-detect-openssl.patch
+++ b/ports/ffmpeg/0002-detect-openssl.patch
@@ -7,7 +7,7 @@ index 1c8008a..bd2de34 100755
check_lib openssl openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
check_lib openssl openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
- die "ERROR: openssl not found"; }
-+ check_lib openssl openssl/ssl.h SSL_library_init -llibeay32 -lssleay32 ||
++ check_lib openssl openssl/ssl.h OPENSSL_init_ssl -llibssl -llibcrypto -lws2_32 -lgdi32 -lcrypt32 ||
+ die "ERROR: openssl not found"; }
enabled pocketsphinx && require_pkg_config pocketsphinx pocketsphinx pocketsphinx/pocketsphinx.h ps_init
enabled rkmpp && { require_pkg_config rkmpp rockchip_mpp rockchip/rk_mpi.h mpp_create &&
diff --git a/ports/ffmpeg/CONTROL b/ports/ffmpeg/CONTROL
index faebf0d86..fee79a66a 100644
--- a/ports/ffmpeg/CONTROL
+++ b/ports/ffmpeg/CONTROL
@@ -1,5 +1,5 @@
Source: ffmpeg
-Version: 4.2-2
+Version: 4.2-4
Build-Depends: zlib
Homepage: https://ffmpeg.org
Description: a library to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created.
diff --git a/ports/ffmpeg/FindFFMPEG.cmake.in b/ports/ffmpeg/FindFFMPEG.cmake.in
index d5139220b..1562fff05 100644
--- a/ports/ffmpeg/FindFFMPEG.cmake.in
+++ b/ports/ffmpeg/FindFFMPEG.cmake.in
@@ -153,14 +153,14 @@ if (FFMPEG_libavcodec_FOUND AND FFMPEG_libavdevice_FOUND AND FFMPEG_libavfilter_
set(FFMPEG_libswscale_VERSION "${FFMPEG_VERSION}" CACHE STRING "")
list(APPEND FFMPEG_LIBRARIES
- ${FFMPEG_libavformat_LIBRARY}
${FFMPEG_libavdevice_LIBRARY}
- ${FFMPEG_libavcodec_LIBRARY}
- ${FFMPEG_libavutil_LIBRARY}
- ${FFMPEG_libswscale_LIBRARY}
${FFMPEG_libavfilter_LIBRARY}
+ ${FFMPEG_libavformat_LIBRARY}
+ ${FFMPEG_libswscale_LIBRARY}
+ ${FFMPEG_libavcodec_LIBRARY}
${FFMPEG_libswresample_LIBRARY}
${FFMPEG_libavresample_LIBRARY}
+ ${FFMPEG_libavutil_LIBRARY}
${FFMPEG_libzlib_LIBRARY}
${FFMPEG_PLATFORM_DEPENDENT_LIBS}
)