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

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

Issue 290653003: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 7 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
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 #ifdef __cplusplus 10 #ifdef __cplusplus
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 RTCD_EXTERN void (*vp9_idct32x32_34_add)(const int16_t *input, uint8_t *dest, in t dest_stride); 272 RTCD_EXTERN void (*vp9_idct32x32_34_add)(const int16_t *input, uint8_t *dest, in t dest_stride);
273 273
274 void vp9_idct4x4_16_add_c(const int16_t *input, uint8_t *dest, int dest_stride); 274 void vp9_idct4x4_16_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
275 void vp9_idct4x4_16_add_neon(const int16_t *input, uint8_t *dest, int dest_strid e); 275 void vp9_idct4x4_16_add_neon(const int16_t *input, uint8_t *dest, int dest_strid e);
276 RTCD_EXTERN void (*vp9_idct4x4_16_add)(const int16_t *input, uint8_t *dest, int dest_stride); 276 RTCD_EXTERN void (*vp9_idct4x4_16_add)(const int16_t *input, uint8_t *dest, int dest_stride);
277 277
278 void vp9_idct4x4_1_add_c(const int16_t *input, uint8_t *dest, int dest_stride); 278 void vp9_idct4x4_1_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
279 void vp9_idct4x4_1_add_neon(const int16_t *input, uint8_t *dest, int dest_stride ); 279 void vp9_idct4x4_1_add_neon(const int16_t *input, uint8_t *dest, int dest_stride );
280 RTCD_EXTERN void (*vp9_idct4x4_1_add)(const int16_t *input, uint8_t *dest, int d est_stride); 280 RTCD_EXTERN void (*vp9_idct4x4_1_add)(const int16_t *input, uint8_t *dest, int d est_stride);
281 281
282 void vp9_idct8x8_10_add_c(const int16_t *input, uint8_t *dest, int dest_stride); 282 void vp9_idct8x8_12_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
283 void vp9_idct8x8_10_add_neon(const int16_t *input, uint8_t *dest, int dest_strid e); 283 void vp9_idct8x8_12_add_neon(const int16_t *input, uint8_t *dest, int dest_strid e);
284 RTCD_EXTERN void (*vp9_idct8x8_10_add)(const int16_t *input, uint8_t *dest, int dest_stride); 284 RTCD_EXTERN void (*vp9_idct8x8_12_add)(const int16_t *input, uint8_t *dest, int dest_stride);
285 285
286 void vp9_idct8x8_1_add_c(const int16_t *input, uint8_t *dest, int dest_stride); 286 void vp9_idct8x8_1_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
287 void vp9_idct8x8_1_add_neon(const int16_t *input, uint8_t *dest, int dest_stride ); 287 void vp9_idct8x8_1_add_neon(const int16_t *input, uint8_t *dest, int dest_stride );
288 RTCD_EXTERN void (*vp9_idct8x8_1_add)(const int16_t *input, uint8_t *dest, int d est_stride); 288 RTCD_EXTERN void (*vp9_idct8x8_1_add)(const int16_t *input, uint8_t *dest, int d est_stride);
289 289
290 void vp9_idct8x8_64_add_c(const int16_t *input, uint8_t *dest, int dest_stride); 290 void vp9_idct8x8_64_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
291 void vp9_idct8x8_64_add_neon(const int16_t *input, uint8_t *dest, int dest_strid e); 291 void vp9_idct8x8_64_add_neon(const int16_t *input, uint8_t *dest, int dest_strid e);
292 RTCD_EXTERN void (*vp9_idct8x8_64_add)(const int16_t *input, uint8_t *dest, int dest_stride); 292 RTCD_EXTERN void (*vp9_idct8x8_64_add)(const int16_t *input, uint8_t *dest, int dest_stride);
293 293
294 void vp9_iht16x16_256_add_c(const int16_t *input, uint8_t *output, int pitch, in t tx_type); 294 void vp9_iht16x16_256_add_c(const int16_t *input, uint8_t *output, int pitch, in t tx_type);
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after
738 vp9_idct32x32_1024_add = vp9_idct32x32_1024_add_c; 738 vp9_idct32x32_1024_add = vp9_idct32x32_1024_add_c;
739 if (flags & HAS_NEON) vp9_idct32x32_1024_add = vp9_idct32x32_1024_add_neon; 739 if (flags & HAS_NEON) vp9_idct32x32_1024_add = vp9_idct32x32_1024_add_neon;
740 vp9_idct32x32_1_add = vp9_idct32x32_1_add_c; 740 vp9_idct32x32_1_add = vp9_idct32x32_1_add_c;
741 if (flags & HAS_NEON) vp9_idct32x32_1_add = vp9_idct32x32_1_add_neon; 741 if (flags & HAS_NEON) vp9_idct32x32_1_add = vp9_idct32x32_1_add_neon;
742 vp9_idct32x32_34_add = vp9_idct32x32_34_add_c; 742 vp9_idct32x32_34_add = vp9_idct32x32_34_add_c;
743 if (flags & HAS_NEON) vp9_idct32x32_34_add = vp9_idct32x32_1024_add_neon; 743 if (flags & HAS_NEON) vp9_idct32x32_34_add = vp9_idct32x32_1024_add_neon;
744 vp9_idct4x4_16_add = vp9_idct4x4_16_add_c; 744 vp9_idct4x4_16_add = vp9_idct4x4_16_add_c;
745 if (flags & HAS_NEON) vp9_idct4x4_16_add = vp9_idct4x4_16_add_neon; 745 if (flags & HAS_NEON) vp9_idct4x4_16_add = vp9_idct4x4_16_add_neon;
746 vp9_idct4x4_1_add = vp9_idct4x4_1_add_c; 746 vp9_idct4x4_1_add = vp9_idct4x4_1_add_c;
747 if (flags & HAS_NEON) vp9_idct4x4_1_add = vp9_idct4x4_1_add_neon; 747 if (flags & HAS_NEON) vp9_idct4x4_1_add = vp9_idct4x4_1_add_neon;
748 vp9_idct8x8_10_add = vp9_idct8x8_10_add_c; 748 vp9_idct8x8_12_add = vp9_idct8x8_12_add_c;
749 if (flags & HAS_NEON) vp9_idct8x8_10_add = vp9_idct8x8_10_add_neon; 749 if (flags & HAS_NEON) vp9_idct8x8_12_add = vp9_idct8x8_12_add_neon;
750 vp9_idct8x8_1_add = vp9_idct8x8_1_add_c; 750 vp9_idct8x8_1_add = vp9_idct8x8_1_add_c;
751 if (flags & HAS_NEON) vp9_idct8x8_1_add = vp9_idct8x8_1_add_neon; 751 if (flags & HAS_NEON) vp9_idct8x8_1_add = vp9_idct8x8_1_add_neon;
752 vp9_idct8x8_64_add = vp9_idct8x8_64_add_c; 752 vp9_idct8x8_64_add = vp9_idct8x8_64_add_c;
753 if (flags & HAS_NEON) vp9_idct8x8_64_add = vp9_idct8x8_64_add_neon; 753 if (flags & HAS_NEON) vp9_idct8x8_64_add = vp9_idct8x8_64_add_neon;
754 vp9_iht4x4_16_add = vp9_iht4x4_16_add_c; 754 vp9_iht4x4_16_add = vp9_iht4x4_16_add_c;
755 if (flags & HAS_NEON) vp9_iht4x4_16_add = vp9_iht4x4_16_add_neon; 755 if (flags & HAS_NEON) vp9_iht4x4_16_add = vp9_iht4x4_16_add_neon;
756 vp9_iht8x8_64_add = vp9_iht8x8_64_add_c; 756 vp9_iht8x8_64_add = vp9_iht8x8_64_add_c;
757 if (flags & HAS_NEON) vp9_iht8x8_64_add = vp9_iht8x8_64_add_neon; 757 if (flags & HAS_NEON) vp9_iht8x8_64_add = vp9_iht8x8_64_add_neon;
758 vp9_lpf_horizontal_16 = vp9_lpf_horizontal_16_c; 758 vp9_lpf_horizontal_16 = vp9_lpf_horizontal_16_c;
759 if (flags & HAS_NEON) vp9_lpf_horizontal_16 = vp9_lpf_horizontal_16_neon; 759 if (flags & HAS_NEON) vp9_lpf_horizontal_16 = vp9_lpf_horizontal_16_neon;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 vp9_v_predictor_8x8 = vp9_v_predictor_8x8_c; 794 vp9_v_predictor_8x8 = vp9_v_predictor_8x8_c;
795 if (flags & HAS_NEON) vp9_v_predictor_8x8 = vp9_v_predictor_8x8_neon; 795 if (flags & HAS_NEON) vp9_v_predictor_8x8 = vp9_v_predictor_8x8_neon;
796 } 796 }
797 #endif 797 #endif
798 798
799 #ifdef __cplusplus 799 #ifdef __cplusplus
800 } // extern "C" 800 } // extern "C"
801 #endif 801 #endif
802 802
803 #endif 803 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698