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

Side by Side Diff: third_party/libvpx/source/config/linux/arm-neon-cpu-detect/vpx_dsp_rtcd.h

Issue 2471423002: Roll src/third_party/libvpx/source/libvpx/ 9a032fa26..1961a92a9 (33 commits). (Closed)
Patch Set: comment asm include addition Created 4 years, 1 month 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
OLDNEW
1 #ifndef VPX_DSP_RTCD_H_ 1 #ifndef VPX_DSP_RTCD_H_
2 #define VPX_DSP_RTCD_H_ 2 #define VPX_DSP_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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 330
331 void vpx_idct32x32_135_add_c(const tran_low_t *input, uint8_t *dest, int dest_st ride); 331 void vpx_idct32x32_135_add_c(const tran_low_t *input, uint8_t *dest, int dest_st ride);
332 void vpx_idct32x32_1024_add_neon(const tran_low_t *input, uint8_t *dest, int des t_stride); 332 void vpx_idct32x32_1024_add_neon(const tran_low_t *input, uint8_t *dest, int des t_stride);
333 RTCD_EXTERN void (*vpx_idct32x32_135_add)(const tran_low_t *input, uint8_t *dest , int dest_stride); 333 RTCD_EXTERN void (*vpx_idct32x32_135_add)(const tran_low_t *input, uint8_t *dest , int dest_stride);
334 334
335 void vpx_idct32x32_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stri de); 335 void vpx_idct32x32_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stri de);
336 void vpx_idct32x32_1_add_neon(const tran_low_t *input, uint8_t *dest, int dest_s tride); 336 void vpx_idct32x32_1_add_neon(const tran_low_t *input, uint8_t *dest, int dest_s tride);
337 RTCD_EXTERN void (*vpx_idct32x32_1_add)(const tran_low_t *input, uint8_t *dest, int dest_stride); 337 RTCD_EXTERN void (*vpx_idct32x32_1_add)(const tran_low_t *input, uint8_t *dest, int dest_stride);
338 338
339 void vpx_idct32x32_34_add_c(const tran_low_t *input, uint8_t *dest, int dest_str ide); 339 void vpx_idct32x32_34_add_c(const tran_low_t *input, uint8_t *dest, int dest_str ide);
340 void vpx_idct32x32_1024_add_neon(const tran_low_t *input, uint8_t *dest, int des t_stride); 340 void vpx_idct32x32_34_add_neon(const tran_low_t *input, uint8_t *dest, int dest_ stride);
341 RTCD_EXTERN void (*vpx_idct32x32_34_add)(const tran_low_t *input, uint8_t *dest, int dest_stride); 341 RTCD_EXTERN void (*vpx_idct32x32_34_add)(const tran_low_t *input, uint8_t *dest, int dest_stride);
342 342
343 void vpx_idct4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e); 343 void vpx_idct4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e);
344 void vpx_idct4x4_16_add_neon(const tran_low_t *input, uint8_t *dest, int dest_st ride); 344 void vpx_idct4x4_16_add_neon(const tran_low_t *input, uint8_t *dest, int dest_st ride);
345 RTCD_EXTERN void (*vpx_idct4x4_16_add)(const tran_low_t *input, uint8_t *dest, i nt dest_stride); 345 RTCD_EXTERN void (*vpx_idct4x4_16_add)(const tran_low_t *input, uint8_t *dest, i nt dest_stride);
346 346
347 void vpx_idct4x4_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride ); 347 void vpx_idct4x4_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride );
348 void vpx_idct4x4_1_add_neon(const tran_low_t *input, uint8_t *dest, int dest_str ide); 348 void vpx_idct4x4_1_add_neon(const tran_low_t *input, uint8_t *dest, int dest_str ide);
349 RTCD_EXTERN void (*vpx_idct4x4_1_add)(const tran_low_t *input, uint8_t *dest, in t dest_stride); 349 RTCD_EXTERN void (*vpx_idct4x4_1_add)(const tran_low_t *input, uint8_t *dest, in t dest_stride);
350 350
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after
929 if (flags & HAS_NEON) vpx_idct16x16_1_add = vpx_idct16x16_1_add_neon; 929 if (flags & HAS_NEON) vpx_idct16x16_1_add = vpx_idct16x16_1_add_neon;
930 vpx_idct16x16_256_add = vpx_idct16x16_256_add_c; 930 vpx_idct16x16_256_add = vpx_idct16x16_256_add_c;
931 if (flags & HAS_NEON) vpx_idct16x16_256_add = vpx_idct16x16_256_add_neon; 931 if (flags & HAS_NEON) vpx_idct16x16_256_add = vpx_idct16x16_256_add_neon;
932 vpx_idct32x32_1024_add = vpx_idct32x32_1024_add_c; 932 vpx_idct32x32_1024_add = vpx_idct32x32_1024_add_c;
933 if (flags & HAS_NEON) vpx_idct32x32_1024_add = vpx_idct32x32_1024_add_neon; 933 if (flags & HAS_NEON) vpx_idct32x32_1024_add = vpx_idct32x32_1024_add_neon;
934 vpx_idct32x32_135_add = vpx_idct32x32_135_add_c; 934 vpx_idct32x32_135_add = vpx_idct32x32_135_add_c;
935 if (flags & HAS_NEON) vpx_idct32x32_135_add = vpx_idct32x32_1024_add_neon; 935 if (flags & HAS_NEON) vpx_idct32x32_135_add = vpx_idct32x32_1024_add_neon;
936 vpx_idct32x32_1_add = vpx_idct32x32_1_add_c; 936 vpx_idct32x32_1_add = vpx_idct32x32_1_add_c;
937 if (flags & HAS_NEON) vpx_idct32x32_1_add = vpx_idct32x32_1_add_neon; 937 if (flags & HAS_NEON) vpx_idct32x32_1_add = vpx_idct32x32_1_add_neon;
938 vpx_idct32x32_34_add = vpx_idct32x32_34_add_c; 938 vpx_idct32x32_34_add = vpx_idct32x32_34_add_c;
939 if (flags & HAS_NEON) vpx_idct32x32_34_add = vpx_idct32x32_1024_add_neon; 939 if (flags & HAS_NEON) vpx_idct32x32_34_add = vpx_idct32x32_34_add_neon;
940 vpx_idct4x4_16_add = vpx_idct4x4_16_add_c; 940 vpx_idct4x4_16_add = vpx_idct4x4_16_add_c;
941 if (flags & HAS_NEON) vpx_idct4x4_16_add = vpx_idct4x4_16_add_neon; 941 if (flags & HAS_NEON) vpx_idct4x4_16_add = vpx_idct4x4_16_add_neon;
942 vpx_idct4x4_1_add = vpx_idct4x4_1_add_c; 942 vpx_idct4x4_1_add = vpx_idct4x4_1_add_c;
943 if (flags & HAS_NEON) vpx_idct4x4_1_add = vpx_idct4x4_1_add_neon; 943 if (flags & HAS_NEON) vpx_idct4x4_1_add = vpx_idct4x4_1_add_neon;
944 vpx_idct8x8_12_add = vpx_idct8x8_12_add_c; 944 vpx_idct8x8_12_add = vpx_idct8x8_12_add_c;
945 if (flags & HAS_NEON) vpx_idct8x8_12_add = vpx_idct8x8_12_add_neon; 945 if (flags & HAS_NEON) vpx_idct8x8_12_add = vpx_idct8x8_12_add_neon;
946 vpx_idct8x8_1_add = vpx_idct8x8_1_add_c; 946 vpx_idct8x8_1_add = vpx_idct8x8_1_add_c;
947 if (flags & HAS_NEON) vpx_idct8x8_1_add = vpx_idct8x8_1_add_neon; 947 if (flags & HAS_NEON) vpx_idct8x8_1_add = vpx_idct8x8_1_add_neon;
948 vpx_idct8x8_64_add = vpx_idct8x8_64_add_c; 948 vpx_idct8x8_64_add = vpx_idct8x8_64_add_c;
949 if (flags & HAS_NEON) vpx_idct8x8_64_add = vpx_idct8x8_64_add_neon; 949 if (flags & HAS_NEON) vpx_idct8x8_64_add = vpx_idct8x8_64_add_neon;
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
1046 vpx_vector_var = vpx_vector_var_c; 1046 vpx_vector_var = vpx_vector_var_c;
1047 if (flags & HAS_NEON) vpx_vector_var = vpx_vector_var_neon; 1047 if (flags & HAS_NEON) vpx_vector_var = vpx_vector_var_neon;
1048 } 1048 }
1049 #endif 1049 #endif
1050 1050
1051 #ifdef __cplusplus 1051 #ifdef __cplusplus
1052 } // extern "C" 1052 } // extern "C"
1053 #endif 1053 #endif
1054 1054
1055 #endif 1055 #endif
OLDNEW
« no previous file with comments | « third_party/libvpx/libvpx_srcs.gni ('k') | third_party/libvpx/source/config/linux/arm-neon/vpx_dsp_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698