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

Side by Side 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, 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 unified diff | Download patch | Annotate | Revision Log
« 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #ifndef VP9_RTCD_H_ 1 #ifndef VP9_RTCD_H_
2 #define VP9_RTCD_H_ 2 #define VP9_RTCD_H_
3 3
4 #ifdef RTCD_C 4 #ifdef RTCD_C
5 #define RTCD_EXTERN 5 #define RTCD_EXTERN
6 #else 6 #else
7 #define RTCD_EXTERN extern 7 #define RTCD_EXTERN extern
8 #endif 8 #endif
9 9
10 /* 10 /*
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 295
296 void vp9_short_idct8x8_add_c(int16_t *input, uint8_t *dest, int dest_stride); 296 void vp9_short_idct8x8_add_c(int16_t *input, uint8_t *dest, int dest_stride);
297 void vp9_short_idct8x8_add_neon(int16_t *input, uint8_t *dest, int dest_stride); 297 void vp9_short_idct8x8_add_neon(int16_t *input, uint8_t *dest, int dest_stride);
298 RTCD_EXTERN void (*vp9_short_idct8x8_add)(int16_t *input, uint8_t *dest, int des t_stride); 298 RTCD_EXTERN void (*vp9_short_idct8x8_add)(int16_t *input, uint8_t *dest, int des t_stride);
299 299
300 void vp9_short_idct10_8x8_add_c(int16_t *input, uint8_t *dest, int dest_stride); 300 void vp9_short_idct10_8x8_add_c(int16_t *input, uint8_t *dest, int dest_stride);
301 void vp9_short_idct10_8x8_add_neon(int16_t *input, uint8_t *dest, int dest_strid e); 301 void vp9_short_idct10_8x8_add_neon(int16_t *input, uint8_t *dest, int dest_strid e);
302 RTCD_EXTERN void (*vp9_short_idct10_8x8_add)(int16_t *input, uint8_t *dest, int dest_stride); 302 RTCD_EXTERN void (*vp9_short_idct10_8x8_add)(int16_t *input, uint8_t *dest, int dest_stride);
303 303
304 void vp9_short_idct16x16_1_add_c(int16_t *input, uint8_t *dest, int dest_stride) ; 304 void vp9_short_idct16x16_1_add_c(int16_t *input, uint8_t *dest, int dest_stride) ;
305 #define vp9_short_idct16x16_1_add vp9_short_idct16x16_1_add_c 305 void vp9_short_idct16x16_1_add_neon(int16_t *input, uint8_t *dest, int dest_stri de);
306 RTCD_EXTERN void (*vp9_short_idct16x16_1_add)(int16_t *input, uint8_t *dest, int dest_stride);
306 307
307 void vp9_short_idct16x16_add_c(int16_t *input, uint8_t *dest, int dest_stride); 308 void vp9_short_idct16x16_add_c(int16_t *input, uint8_t *dest, int dest_stride);
308 void vp9_short_idct16x16_add_neon(int16_t *input, uint8_t *dest, int dest_stride ); 309 void vp9_short_idct16x16_add_neon(int16_t *input, uint8_t *dest, int dest_stride );
309 RTCD_EXTERN void (*vp9_short_idct16x16_add)(int16_t *input, uint8_t *dest, int d est_stride); 310 RTCD_EXTERN void (*vp9_short_idct16x16_add)(int16_t *input, uint8_t *dest, int d est_stride);
310 311
311 void vp9_short_idct10_16x16_add_c(int16_t *input, uint8_t *dest, int dest_stride ); 312 void vp9_short_idct10_16x16_add_c(int16_t *input, uint8_t *dest, int dest_stride );
312 void vp9_short_idct10_16x16_add_neon(int16_t *input, uint8_t *dest, int dest_str ide); 313 void vp9_short_idct10_16x16_add_neon(int16_t *input, uint8_t *dest, int dest_str ide);
313 RTCD_EXTERN void (*vp9_short_idct10_16x16_add)(int16_t *input, uint8_t *dest, in t dest_stride); 314 RTCD_EXTERN void (*vp9_short_idct10_16x16_add)(int16_t *input, uint8_t *dest, in t dest_stride);
314 315
315 void vp9_short_idct32x32_add_c(int16_t *input, uint8_t *dest, int dest_stride); 316 void vp9_short_idct32x32_add_c(int16_t *input, uint8_t *dest, int dest_stride);
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 470
470 vp9_short_idct8x8_1_add = vp9_short_idct8x8_1_add_c; 471 vp9_short_idct8x8_1_add = vp9_short_idct8x8_1_add_c;
471 if (flags & HAS_NEON) vp9_short_idct8x8_1_add = vp9_short_idct8x8_1_add_neon ; 472 if (flags & HAS_NEON) vp9_short_idct8x8_1_add = vp9_short_idct8x8_1_add_neon ;
472 473
473 vp9_short_idct8x8_add = vp9_short_idct8x8_add_c; 474 vp9_short_idct8x8_add = vp9_short_idct8x8_add_c;
474 if (flags & HAS_NEON) vp9_short_idct8x8_add = vp9_short_idct8x8_add_neon; 475 if (flags & HAS_NEON) vp9_short_idct8x8_add = vp9_short_idct8x8_add_neon;
475 476
476 vp9_short_idct10_8x8_add = vp9_short_idct10_8x8_add_c; 477 vp9_short_idct10_8x8_add = vp9_short_idct10_8x8_add_c;
477 if (flags & HAS_NEON) vp9_short_idct10_8x8_add = vp9_short_idct10_8x8_add_ne on; 478 if (flags & HAS_NEON) vp9_short_idct10_8x8_add = vp9_short_idct10_8x8_add_ne on;
478 479
480 vp9_short_idct16x16_1_add = vp9_short_idct16x16_1_add_c;
481 if (flags & HAS_NEON) vp9_short_idct16x16_1_add = vp9_short_idct16x16_1_add_ neon;
479 482
480 vp9_short_idct16x16_add = vp9_short_idct16x16_add_c; 483 vp9_short_idct16x16_add = vp9_short_idct16x16_add_c;
481 if (flags & HAS_NEON) vp9_short_idct16x16_add = vp9_short_idct16x16_add_neon ; 484 if (flags & HAS_NEON) vp9_short_idct16x16_add = vp9_short_idct16x16_add_neon ;
482 485
483 vp9_short_idct10_16x16_add = vp9_short_idct10_16x16_add_c; 486 vp9_short_idct10_16x16_add = vp9_short_idct10_16x16_add_c;
484 if (flags & HAS_NEON) vp9_short_idct10_16x16_add = vp9_short_idct10_16x16_ad d_neon; 487 if (flags & HAS_NEON) vp9_short_idct10_16x16_add = vp9_short_idct10_16x16_ad d_neon;
485 } 488 }
486 #endif 489 #endif
487 #endif 490 #endif
OLDNEW
« 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