mirror of
https://github.com/rustdesk/rustdesk.git
synced 2025-05-18 15:24:16 +02:00
* Revert "Revert vcpkg ffmpeg (#8751)" This reverts commit5c16a8302e
. * vcpkg: Reland ffmpeg and try to fix sciter build Signed-off-by: Vasyl Gello <vasek.gello@gmail.com> * vcpkg: Detect AVX2 by requiring __m256i (ubuntu18.04 sciter) Signed-off-by: Vasyl Gello <vasek.gello@gmail.com> * Install nasm from debian buster and python3.7 ... from ubuntu universe [Skip CI] * vcpkg: Add libyuv port with fix for windows Fromabc59feabf
Found by @deep-soft Signed-off-by: Vasyl Gello <vasek.gello@gmail.com> * Bump vcpkg baseline to 2024.07.12 Signed-off-by: Vasyl Gello <vasek.gello@gmail.com> * Fix F-Droid version action I thought the latest release will be updated by the time hook starts but it is not the case. Get tag from GITHUB_REF instead if GITHUB_REF_TYPE is "tag". Signed-off-by: Vasyl Gello <vasek.gello@gmail.com> --------- Signed-off-by: Vasyl Gello <vasek.gello@gmail.com>
15 lines
415 B
Diff
15 lines
415 B
Diff
diff --color -Naur src_old/libavcodec/mf_utils.c src/libavcodec/mf_utils.c
|
|
--- src_old/libavcodec/mf_utils.c 2020-07-11 05:26:17.000000000 +0700
|
|
+++ src/libavcodec/mf_utils.c 2020-11-13 12:55:57.226976400 +0700
|
|
@@ -22,6 +22,11 @@
|
|
#define _WIN32_WINNT 0x0602
|
|
#endif
|
|
|
|
+#if !defined(WINVER) || WINVER < 0x0602
|
|
+#undef WINVER
|
|
+#define WINVER 0x0602
|
|
+#endif
|
|
+
|
|
#include "mf_utils.h"
|
|
#include "libavutil/pixdesc.h"
|
|
|