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

Side by Side Diff: third_party/libvpx/source/config/linux/arm64/vpx_dsp_rtcd.h

Issue 2005893002: Roll src/third_party/libvpx/source/libvpx/ 57566ff24..4f774ac50 (29 commits). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 #define vpx_h_predictor_4x4 vpx_h_predictor_4x4_neon 298 #define vpx_h_predictor_4x4 vpx_h_predictor_4x4_neon
299 299
300 void vpx_h_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abov e, const uint8_t *left); 300 void vpx_h_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abov e, const uint8_t *left);
301 void vpx_h_predictor_8x8_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left); 301 void vpx_h_predictor_8x8_neon(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *a bove, const uint8_t *left);
302 #define vpx_h_predictor_8x8 vpx_h_predictor_8x8_neon 302 #define vpx_h_predictor_8x8 vpx_h_predictor_8x8_neon
303 303
304 void vpx_hadamard_16x16_c(const int16_t *src_diff, int src_stride, int16_t *coef f); 304 void vpx_hadamard_16x16_c(const int16_t *src_diff, int src_stride, int16_t *coef f);
305 #define vpx_hadamard_16x16 vpx_hadamard_16x16_c 305 #define vpx_hadamard_16x16 vpx_hadamard_16x16_c
306 306
307 void vpx_hadamard_8x8_c(const int16_t *src_diff, int src_stride, int16_t *coeff) ; 307 void vpx_hadamard_8x8_c(const int16_t *src_diff, int src_stride, int16_t *coeff) ;
308 #define vpx_hadamard_8x8 vpx_hadamard_8x8_c 308 void vpx_hadamard_8x8_neon(const int16_t *src_diff, int src_stride, int16_t *coe ff);
309 #define vpx_hadamard_8x8 vpx_hadamard_8x8_neon
309 310
310 void vpx_he_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo ve, const uint8_t *left); 311 void vpx_he_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo ve, const uint8_t *left);
311 #define vpx_he_predictor_4x4 vpx_he_predictor_4x4_c 312 #define vpx_he_predictor_4x4 vpx_he_predictor_4x4_c
312 313
313 void vpx_idct16x16_10_add_c(const tran_low_t *input, uint8_t *dest, int dest_str ide); 314 void vpx_idct16x16_10_add_c(const tran_low_t *input, uint8_t *dest, int dest_str ide);
314 void vpx_idct16x16_10_add_neon(const tran_low_t *input, uint8_t *dest, int dest_ stride); 315 void vpx_idct16x16_10_add_neon(const tran_low_t *input, uint8_t *dest, int dest_ stride);
315 #define vpx_idct16x16_10_add vpx_idct16x16_10_add_neon 316 #define vpx_idct16x16_10_add vpx_idct16x16_10_add_neon
316 317
317 void vpx_idct16x16_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stri de); 318 void vpx_idct16x16_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stri de);
318 void vpx_idct16x16_1_add_neon(const tran_low_t *input, uint8_t *dest, int dest_s tride); 319 void vpx_idct16x16_1_add_neon(const tran_low_t *input, uint8_t *dest, int dest_s tride);
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
831 (void)flags; 832 (void)flags;
832 833
833 } 834 }
834 #endif 835 #endif
835 836
836 #ifdef __cplusplus 837 #ifdef __cplusplus
837 } // extern "C" 838 } // extern "C"
838 #endif 839 #endif
839 840
840 #endif 841 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698