0

Roll src/third_party/dav1d/libdav1d/ f06148e7c..136585101 (20 commits)

f06148e7c7..136585101b

$ git log f06148e7c..136585101 --date=short --no-merges --format='%ad %ae %s'
2021-04-28 wtc Subsample out->p.h correctly in dav1d_apply_grain
2021-03-22 martin arm64: filmgrain: Add NEON implementation of the generate_grain_y function
2021-03-26 martin checkasm: Implement printing of grain lut entries
2021-04-26 martin arm64: filmgrain: Add the missing HIGHBD_DECL_SUFFIX for the fguv functions
2021-04-27 martin Remove a variable that is set but not used
2021-03-16 martin checkasm: filmgrain: Add a padded check for fgy and fguv
2021-03-16 martin checkasm: Extend the padding checker to allow for some amount of overwrite
2021-02-19 martin checkasm: ipred: Use the padded pixel checking function
2021-02-19 martin checkasm: Add macros for allocating and checking padded pixel buffers
2021-04-22 martin x86: Fix writes past the intended area in AVX2 fguv
2021-04-14 jamrial dav1d: add event flags to the decoding process
2021-03-22 martin arm64: filmgrain: Share the prologue of the fgy function
2021-03-15 martin arm64: filmgrain: Add NEON implementation of the fguv function
2021-03-24 martin attributes: Add a CHECK_OFFSET macro for verifying struct offsets
2021-03-21 martin checkasm: filmgrain: Check all overlap combinations in each run
2021-03-20 martin filmgrain: Use the BITDEPTH_MAX macro and round2 helper function
2021-04-02 code CI: Fix asm checks
2021-03-16 martin checkasm: Drop one layer of macro expansion for concatenation
2021-03-12 martin arm64: Add NEON implementation of fgy_32x32xn
2021-03-07 code CI: Add check for illegal instructions

Created with:
  roll-dep src/third_party/dav1d/libdav1d
R=dalecurtis@chromium.org

Bug: 1201074
Change-Id: I67be894a4c4a9ef41fa653fd6a3b27f252299531
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2863934
Reviewed-by: Dale Curtis <dalecurtis@chromium.org>
Commit-Queue: Wan-Teh Chang <wtc@google.com>
Cr-Commit-Position: refs/heads/master@{#878146}
This commit is contained in:
Wan-Teh Chang
2021-05-01 01:27:07 +00:00
committed by Chromium LUCI CQ
parent 1e335849d2
commit 7dca464eca
2 changed files with 3 additions and 1 deletions
DEPS
third_party/dav1d

2
DEPS

@ -840,7 +840,7 @@ deps = {
Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'),
'src/third_party/dav1d/libdav1d':
Var('chromium_git') + '/external/github.com/videolan/dav1d.git' + '@' + 'f06148e7c755098666b9c0ed97a672a51785413a',
Var('chromium_git') + '/external/github.com/videolan/dav1d.git' + '@' + '136585101bd5fa8a07a5c7bf66390439a1c7d387',
'src/third_party/dawn':
Var('dawn_git') + '/dawn.git' + '@' + Var('dawn_revision'),

@ -62,6 +62,7 @@ arm64_asm_sources = [
"libdav1d/src/arm/64/cdef.S",
"libdav1d/src/arm/64/cdef16.S",
"libdav1d/src/arm/64/cdef_tmpl.S",
"libdav1d/src/arm/64/film_grain.S",
"libdav1d/src/arm/64/ipred.S",
"libdav1d/src/arm/64/ipred16.S",
"libdav1d/src/arm/64/itx.S",
@ -80,6 +81,7 @@ arm64_asm_sources = [
arm_template_sources = [
"libdav1d/src/arm/cdef_init_tmpl.c",
"libdav1d/src/arm/film_grain_init_tmpl.c",
"libdav1d/src/arm/ipred_init_tmpl.c",
"libdav1d/src/arm/itx_init_tmpl.c",
"libdav1d/src/arm/loopfilter_init_tmpl.c",