| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. | 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 extern prototype_fdct(vp8_short_fdct8x4_mmx); | 24 extern prototype_fdct(vp8_short_fdct8x4_mmx); |
| 25 | 25 |
| 26 #if !CONFIG_RUNTIME_CPU_DETECT | 26 #if !CONFIG_RUNTIME_CPU_DETECT |
| 27 | 27 |
| 28 #undef vp8_fdct_short4x4 | 28 #undef vp8_fdct_short4x4 |
| 29 #define vp8_fdct_short4x4 vp8_short_fdct4x4_mmx | 29 #define vp8_fdct_short4x4 vp8_short_fdct4x4_mmx |
| 30 | 30 |
| 31 #undef vp8_fdct_short8x4 | 31 #undef vp8_fdct_short8x4 |
| 32 #define vp8_fdct_short8x4 vp8_short_fdct8x4_mmx | 32 #define vp8_fdct_short8x4 vp8_short_fdct8x4_mmx |
| 33 | 33 |
| 34 #undef vp8_fdct_fast4x4 |
| 35 #define vp8_fdct_fast4x4 vp8_short_fdct4x4_mmx |
| 36 |
| 37 #undef vp8_fdct_fast8x4 |
| 38 #define vp8_fdct_fast8x4 vp8_short_fdct8x4_mmx |
| 39 |
| 34 #endif | 40 #endif |
| 35 | 41 |
| 36 #endif | 42 #endif |
| 37 | 43 |
| 38 | 44 |
| 39 #if HAVE_SSE2 | 45 #if HAVE_SSE2 |
| 40 extern prototype_fdct(vp8_short_fdct8x4_sse2); | 46 extern prototype_fdct(vp8_short_fdct8x4_sse2); |
| 41 extern prototype_fdct(vp8_short_walsh4x4_sse2); | 47 extern prototype_fdct(vp8_short_walsh4x4_sse2); |
| 42 | 48 |
| 43 extern prototype_fdct(vp8_short_fdct4x4_sse2); | 49 extern prototype_fdct(vp8_short_fdct4x4_sse2); |
| (...skipping 14 matching lines...) Expand all Loading... |
| 58 | 64 |
| 59 #undef vp8_fdct_walsh_short4x4 | 65 #undef vp8_fdct_walsh_short4x4 |
| 60 #define vp8_fdct_walsh_short4x4 vp8_short_walsh4x4_sse2 | 66 #define vp8_fdct_walsh_short4x4 vp8_short_walsh4x4_sse2 |
| 61 | 67 |
| 62 #endif | 68 #endif |
| 63 | 69 |
| 64 | 70 |
| 65 #endif | 71 #endif |
| 66 | 72 |
| 67 #endif | 73 #endif |
| OLD | NEW |