ref: 564482b67ea23ab590530aa3713918d237247736
parent: 3069ab9453b71b248f8355be89f82439aa57756e
author: Martin Storsjö <martin@martin.st>
date: Sun Nov 10 05:59:36 EST 2019
arm: 64: loopfilter: Fix a typo in a macro parameter condition This removes one redundant instruction for loop filters smaller than 16.
--- a/src/arm/64/loopfilter.S
+++ b/src/arm/64/loopfilter.S
@@ -70,7 +70,7 @@
.if \wd >= 6
and v14.16b, v14.16b, v1.16b // fm && wd > 4
.endif
-.if \wd >= 6
+.if \wd >= 16
and v15.16b, v15.16b, v1.16b // fm && wd == 16
.endif