-
Notifications
You must be signed in to change notification settings - Fork 7.4k
[many ports] mingw support #14556
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
strega-nil
merged 21 commits into
microsoft:master
from
longnguyen2004:mingw-ffmpeg-related
Dec 1, 2020
Merged
[many ports] mingw support #14556
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
044286f
[vcpkg_configure_make] Only rename import libs on MSVC
longnguyen2004 3ee8976
[x264] Only rename import libs on MSVC
longnguyen2004 f36fbf8
[x265] Add libc++ and libstdc++ as system libs
longnguyen2004 815d6e0
[ffmpeg] mingw support
longnguyen2004 10e0cf3
[libvpx] Set AS environment variable
longnguyen2004 87cdd0d
[vcpkg_common_definition] Fix a mistake in the prefix and suffix vari…
longnguyen2004 4b72e4d
[vcpkg_configure_make] Strip leading -l from lib list before joining
longnguyen2004 ff2e5cf
[mp3lame] Use vcpkg_configure_make + mingw support
longnguyen2004 e7d45b0
[x265] Escape the pluses
longnguyen2004 10c7e65
[ffmpeg] Add compiler flags for mingw
longnguyen2004 7eaa145
[ffmpeg] Add WINVER define in mf_utils.c
longnguyen2004 e8c7ef2
[ffmpeg] Remove unnecessary patch in 0003-fic-windowsinclude.patch
longnguyen2004 e7995d9
[mp3lame] Add missing dollar sign
longnguyen2004 619d08a
Merge branch 'mingw-ffmpeg-related' of https://github.com/longnguyen2…
longnguyen2004 47fb16c
[x265] Remove static lib when building shared with mingw
longnguyen2004 38b0101
[libogg] Change library name to libogg on mingw
longnguyen2004 6252905
[libogg] Bump port version
longnguyen2004 cd9ed37
Merge branch 'master' into mingw-ffmpeg-related
longnguyen2004 8b0d8a4
[x265] Remove -l(std)c++ flag in pkgconfig file
longnguyen2004 a74fd38
[vcpkg_configure_make] Try to fix huge diff
longnguyen2004 4c647c8
[mp3lame] Add comment on deprecated function lame_init_old
longnguyen2004 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| 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" | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| Source: libogg | ||
| Version: 1.3.4 | ||
| Port-Version: 2 | ||
| Port-Version: 3 | ||
| Description: Ogg is a multimedia container format, and the native file and stream format for the Xiph.org multimedia codecs. | ||
| Homepage: https://github.com/xiph/ogg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| Source: mp3lame | ||
| Version: 3.100 | ||
| Port-Version: 4 | ||
| Port-Version: 5 | ||
| Homepage: http://lame.sourceforge.net/ | ||
| Description: LAME is a high quality MPEG Audio Layer III (MP3) encoder licensed under the LGPL. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| diff --color -Naur src_old/include/libmp3lame.sym src/include/libmp3lame.sym | ||
| --- src_old/include/libmp3lame.sym 2017-09-07 02:33:35.000000000 +0700 | ||
| +++ src/include/libmp3lame.sym 2020-11-12 17:45:59.946448300 +0700 | ||
| @@ -1,5 +1,4 @@ | ||
| lame_init | ||
| -lame_init_old | ||
JackBoosY marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| lame_set_num_samples | ||
| lame_get_num_samples | ||
| lame_set_in_samplerate | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| Source: x264 | ||
| Version: 157-303c484ec828ed0 | ||
| Port-Version: 13 | ||
| Port-Version: 14 | ||
| Homepage: https://github.com/mirror/x264 | ||
| Description: x264 is a free software library and application for encoding video streams into the H.264/MPEG-4 AVC compression format | ||
| Build-Depends: pthread (linux&osx) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| Source: x265 | ||
| Version: 3.4 | ||
| Port-Version: 1 | ||
| Homepage: https://github.com/videolan/x265 | ||
| Description: x265 is a H.265 / HEVC video encoder application library, designed to encode video or images into an H.265 / HEVC encoded bitstream. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.