Skip to content

Commit 31c9bbb

Browse files
YifanYuan3facebook-github-bot
authored andcommitted
upgrade libs verion (#211)
Summary: Pull Request resolved: #211 as title Reviewed By: charles-typ Differential Revision: D81461842 fbshipit-source-id: ada51524cd0576c10b5d4951be7b3afd0d00bbcb
1 parent 4b2ad51 commit 31c9bbb

File tree

3 files changed

+6
-20
lines changed

3 files changed

+6
-20
lines changed

packages/video_transcode_bench/0001-ffmpeg.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
diff --git a/libavfilter/vf_libvmaf.c b/libavfilter/vf_libvmaf.c
2-
index 2c99d792af..1d5745bf6b 100644
2+
index 10d5b7f59b..d7b2550230 100644
33
--- a/libavfilter/vf_libvmaf.c
44
+++ b/libavfilter/vf_libvmaf.c
55
@@ -61,6 +61,7 @@ typedef struct LIBVMAFContext {
@@ -17,11 +17,11 @@ index 2c99d792af..1d5745bf6b 100644
1717
+ {"aom_ctc", "Set the options for aom_ctc v1.0", OFFSET(aom_ctc), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS},
1818
{ NULL }
1919
};
20-
20+
2121
@@ -441,6 +443,15 @@ static av_cold int init(AVFilterContext *ctx)
2222
if (err)
2323
return AVERROR(EINVAL);
24-
24+
2525
+ if (s->aom_ctc) {
2626
+ av_free(s->model_cfg);
2727
+ av_free(s->feature_cfg);

packages/video_transcode_bench/0002-ffmpeg.patch

Lines changed: 0 additions & 13 deletions
This file was deleted.

packages/video_transcode_bench/install_video_transcode_bench.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ declare -A REPOS=(
1818

1919
declare -A TAGS=(
2020
['aom']='v3.8.2'
21-
['ffmpeg']='n7.0.1'
22-
['SVT-AV1']='v3.1.0'
21+
['ffmpeg']='n8.0'
22+
['SVT-AV1']='v3.1.2'
2323
['vmaf']='v3.0.0'
2424
['aom-testing']='81b0dbfc2e357518c23071eb44860ed8637402c2'
25-
['x264']='570f6c70808287fc78e3f8f5372a095ec6ef7878'
25+
['x264']='b35605ace3ddf7c1a5d67a2eb553f034aef41d55'
2626
)
2727

2828
##################### SYS CONFIG AND DEPS #########################
@@ -146,7 +146,6 @@ build_ffmpeg()
146146
clone $lib || echo "Failed to clone $lib"
147147
cd "$lib" || exit
148148
git apply "${BPKGS_FFMPEG_ROOT}/0001-ffmpeg.patch"
149-
git apply "${BPKGS_FFMPEG_ROOT}/0002-ffmpeg.patch"
150149
mkdir -p _build && cd _build || exit
151150
if [ -v PKG_CONFIG_PATH ]; then
152151
PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$FFMPEG_BUILD/lib/pkgconfig:$FFMPEG_BUILD/lib64/pkgconfig:$FFMPEG_BUILD/lib/pkgconfig:$FFMPEG_BUILD/lib/x86_64-linux-gnu/pkgconfig:$FFMPEG_BUILD/lib/aarch64-linux-gnu/pkgconfig \

0 commit comments

Comments
 (0)