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

Unified Diff: source/libvpx/vpx_dsp/arm/idct16x16_add_neon.c

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/idct16x16_add_neon.asm ('k') | source/libvpx/vpx_dsp/arm/idct16x16_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/idct16x16_add_neon.c
diff --git a/source/libvpx/vpx_dsp/arm/idct16x16_add_neon.c b/source/libvpx/vpx_dsp/arm/idct16x16_add_neon.c
index 545388ae654f585c42a02d6c11968a72cd07c672..651ebb21f9967d4ac37380f403e7907ce8f3a2d9 100644
--- a/source/libvpx/vpx_dsp/arm/idct16x16_add_neon.c
+++ b/source/libvpx/vpx_dsp/arm/idct16x16_add_neon.c
@@ -82,7 +82,7 @@ static INLINE void TRANSPOSE8X8(
return;
}
-void vp9_idct16x16_256_add_neon_pass1(
+void vpx_idct16x16_256_add_neon_pass1(
int16_t *in,
int16_t *out,
int output_stride) {
@@ -320,7 +320,7 @@ void vp9_idct16x16_256_add_neon_pass1(
return;
}
-void vp9_idct16x16_256_add_neon_pass2(
+void vpx_idct16x16_256_add_neon_pass2(
int16_t *src,
int16_t *out,
int16_t *pass1Output,
@@ -879,7 +879,7 @@ void vp9_idct16x16_256_add_neon_pass2(
return;
}
-void vp9_idct16x16_10_add_neon_pass1(
+void vpx_idct16x16_10_add_neon_pass1(
int16_t *in,
int16_t *out,
int output_stride) {
@@ -1017,7 +1017,7 @@ void vp9_idct16x16_10_add_neon_pass1(
return;
}
-void vp9_idct16x16_10_add_neon_pass2(
+void vpx_idct16x16_10_add_neon_pass2(
int16_t *src,
int16_t *out,
int16_t *pass1Output,
« no previous file with comments | « source/libvpx/vpx_dsp/arm/idct16x16_add_neon.asm ('k') | source/libvpx/vpx_dsp/arm/idct16x16_neon.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698