mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-02 10:19:07 +08:00
5d7ad6b5ae
* Update ffmpeg to 4.4.3 - Backport fix for h.264 hardware decoding on M1 macs - ffmpeg links against built-in atomic, not a findable lib * add missing extension for new patch * version! Co-authored-by: Martijn Otto <martijn@resolume.com> Co-authored-by: Javier Matos Denizac <javier.matosd@gmail.com>
17 lines
349 B
Diff
17 lines
349 B
Diff
diff --git a/libavcodec/mf_utils.c b/libavcodec/mf_utils.c
|
|
index eeabd0c..ea3a03b 100644
|
|
--- a/libavcodec/mf_utils.c
|
|
+++ b/libavcodec/mf_utils.c
|
|
@@ -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"
|
|
|