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

Side by Side Diff: source/config/mac/ia32/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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 RTCD_EXTERN void (*vp9_idct32x32_34_add)(const int16_t *input, uint8_t *dest, in t dest_stride); 285 RTCD_EXTERN void (*vp9_idct32x32_34_add)(const int16_t *input, uint8_t *dest, in t dest_stride);
286 286
287 void vp9_idct4x4_16_add_c(const int16_t *input, uint8_t *dest, int dest_stride); 287 void vp9_idct4x4_16_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
288 void vp9_idct4x4_16_add_sse2(const int16_t *input, uint8_t *dest, int dest_strid e); 288 void vp9_idct4x4_16_add_sse2(const int16_t *input, uint8_t *dest, int dest_strid e);
289 RTCD_EXTERN void (*vp9_idct4x4_16_add)(const int16_t *input, uint8_t *dest, int dest_stride); 289 RTCD_EXTERN void (*vp9_idct4x4_16_add)(const int16_t *input, uint8_t *dest, int dest_stride);
290 290
291 void vp9_idct4x4_1_add_c(const int16_t *input, uint8_t *dest, int dest_stride); 291 void vp9_idct4x4_1_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
292 void vp9_idct4x4_1_add_sse2(const int16_t *input, uint8_t *dest, int dest_stride ); 292 void vp9_idct4x4_1_add_sse2(const int16_t *input, uint8_t *dest, int dest_stride );
293 RTCD_EXTERN void (*vp9_idct4x4_1_add)(const int16_t *input, uint8_t *dest, int d est_stride); 293 RTCD_EXTERN void (*vp9_idct4x4_1_add)(const int16_t *input, uint8_t *dest, int d est_stride);
294 294
295 void vp9_idct8x8_10_add_c(const int16_t *input, uint8_t *dest, int dest_stride); 295 void vp9_idct8x8_12_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
296 void vp9_idct8x8_10_add_sse2(const int16_t *input, uint8_t *dest, int dest_strid e); 296 void vp9_idct8x8_12_add_sse2(const int16_t *input, uint8_t *dest, int dest_strid e);
297 RTCD_EXTERN void (*vp9_idct8x8_10_add)(const int16_t *input, uint8_t *dest, int dest_stride); 297 RTCD_EXTERN void (*vp9_idct8x8_12_add)(const int16_t *input, uint8_t *dest, int dest_stride);
298 298
299 void vp9_idct8x8_1_add_c(const int16_t *input, uint8_t *dest, int dest_stride); 299 void vp9_idct8x8_1_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
300 void vp9_idct8x8_1_add_sse2(const int16_t *input, uint8_t *dest, int dest_stride ); 300 void vp9_idct8x8_1_add_sse2(const int16_t *input, uint8_t *dest, int dest_stride );
301 RTCD_EXTERN void (*vp9_idct8x8_1_add)(const int16_t *input, uint8_t *dest, int d est_stride); 301 RTCD_EXTERN void (*vp9_idct8x8_1_add)(const int16_t *input, uint8_t *dest, int d est_stride);
302 302
303 void vp9_idct8x8_64_add_c(const int16_t *input, uint8_t *dest, int dest_stride); 303 void vp9_idct8x8_64_add_c(const int16_t *input, uint8_t *dest, int dest_stride);
304 void vp9_idct8x8_64_add_sse2(const int16_t *input, uint8_t *dest, int dest_strid e); 304 void vp9_idct8x8_64_add_sse2(const int16_t *input, uint8_t *dest, int dest_strid e);
305 RTCD_EXTERN void (*vp9_idct8x8_64_add)(const int16_t *input, uint8_t *dest, int dest_stride); 305 RTCD_EXTERN void (*vp9_idct8x8_64_add)(const int16_t *input, uint8_t *dest, int dest_stride);
306 306
307 void vp9_iht16x16_256_add_c(const int16_t *input, uint8_t *output, int pitch, in t tx_type); 307 void vp9_iht16x16_256_add_c(const int16_t *input, uint8_t *output, int pitch, in t tx_type);
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
793 vp9_idct32x32_1024_add = vp9_idct32x32_1024_add_c; 793 vp9_idct32x32_1024_add = vp9_idct32x32_1024_add_c;
794 if (flags & HAS_SSE2) vp9_idct32x32_1024_add = vp9_idct32x32_1024_add_sse2; 794 if (flags & HAS_SSE2) vp9_idct32x32_1024_add = vp9_idct32x32_1024_add_sse2;
795 vp9_idct32x32_1_add = vp9_idct32x32_1_add_c; 795 vp9_idct32x32_1_add = vp9_idct32x32_1_add_c;
796 if (flags & HAS_SSE2) vp9_idct32x32_1_add = vp9_idct32x32_1_add_sse2; 796 if (flags & HAS_SSE2) vp9_idct32x32_1_add = vp9_idct32x32_1_add_sse2;
797 vp9_idct32x32_34_add = vp9_idct32x32_34_add_c; 797 vp9_idct32x32_34_add = vp9_idct32x32_34_add_c;
798 if (flags & HAS_SSE2) vp9_idct32x32_34_add = vp9_idct32x32_34_add_sse2; 798 if (flags & HAS_SSE2) vp9_idct32x32_34_add = vp9_idct32x32_34_add_sse2;
799 vp9_idct4x4_16_add = vp9_idct4x4_16_add_c; 799 vp9_idct4x4_16_add = vp9_idct4x4_16_add_c;
800 if (flags & HAS_SSE2) vp9_idct4x4_16_add = vp9_idct4x4_16_add_sse2; 800 if (flags & HAS_SSE2) vp9_idct4x4_16_add = vp9_idct4x4_16_add_sse2;
801 vp9_idct4x4_1_add = vp9_idct4x4_1_add_c; 801 vp9_idct4x4_1_add = vp9_idct4x4_1_add_c;
802 if (flags & HAS_SSE2) vp9_idct4x4_1_add = vp9_idct4x4_1_add_sse2; 802 if (flags & HAS_SSE2) vp9_idct4x4_1_add = vp9_idct4x4_1_add_sse2;
803 vp9_idct8x8_10_add = vp9_idct8x8_10_add_c; 803 vp9_idct8x8_12_add = vp9_idct8x8_12_add_c;
804 if (flags & HAS_SSE2) vp9_idct8x8_10_add = vp9_idct8x8_10_add_sse2; 804 if (flags & HAS_SSE2) vp9_idct8x8_12_add = vp9_idct8x8_12_add_sse2;
805 vp9_idct8x8_1_add = vp9_idct8x8_1_add_c; 805 vp9_idct8x8_1_add = vp9_idct8x8_1_add_c;
806 if (flags & HAS_SSE2) vp9_idct8x8_1_add = vp9_idct8x8_1_add_sse2; 806 if (flags & HAS_SSE2) vp9_idct8x8_1_add = vp9_idct8x8_1_add_sse2;
807 vp9_idct8x8_64_add = vp9_idct8x8_64_add_c; 807 vp9_idct8x8_64_add = vp9_idct8x8_64_add_c;
808 if (flags & HAS_SSE2) vp9_idct8x8_64_add = vp9_idct8x8_64_add_sse2; 808 if (flags & HAS_SSE2) vp9_idct8x8_64_add = vp9_idct8x8_64_add_sse2;
809 vp9_iht16x16_256_add = vp9_iht16x16_256_add_c; 809 vp9_iht16x16_256_add = vp9_iht16x16_256_add_c;
810 if (flags & HAS_SSE2) vp9_iht16x16_256_add = vp9_iht16x16_256_add_sse2; 810 if (flags & HAS_SSE2) vp9_iht16x16_256_add = vp9_iht16x16_256_add_sse2;
811 vp9_iht4x4_16_add = vp9_iht4x4_16_add_c; 811 vp9_iht4x4_16_add = vp9_iht4x4_16_add_c;
812 if (flags & HAS_SSE2) vp9_iht4x4_16_add = vp9_iht4x4_16_add_sse2; 812 if (flags & HAS_SSE2) vp9_iht4x4_16_add = vp9_iht4x4_16_add_sse2;
813 vp9_iht8x8_64_add = vp9_iht8x8_64_add_c; 813 vp9_iht8x8_64_add = vp9_iht8x8_64_add_c;
814 if (flags & HAS_SSE2) vp9_iht8x8_64_add = vp9_iht8x8_64_add_sse2; 814 if (flags & HAS_SSE2) vp9_iht8x8_64_add = vp9_iht8x8_64_add_sse2;
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
899 vp9_variance8x8 = vp9_variance8x8_c; 899 vp9_variance8x8 = vp9_variance8x8_c;
900 if (flags & HAS_MMX) vp9_variance8x8 = vp9_variance8x8_mmx; 900 if (flags & HAS_MMX) vp9_variance8x8 = vp9_variance8x8_mmx;
901 } 901 }
902 #endif 902 #endif
903 903
904 #ifdef __cplusplus 904 #ifdef __cplusplus
905 } // extern "C" 905 } // extern "C"
906 #endif 906 #endif
907 907
908 #endif 908 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698