Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The builds are provided for several platforms:
Features
--------

Currently FFmpeg 9.0 is built with the following packages enabled for all platforms:
Currently FFmpeg 9.0.1 is built with the following packages enabled for all platforms:

- [lamer](https://github.com/basswood-io/lamer) 3.101.0
- opus 1.6.1
Expand Down
11 changes: 11 additions & 0 deletions scripts/build-ffmpeg.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,17 @@ def main():
pkg.build_arguments.append("--disable-rtcd")
break

# No Intel Mac we target can run AVX-512 (and Rosetta cannot either)
if plat == "Darwin" and not is_arm:
no_avx512 = {
"ffmpeg": "--disable-avx512",
"vpx": "--disable-avx512",
"libsvtav1": "-DENABLE_AVX512=OFF",
}
for pkg in packages:
if pkg.name in no_avx512:
pkg.build_arguments.append(no_avx512[pkg.name])

for package in packages:
builder.build(package, for_builder=package.name == "nasm")

Expand Down
4 changes: 2 additions & 2 deletions scripts/pkg.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ def __lt__(self, other):

ffmpeg_package = Package(
name="ffmpeg",
source_url="https://ffmpeg.org/releases/ffmpeg-9.0.tar.xz",
sha256="7f607a00dd0d28a729d5a4811205812eef01cf6ef6155025febb6f36a9062d52",
source_url="https://ffmpeg.org/releases/ffmpeg-9.0.1.tar.xz",
sha256="cf38e0e28c7e5605942c4a77755349b0145804a397af37eb1fb4c77cb237f635",
)

all_packages: list[Package] = [ffmpeg_package]
Expand Down
Loading