Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/BtbN/FFmpeg-Builds
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinEesmaa committed Jan 11, 2025
2 parents 56da654 + e13f9ee commit 3e3fc55
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,8 @@ jobs:
RELDATE="$(date +'%Y-%m-%d %H:%M')"
NAME="Auto-Build $RELDATE"
TAGNAME="autobuild-$(date +'%Y-%m-%d-%H-%M')"
gh release create "$TAGNAME" --target "master" --title "$NAME" artifacts/*.{zip,tar.xz}
(cd artifacts && sha256sum *.{zip,tar.xz} > checksums.sha256)
gh release create "$TAGNAME" --target "master" --title "$NAME" artifacts/*.{zip,tar.xz} artifacts/checksums.*
echo "tag_name=${TAGNAME}" >> $GITHUB_OUTPUT
echo "rel_date=${RELDATE}" >> $GITHUB_OUTPUT
env:
Expand All @@ -293,6 +294,7 @@ jobs:
shopt -s nullglob
mkdir latest_artifacts
./util/repack_latest.sh latest_artifacts artifacts/*.{zip,tar.xz}
(cd latest_artifacts && sha256sum *.{zip,tar.xz} > checksums.sha256)
NAME="Latest Auto-Build (${{ steps.create_release.outputs.rel_date }})"
TAGNAME="latest"
gh release delete --cleanup-tag --yes "$TAGNAME" || true
Expand Down
4 changes: 1 addition & 3 deletions scripts.d/50-svtav1.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

SCRIPT_REPO="https://gitlab.com/AOMediaCodec/SVT-AV1.git"
SCRIPT_COMMIT="783c3f1f28957040bed221f9fe24a437d2222547"
SCRIPT_COMMIT="39525fd6f1046f1d6400b291f5fb2a8c0ad054ad"

ffbuild_enabled() {
[[ $TARGET == win32 ]] && return -1
Expand All @@ -15,8 +15,6 @@ ffbuild_dockerdl() {
ffbuild_dockerbuild() {
mkdir build && cd build

export CFLAGS="$CFLAGS -Dav1_cospi_arr_s32_data=svt_av1_cospi_arr_s32_data"

cmake -DCMAKE_TOOLCHAIN_FILE="$FFBUILD_CMAKE_TOOLCHAIN" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="$FFBUILD_PREFIX" -DBUILD_SHARED_LIBS=OFF -DBUILD_TESTING=OFF -DBUILD_APPS=OFF -DENABLE_AVX512=ON ..
make -j$(nproc)
make install
Expand Down

0 comments on commit 3e3fc55

Please sign in to comment.