0

Roll src/third_party/libvpx/source/libvpx/ 433577ae3..c35f3e9e3 (14 commits)

433577ae31..c35f3e9e35

$ git log 433577ae3..c35f3e9e3 --date=short --no-merges --format='%ad %ae %s'
2024-01-31 jonathan.wright Cosmetic: Refactor Arm Neon i8mm convolution functions
2024-01-30 jonathan.wright Refactor Arm Neon DotProd convolution functions
2024-01-31 jianj Rewrite ext RC test
2024-01-31 jianj Ext RC: remove gop_info parameter
2024-01-31 jianj vp9: Set VPX_FRAME_IS_INVISIBLE for no show frame
2024-01-30 jianj Allow external RC to control key frame
2024-01-30 jianj Move vp9_estimate_qp_gop to vp9_tpl_model.c
2024-01-30 jianj Fix gf group index used in TPL pass for WebM RC
2024-01-29 jzern vp9_scale_and_extend_frame_ssse3: fix uv width/height
2024-01-29 jzern vp9_encoder.c: make vp9_svc_twostage_scale static
2024-01-29 jzern vp9_scale_references: condense hbd #if
2024-01-04 jonathan.wright Simplify Armv8.4 DotProd correction constant computation
2024-01-28 jonathan.wright Move Neon dotprod and i8mm convolution kernels into .c files
2024-01-29 jonathan.wright Merge Arm Neon dotprod and i8mm convolution files

Created with:
  roll-dep src/third_party/libvpx/source/libvpx
R=eugene@chromium.org,jzern@google.com

Bug: b:308446709
Change-Id: Ib06bc99ee88611a390c67a307da95fd5318c4cb4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5263186
Reviewed-by: Eugene Zemtsov <eugene@chromium.org>
Commit-Queue: Wan-Teh Chang <wtc@google.com>
Cr-Commit-Position: refs/heads/main@{#1255858}
This commit is contained in:
Wan-Teh Chang
2024-02-03 01:06:42 +00:00
committed by Chromium LUCI CQ
parent ecd9b4e5cb
commit 01f76d5441
5 changed files with 6 additions and 10 deletions

2
DEPS

@ -1531,7 +1531,7 @@ deps = {
},
'src/third_party/libvpx/source/libvpx':
Var('chromium_git') + '/webm/libvpx.git' + '@' + '433577ae317ac3c9f9f6efe0e22de8e2fa7b9e58',
Var('chromium_git') + '/webm/libvpx.git' + '@' + 'c35f3e9e3512d0012180ad8de8834d8813a80b73',
'src/third_party/libwebm/source':
Var('chromium_git') + '/webm/libwebm.git' + '@' + 'e4fbea0c9751ae8aa86629b197a28d8276a2b0da',

@ -1,7 +1,7 @@
Name: libvpx
URL: https://chromium.googlesource.com/webm/libvpx
Version: N/A
Revision: 433577ae317ac3c9f9f6efe0e22de8e2fa7b9e58
Revision: c35f3e9e3512d0012180ad8de8834d8813a80b73
CPEPrefix: cpe:/a:webmproject:libvpx:1.14.0
License: BSD
License File: source/libvpx/LICENSE

@ -2660,11 +2660,9 @@ libvpx_srcs_arm64_neon_dotprod = [
"//third_party/libvpx/source/libvpx/vpx_dsp/arm/sse_neon_dotprod.c",
"//third_party/libvpx/source/libvpx/vpx_dsp/arm/variance_neon_dotprod.c",
"//third_party/libvpx/source/libvpx/vpx_dsp/arm/vpx_convolve8_neon_dotprod.c",
"//third_party/libvpx/source/libvpx/vpx_dsp/arm/vpx_convolve_neon_dotprod.c",
]
libvpx_srcs_arm64_neon_i8mm = [
"//third_party/libvpx/source/libvpx/vpx_dsp/arm/vpx_convolve8_neon_i8mm.c",
"//third_party/libvpx/source/libvpx/vpx_dsp/arm/vpx_convolve_neon_i8mm.c",
]
libvpx_srcs_arm64_sve = []
libvpx_srcs_arm_neon_highbd = [
@ -3595,11 +3593,9 @@ libvpx_srcs_arm64_highbd_neon_dotprod = [
"//third_party/libvpx/source/libvpx/vpx_dsp/arm/sse_neon_dotprod.c",
"//third_party/libvpx/source/libvpx/vpx_dsp/arm/variance_neon_dotprod.c",
"//third_party/libvpx/source/libvpx/vpx_dsp/arm/vpx_convolve8_neon_dotprod.c",
"//third_party/libvpx/source/libvpx/vpx_dsp/arm/vpx_convolve_neon_dotprod.c",
]
libvpx_srcs_arm64_highbd_neon_i8mm = [
"//third_party/libvpx/source/libvpx/vpx_dsp/arm/vpx_convolve8_neon_i8mm.c",
"//third_party/libvpx/source/libvpx/vpx_dsp/arm/vpx_convolve_neon_i8mm.c",
]
libvpx_srcs_arm64_highbd_sve =
[ "//third_party/libvpx/source/libvpx/vpx_dsp/arm/highbd_variance_sve.c" ]

@ -2,8 +2,8 @@
#define VERSION_MAJOR 1
#define VERSION_MINOR 14
#define VERSION_PATCH 0
#define VERSION_EXTRA "84-g433577ae3"
#define VERSION_EXTRA "98-gc35f3e9e3"
#define VERSION_PACKED \
((VERSION_MAJOR << 16) | (VERSION_MINOR << 8) | (VERSION_PATCH))
#define VERSION_STRING_NOSP "v1.14.0-84-g433577ae3"
#define VERSION_STRING " v1.14.0-84-g433577ae3"
#define VERSION_STRING_NOSP "v1.14.0-98-gc35f3e9e3"
#define VERSION_STRING " v1.14.0-98-gc35f3e9e3"