| 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 28 matching lines...) Expand all Loading... |
| 39 #undef vp8_recon_copy16x16 | 39 #undef vp8_recon_copy16x16 |
| 40 #define vp8_recon_copy16x16 vp8_copy_mem16x16_mmx | 40 #define vp8_recon_copy16x16 vp8_copy_mem16x16_mmx |
| 41 | 41 |
| 42 #endif | 42 #endif |
| 43 #endif | 43 #endif |
| 44 | 44 |
| 45 #if HAVE_SSE2 | 45 #if HAVE_SSE2 |
| 46 extern prototype_recon_block(vp8_recon2b_sse2); | 46 extern prototype_recon_block(vp8_recon2b_sse2); |
| 47 extern prototype_recon_block(vp8_recon4b_sse2); | 47 extern prototype_recon_block(vp8_recon4b_sse2); |
| 48 extern prototype_copy_block(vp8_copy_mem16x16_sse2); | 48 extern prototype_copy_block(vp8_copy_mem16x16_sse2); |
| 49 extern prototype_build_intra_predictors(vp8_build_intra_predictors_mbuv_sse2); |
| 50 extern prototype_build_intra_predictors(vp8_build_intra_predictors_mbuv_s_sse2); |
| 49 | 51 |
| 50 #if !CONFIG_RUNTIME_CPU_DETECT | 52 #if !CONFIG_RUNTIME_CPU_DETECT |
| 51 #undef vp8_recon_recon2 | 53 #undef vp8_recon_recon2 |
| 52 #define vp8_recon_recon2 vp8_recon2b_sse2 | 54 #define vp8_recon_recon2 vp8_recon2b_sse2 |
| 53 | 55 |
| 54 #undef vp8_recon_recon4 | 56 #undef vp8_recon_recon4 |
| 55 #define vp8_recon_recon4 vp8_recon4b_sse2 | 57 #define vp8_recon_recon4 vp8_recon4b_sse2 |
| 56 | 58 |
| 57 #undef vp8_recon_copy16x16 | 59 #undef vp8_recon_copy16x16 |
| 58 #define vp8_recon_copy16x16 vp8_copy_mem16x16_sse2 | 60 #define vp8_recon_copy16x16 vp8_copy_mem16x16_sse2 |
| 59 | 61 |
| 62 #undef vp8_recon_build_intra_predictors_mbuv |
| 63 #define vp8_recon_build_intra_predictors_mbuv vp8_build_intra_predictors_mbuv_ss
e2 |
| 64 |
| 65 #undef vp8_recon_build_intra_predictors_mbuv_s |
| 66 #define vp8_recon_build_intra_predictors_mbuv_s vp8_build_intra_predictors_mbuv_
s_sse2 |
| 67 |
| 68 #endif |
| 69 #endif |
| 70 |
| 71 #if HAVE_SSSE3 |
| 72 extern prototype_build_intra_predictors(vp8_build_intra_predictors_mbuv_ssse3); |
| 73 extern prototype_build_intra_predictors(vp8_build_intra_predictors_mbuv_s_ssse3)
; |
| 74 |
| 75 #if !CONFIG_RUNTIME_CPU_DETECT |
| 76 #undef vp8_recon_build_intra_predictors_mbuv |
| 77 #define vp8_recon_build_intra_predictors_mbuv vp8_build_intra_predictors_mbuv_ss
se3 |
| 78 |
| 79 #undef vp8_recon_build_intra_predictors_mbuv_s |
| 80 #define vp8_recon_build_intra_predictors_mbuv_s vp8_build_intra_predictors_mbuv_
s_ssse3 |
| 81 |
| 60 #endif | 82 #endif |
| 61 #endif | 83 #endif |
| 62 #endif | 84 #endif |
| OLD | NEW |