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

Unified Diff: source/libvpx/vp8/encoder/arm/armv6/vp8_mse16x16_armv6.asm

Issue 7671004: Update libvpx snapshot to v0.9.7-p1 (Cayuga). (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
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: source/libvpx/vp8/encoder/arm/armv6/vp8_mse16x16_armv6.asm
===================================================================
--- source/libvpx/vp8/encoder/arm/armv6/vp8_mse16x16_armv6.asm (revision 96967)
+++ source/libvpx/vp8/encoder/arm/armv6/vp8_mse16x16_armv6.asm (working copy)
@@ -27,8 +27,11 @@
|vp8_mse16x16_armv6| PROC
push {r4-r9, lr}
+
+ pld [r0, r1, lsl #0]
+ pld [r2, r3, lsl #0]
+
mov r12, #16 ; set loop counter to 16 (=block height)
-
mov r4, #0 ; initialize sse = 0
loop
@@ -39,8 +42,10 @@
mov lr, #0 ; constant zero
usub8 r8, r5, r6 ; calculate difference
+ pld [r0, r1, lsl #1]
sel r7, r8, lr ; select bytes with positive difference
usub8 r9, r6, r5 ; calculate difference with reversed operands
+ pld [r2, r3, lsl #1]
sel r8, r9, lr ; select bytes with negative difference
; calculate partial sums
« no previous file with comments | « source/libvpx/vp8/encoder/arm/arm_csystemdependent.c ('k') | source/libvpx/vp8/encoder/arm/armv6/vp8_sad16x16_armv6.asm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698