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

Unified Diff: source/libvpx/vpx_dsp/arm/save_reg_neon.asm

Issue 1302353004: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 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
« no previous file with comments | « source/libvpx/vpx_dsp/arm/idct8x8_add_neon.c ('k') | source/libvpx/vpx_dsp/arm/vpx_convolve8_avg_neon.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/libvpx/vpx_dsp/arm/save_reg_neon.asm
diff --git a/source/libvpx/vp9/common/arm/neon/vp9_save_reg_neon.asm b/source/libvpx/vpx_dsp/arm/save_reg_neon.asm
similarity index 88%
rename from source/libvpx/vp9/common/arm/neon/vp9_save_reg_neon.asm
rename to source/libvpx/vpx_dsp/arm/save_reg_neon.asm
index 71c3e7077c0f40139c67ba4a6e0c6ce8d6748749..c9ca10801df49cdbd00f70dc21b51da99cc3d194 100644
--- a/source/libvpx/vp9/common/arm/neon/vp9_save_reg_neon.asm
+++ b/source/libvpx/vpx_dsp/arm/save_reg_neon.asm
@@ -9,8 +9,8 @@
;
- EXPORT |vp9_push_neon|
- EXPORT |vp9_pop_neon|
+ EXPORT |vpx_push_neon|
+ EXPORT |vpx_pop_neon|
ARM
REQUIRE8
@@ -18,14 +18,14 @@
AREA ||.text||, CODE, READONLY, ALIGN=2
-|vp9_push_neon| PROC
+|vpx_push_neon| PROC
vst1.i64 {d8, d9, d10, d11}, [r0]!
vst1.i64 {d12, d13, d14, d15}, [r0]!
bx lr
ENDP
-|vp9_pop_neon| PROC
+|vpx_pop_neon| PROC
vld1.i64 {d8, d9, d10, d11}, [r0]!
vld1.i64 {d12, d13, d14, d15}, [r0]!
bx lr
« no previous file with comments | « source/libvpx/vpx_dsp/arm/idct8x8_add_neon.c ('k') | source/libvpx/vpx_dsp/arm/vpx_convolve8_avg_neon.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698