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

Side by Side Diff: source/config/linux/arm-neon/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 #define vp9_idct32x32_34_add vp9_idct32x32_1024_add_neon 272 #define vp9_idct32x32_34_add vp9_idct32x32_1024_add_neon
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 #define vp9_idct4x4_16_add vp9_idct4x4_16_add_neon 276 #define vp9_idct4x4_16_add vp9_idct4x4_16_add_neon
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 #define vp9_idct4x4_1_add vp9_idct4x4_1_add_neon 280 #define vp9_idct4x4_1_add vp9_idct4x4_1_add_neon
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 #define vp9_idct8x8_10_add vp9_idct8x8_10_add_neon 284 #define vp9_idct8x8_12_add vp9_idct8x8_12_add_neon
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 #define vp9_idct8x8_1_add vp9_idct8x8_1_add_neon 288 #define vp9_idct8x8_1_add vp9_idct8x8_1_add_neon
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 #define vp9_idct8x8_64_add vp9_idct8x8_64_add_neon 292 #define vp9_idct8x8_64_add vp9_idct8x8_64_add_neon
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 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
706 (void)flags; 706 (void)flags;
707 707
708 } 708 }
709 #endif 709 #endif
710 710
711 #ifdef __cplusplus 711 #ifdef __cplusplus
712 } // extern "C" 712 } // extern "C"
713 #endif 713 #endif
714 714
715 #endif 715 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698