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

Unified Diff: source/config/linux/arm-neon-cpu-detect/vp9_rtcd.h

Issue 23493010: libvpx: Pull from upstream (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 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 | « libvpx_srcs_arm_neon_cpu_detect.gypi ('k') | source/config/linux/arm-neon/vp9_rtcd.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/config/linux/arm-neon-cpu-detect/vp9_rtcd.h
===================================================================
--- source/config/linux/arm-neon-cpu-detect/vp9_rtcd.h (revision 219847)
+++ source/config/linux/arm-neon-cpu-detect/vp9_rtcd.h (working copy)
@@ -302,7 +302,8 @@
RTCD_EXTERN void (*vp9_short_idct10_8x8_add)(int16_t *input, uint8_t *dest, int dest_stride);
void vp9_short_idct16x16_1_add_c(int16_t *input, uint8_t *dest, int dest_stride);
-#define vp9_short_idct16x16_1_add vp9_short_idct16x16_1_add_c
+void vp9_short_idct16x16_1_add_neon(int16_t *input, uint8_t *dest, int dest_stride);
+RTCD_EXTERN void (*vp9_short_idct16x16_1_add)(int16_t *input, uint8_t *dest, int dest_stride);
void vp9_short_idct16x16_add_c(int16_t *input, uint8_t *dest, int dest_stride);
void vp9_short_idct16x16_add_neon(int16_t *input, uint8_t *dest, int dest_stride);
@@ -476,6 +477,8 @@
vp9_short_idct10_8x8_add = vp9_short_idct10_8x8_add_c;
if (flags & HAS_NEON) vp9_short_idct10_8x8_add = vp9_short_idct10_8x8_add_neon;
+ vp9_short_idct16x16_1_add = vp9_short_idct16x16_1_add_c;
+ if (flags & HAS_NEON) vp9_short_idct16x16_1_add = vp9_short_idct16x16_1_add_neon;
vp9_short_idct16x16_add = vp9_short_idct16x16_add_c;
if (flags & HAS_NEON) vp9_short_idct16x16_add = vp9_short_idct16x16_add_neon;
« no previous file with comments | « libvpx_srcs_arm_neon_cpu_detect.gypi ('k') | source/config/linux/arm-neon/vp9_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698