| OLD | NEW |
| 1 #ifndef VPX_SCALE_RTCD_H_ | 1 #ifndef VPX_SCALE_RTCD_H_ |
| 2 #define VPX_SCALE_RTCD_H_ | 2 #define VPX_SCALE_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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 void vpx_scale_rtcd(void); | 52 void vpx_scale_rtcd(void); |
| 53 | 53 |
| 54 #ifdef RTCD_C | 54 #ifdef RTCD_C |
| 55 #include "vpx_ports/x86.h" | 55 #include "vpx_ports/x86.h" |
| 56 static void setup_rtcd_internal(void) | 56 static void setup_rtcd_internal(void) |
| 57 { | 57 { |
| 58 int flags = x86_simd_caps(); | 58 int flags = x86_simd_caps(); |
| 59 | 59 |
| 60 (void)flags; | 60 (void)flags; |
| 61 | 61 |
| 62 | |
| 63 } | 62 } |
| 64 #endif | 63 #endif |
| 65 | 64 |
| 66 #ifdef __cplusplus | 65 #ifdef __cplusplus |
| 67 } // extern "C" | 66 } // extern "C" |
| 68 #endif | 67 #endif |
| 69 | 68 |
| 70 #endif | 69 #endif |
| OLD | NEW |