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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ Currently FFmpeg 9.0.1 is built with the following packages enabled for all plat
- opus 1.6.1
- dav1d 1.5.4
- libsvtav1 4.2.0
- vpx 1.16.0
- vpx 1.17.0
- png 1.6.58
- webp 1.6.0
- libvmaf 3.2.0
- libvmaf 3.2.1
- x264 b35605ace3ddf7c1a5d67a2eb553f034aef41d55 (except armv7l)
- x265 4.3

Expand Down
14 changes: 7 additions & 7 deletions scripts/pkg.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ def __lt__(self, other):
),
Package(
name="vpx",
source_url="https://github.com/webmproject/libvpx/archive/refs/tags/v1.16.0.tar.gz",
sha256="7a479a3c66b9f5d5542a4c6a1b7d3768a983b1e5c14c60a9396edc9b649e015c",
source_filename="vpx-1.16.0.tar.gz",
source_url="https://github.com/webmproject/libvpx/archive/refs/tags/v1.17.0.tar.gz",
sha256="1020f184046187baa2985dbde38e0691f49c44088bca7a1842b0236c6081dc0a",
source_filename="vpx-1.17.0.tar.gz",
build_arguments=[
"--disable-examples",
"--disable-tools",
Expand All @@ -118,7 +118,7 @@ def __lt__(self, other):
"-DWEBP_BUILD_CWEBP=OFF",
"-DWEBP_BUILD_DWEBP=OFF",
"-DWEBP_BUILD_GIF2WEBP=OFF",
"-DWE[118;1:3uBP_BUILD_IMG2WEBP=OFF",
"-DWEBP_BUILD_IMG2WEBP=OFF",
"-DWEBP_BUILD_VWEBP=OFF",
"-DWEBP_BUILD_WEBPINFO=OFF",
"-DWEBP_BUILD_WEBPMUX=OFF",
Expand All @@ -127,9 +127,9 @@ def __lt__(self, other):
),
Package(
name="libvmaf",
source_url="https://github.com/Netflix/vmaf/archive/refs/tags/v3.2.0.tar.gz",
source_filename="vmaf-3.2.0.tar.gz",
sha256="a28f93f3b4fa65601be324587072e32a6a704a304ba7b1aec9b70b3f709bc1dc",
source_url="https://github.com/Netflix/vmaf/archive/refs/tags/v3.2.1.tar.gz",
source_filename="vmaf-3.2.1.tar.gz",
sha256="5df7386911bc15fd1ca783132528748d219768ae4fc5f8e0b61184f041648092",
build_system="meson",
source_dir="libvmaf",
requires=["nasm"],
Expand Down
Loading