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

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

Issue 2892403004: Roll src/third_party/libvpx/source/libvpx/ 31cb852a9..b3bf91bdc (11 commits) (Closed)
Patch Set: Created 3 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 void vpx_fdct32x32_c(const int16_t *input, tran_low_t *output, int stride); 221 void vpx_fdct32x32_c(const int16_t *input, tran_low_t *output, int stride);
222 #define vpx_fdct32x32 vpx_fdct32x32_c 222 #define vpx_fdct32x32 vpx_fdct32x32_c
223 223
224 void vpx_fdct32x32_1_c(const int16_t *input, tran_low_t *output, int stride); 224 void vpx_fdct32x32_1_c(const int16_t *input, tran_low_t *output, int stride);
225 #define vpx_fdct32x32_1 vpx_fdct32x32_1_c 225 #define vpx_fdct32x32_1 vpx_fdct32x32_1_c
226 226
227 void vpx_fdct32x32_rd_c(const int16_t *input, tran_low_t *output, int stride); 227 void vpx_fdct32x32_rd_c(const int16_t *input, tran_low_t *output, int stride);
228 #define vpx_fdct32x32_rd vpx_fdct32x32_rd_c 228 #define vpx_fdct32x32_rd vpx_fdct32x32_rd_c
229 229
230 void vpx_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride); 230 void vpx_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride);
231 #define vpx_fdct4x4 vpx_fdct4x4_c 231 void vpx_fdct4x4_neon(const int16_t *input, tran_low_t *output, int stride);
232 #define vpx_fdct4x4 vpx_fdct4x4_neon
232 233
233 void vpx_fdct4x4_1_c(const int16_t *input, tran_low_t *output, int stride); 234 void vpx_fdct4x4_1_c(const int16_t *input, tran_low_t *output, int stride);
234 #define vpx_fdct4x4_1 vpx_fdct4x4_1_c 235 #define vpx_fdct4x4_1 vpx_fdct4x4_1_c
235 236
236 void vpx_fdct8x8_c(const int16_t *input, tran_low_t *output, int stride); 237 void vpx_fdct8x8_c(const int16_t *input, tran_low_t *output, int stride);
237 void vpx_fdct8x8_neon(const int16_t *input, tran_low_t *output, int stride); 238 void vpx_fdct8x8_neon(const int16_t *input, tran_low_t *output, int stride);
238 #define vpx_fdct8x8 vpx_fdct8x8_neon 239 #define vpx_fdct8x8 vpx_fdct8x8_neon
239 240
240 void vpx_fdct8x8_1_c(const int16_t *input, tran_low_t *output, int stride); 241 void vpx_fdct8x8_1_c(const int16_t *input, tran_low_t *output, int stride);
241 void vpx_fdct8x8_1_neon(const int16_t *input, tran_low_t *output, int stride); 242 void vpx_fdct8x8_1_neon(const int16_t *input, tran_low_t *output, int stride);
(...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after
830 (void)flags; 831 (void)flags;
831 832
832 } 833 }
833 #endif 834 #endif
834 835
835 #ifdef __cplusplus 836 #ifdef __cplusplus
836 } // extern "C" 837 } // extern "C"
837 #endif 838 #endif
838 839
839 #endif 840 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698