Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(137)

Unified Diff: libvpx/source/libvpx/vp8/common/arm/neon/sixtappredict8x4_neon.asm

Issue 7624054: Revert r97185 "Update libvpx snapshot to v0.9.7-p1 (Cayuga)." (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: libvpx/source/libvpx/vp8/common/arm/neon/sixtappredict8x4_neon.asm
diff --git a/libvpx/source/libvpx/vp8/common/arm/neon/sixtappredict8x4_neon.asm b/libvpx/source/libvpx/vp8/common/arm/neon/sixtappredict8x4_neon.asm
index a57ec015f2c0c7404732cbeded169dd911b79a88..0904f52ca0e9879e8a795c57d19b372f1c9aef03 100644
--- a/libvpx/source/libvpx/vp8/common/arm/neon/sixtappredict8x4_neon.asm
+++ b/libvpx/source/libvpx/vp8/common/arm/neon/sixtappredict8x4_neon.asm
@@ -15,17 +15,6 @@
PRESERVE8
AREA ||.text||, CODE, READONLY, ALIGN=2
-
-filter8_coeff
- DCD 0, 0, 128, 0, 0, 0, 0, 0
- DCD 0, -6, 123, 12, -1, 0, 0, 0
- DCD 2, -11, 108, 36, -8, 1, 0, 0
- DCD 0, -9, 93, 50, -6, 0, 0, 0
- DCD 3, -16, 77, 77, -16, 3, 0, 0
- DCD 0, -6, 50, 93, -9, 0, 0, 0
- DCD 1, -8, 36, 108, -11, 2, 0, 0
- DCD 0, -1, 12, 123, -6, 0, 0, 0
-
; r0 unsigned char *src_ptr,
; r1 int src_pixels_per_line,
; r2 int xoffset,
@@ -36,7 +25,7 @@ filter8_coeff
|vp8_sixtap_predict8x4_neon| PROC
push {r4-r5, lr}
- adr r12, filter8_coeff
+ ldr r12, _filter8_coeff_
ldr r4, [sp, #12] ;load parameters from stack
ldr r5, [sp, #16] ;load parameters from stack
@@ -470,4 +459,16 @@ secondpass_filter8x4_only
;-----------------
+_filter8_coeff_
+ DCD filter8_coeff
+filter8_coeff
+ DCD 0, 0, 128, 0, 0, 0, 0, 0
+ DCD 0, -6, 123, 12, -1, 0, 0, 0
+ DCD 2, -11, 108, 36, -8, 1, 0, 0
+ DCD 0, -9, 93, 50, -6, 0, 0, 0
+ DCD 3, -16, 77, 77, -16, 3, 0, 0
+ DCD 0, -6, 50, 93, -9, 0, 0, 0
+ DCD 1, -8, 36, 108, -11, 2, 0, 0
+ DCD 0, -1, 12, 123, -6, 0, 0, 0
+
END

Powered by Google App Engine
This is Rietveld 408576698