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

Side by Side Diff: third_party/libvpx/source/config/linux/arm-neon/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 #define vpx_idct32x32_135_add vpx_idct32x32_1024_add_neon 333 #define vpx_idct32x32_135_add vpx_idct32x32_1024_add_neon
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 #define vpx_idct32x32_1_add vpx_idct32x32_1_add_neon 337 #define vpx_idct32x32_1_add vpx_idct32x32_1_add_neon
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 #define vpx_idct32x32_34_add vpx_idct32x32_1024_add_neon 341 #define vpx_idct32x32_34_add vpx_idct32x32_34_add_neon
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 #define vpx_idct4x4_16_add vpx_idct4x4_16_add_neon 345 #define vpx_idct4x4_16_add vpx_idct4x4_16_add_neon
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 #define vpx_idct4x4_1_add vpx_idct4x4_1_add_neon 349 #define vpx_idct4x4_1_add vpx_idct4x4_1_add_neon
350 350
351 void vpx_idct8x8_12_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e); 351 void vpx_idct8x8_12_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e);
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
842 (void)flags; 842 (void)flags;
843 843
844 } 844 }
845 #endif 845 #endif
846 846
847 #ifdef __cplusplus 847 #ifdef __cplusplus
848 } // extern "C" 848 } // extern "C"
849 #endif 849 #endif
850 850
851 #endif 851 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698