Skip to content
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

[ffmpeg] Update to 7.0. #38011

Merged
merged 37 commits into from
Aug 2, 2024
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
eb63780
[ffmpeg] Update to 7.0.
Sibras Apr 6, 2024
2f09d05
Update versions.
Sibras Apr 6, 2024
994ee1e
[ffmpeg] Fix x86 nasm compile.
Sibras Apr 7, 2024
b806e24
[ffmpeg] Fix OSX cross compilation.
Sibras Apr 7, 2024
ecd27c2
[ffmpeg] Bump version.
Sibras Apr 7, 2024
71dfa2f
fixup
Sibras Apr 7, 2024
f36fda9
Update ffmpeg.json
Sibras Apr 7, 2024
87a1340
Merge branch 'master' into ffmpeg7
Sibras Jun 1, 2024
bbc4155
Update ffmpeg.json
Sibras Jun 1, 2024
d5a8237
[ffmpeg] fix chromium patch
Sibras Jun 1, 2024
8cde7cb
Update ffmpeg.json
Sibras Jun 1, 2024
8a79791
[aubio] Update to latest.
Sibras Jun 1, 2024
b9da0f3
[aubio] update version.
Sibras Jun 1, 2024
2001289
Merge branch 'master' into ffmpeg7
Sibras Jun 29, 2024
1a7fad7
Update ffmpeg.json
Sibras Jun 29, 2024
0febba8
[ffmpeg] Add d3d12va support.
Sibras Jun 29, 2024
1574421
[ffpmpeg]: Fix patch.
Sibras Jun 29, 2024
593e0c4
Update ffmpeg.json
Sibras Jun 29, 2024
672dc03
[ffmpeg] Attempt to fix osx link errors.
Sibras Jun 29, 2024
e93240a
Update ffmpeg.json
Sibras Jun 29, 2024
1b69015
Revert "[ffmpeg] Attempt to fix osx link errors."
Sibras Jun 30, 2024
7a64773
[ffmpeg] disable opencl on osx.
Sibras Jun 30, 2024
7a37c8d
Update ffmpeg.json
Sibras Jun 30, 2024
6d49154
[aubio] disable on osx.
Sibras Jul 6, 2024
d995406
Update aubio.json
Sibras Jul 6, 2024
6ac1283
Merge remote-tracking branch 'upstream' into ffmpeg7
Sibras Jul 28, 2024
cbc1c8b
Update ffmpeg.json
Sibras Jul 28, 2024
1145360
simplify osx patch.
Sibras Jul 28, 2024
30d85e4
Update ffmpeg.json
Sibras Jul 28, 2024
466fc07
Revert "[aubio] disable on osx."
Sibras Jul 28, 2024
f89edc7
Update aubio.json
Sibras Jul 28, 2024
6d89823
fix patch
Sibras Jul 28, 2024
c6c57cb
Update ffmpeg.json
Sibras Jul 28, 2024
2103055
Merge branch 'master' of https://github.com/microsoft/vcpkg into ffmpeg7
MonicaLiu0311 Aug 1, 2024
4e5b531
remove port-version
MonicaLiu0311 Aug 2, 2024
c2f3437
update git-tree
MonicaLiu0311 Aug 2, 2024
0ea67f8
format
MonicaLiu0311 Aug 2, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup
  • Loading branch information
Sibras committed Apr 7, 2024
commit 71dfa2fcd148179deacc693d7dd850e96ff0152b
4 changes: 2 additions & 2 deletions ports/ffmpeg/0024-fix-osx-host-c11.patch
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ index 4f5353f84b..dd9147c677 100755
add_host_cppflags -D_ISOC11_SOURCE
-check_host_cflags_cc -std=$stdc ctype.h "__STDC_VERSION__ >= 201112L" ||
- check_host_cflags_cc -std=c11 ctype.h "__STDC_VERSION__ >= 201112L" || die "Host compiler lacks C11 support"
+check_host_cflags_cc -std=$stdc stdio.h "__STDC_VERSION__ >= 201112L" ||
+ check_host_cflags_cc -std=c11 stdio.h "__STDC_VERSION__ >= 201112L" || die "Host compiler lacks C11 support"
+check_host_cflags_cc -std=$stdc ctype.h "__STDC_VERSION__ >= 201112L" ||
+ check_host_cflags_cc -std=c11 ctype.h "__STDC_VERSION__ >= 201112L"

check_host_cflags -Wall
check_host_cflags $host_cflags_speed
Expand Down