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

Unified Diff: source/libvpx/vp9/common/arm/neon/vp9_idct16x16_neon.c

Issue 23530058: libvpx: Pull from upstream (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 years, 3 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/vp8/vp8_cx_iface.c ('k') | source/libvpx/vp9/common/arm/neon/vp9_idct32x32_neon.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/libvpx/vp9/common/arm/neon/vp9_idct16x16_neon.c
===================================================================
--- source/libvpx/vp9/common/arm/neon/vp9_idct16x16_neon.c (revision 223100)
+++ source/libvpx/vp9/common/arm/neon/vp9_idct16x16_neon.c (working copy)
@@ -29,8 +29,8 @@
int16_t skip_adding,
uint8_t *dest,
int dest_stride);
-extern void save_registers();
-extern void restore_registers();
+extern void save_neon_registers();
+extern void restore_neon_registers();
void vp9_short_idct16x16_add_neon(int16_t *input,
@@ -39,7 +39,7 @@
int16_t row_idct_output[16*16] = {0};
// save d8-d15 register values.
- save_registers();
+ save_neon_registers();
/* Parallel idct on the upper 8 rows */
// First pass processes even elements 0, 2, 4, 6, 8, 10, 12, 14 and save the
@@ -102,7 +102,7 @@
dest_stride);
// restore d8-d15 register values.
- restore_registers();
+ restore_neon_registers();
return;
}
@@ -113,7 +113,7 @@
int16_t row_idct_output[16*16] = {0};
// save d8-d15 register values.
- save_registers();
+ save_neon_registers();
/* Parallel idct on the upper 8 rows */
// First pass processes even elements 0, 2, 4, 6, 8, 10, 12, 14 and save the
@@ -163,7 +163,7 @@
dest_stride);
// restore d8-d15 register values.
- restore_registers();
+ restore_neon_registers();
return;
}
« no previous file with comments | « source/libvpx/vp8/vp8_cx_iface.c ('k') | source/libvpx/vp9/common/arm/neon/vp9_idct32x32_neon.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698