Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2020-02-15 00:48:13 +0300
committerMartin Storsjö <martin@martin.st>2020-02-17 10:00:28 +0300
commitaff9a2105583b33cef55935e62faba3814d12013 (patch)
treeb44097f5b02529bd283bedff773fe9ea80a01f50
parent09d90658f13c87bcc4af03897731901843e57123 (diff)
arm32: cdef: Fix a typo for consistency
The signedness of elements doesn't matter for vsub; match the vsub.i16 next to it.
-rw-r--r--src/arm/32/cdef.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arm/32/cdef.S b/src/arm/32/cdef.S
index 4af9020..ab5a767 100644
--- a/src/arm/32/cdef.S
+++ b/src/arm/32/cdef.S
@@ -324,7 +324,7 @@ endconst
vqsub.u16 q9, \thresh_vec, q9 // clip = imax(0, threshold - (abs(diff) >> shift))
vqsub.u16 q12, \thresh_vec, q12// clip = imax(0, threshold - (abs(diff) >> shift))
vsub.i16 q10, \s1, q0 // diff = p0 - px
- vsub.u16 q13, \s2, q0 // diff = p1 - px
+ vsub.i16 q13, \s2, q0 // diff = p1 - px
vneg.s16 q8, q9 // -clip
vneg.s16 q11, q12 // -clip
vmin.s16 q10, q10, q9 // imin(diff, clip)