| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2010 The VP8 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 |
| 11 | 11 |
| 12 #include "vpx_ports/config.h" | 12 #include "vpx_ports/config.h" |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 #endif | 117 #endif |
| 118 | 118 |
| 119 #if HAVE_SSSE3 | 119 #if HAVE_SSSE3 |
| 120 | 120 |
| 121 if (SSSE3Enabled) | 121 if (SSSE3Enabled) |
| 122 { | 122 { |
| 123 rtcd->subpix.sixtap16x16 = vp8_sixtap_predict16x16_ssse3; | 123 rtcd->subpix.sixtap16x16 = vp8_sixtap_predict16x16_ssse3; |
| 124 rtcd->subpix.sixtap8x8 = vp8_sixtap_predict8x8_ssse3; | 124 rtcd->subpix.sixtap8x8 = vp8_sixtap_predict8x8_ssse3; |
| 125 rtcd->subpix.sixtap8x4 = vp8_sixtap_predict8x4_ssse3; | 125 rtcd->subpix.sixtap8x4 = vp8_sixtap_predict8x4_ssse3; |
| 126 rtcd->subpix.sixtap4x4 = vp8_sixtap_predict4x4_ssse3; | 126 rtcd->subpix.sixtap4x4 = vp8_sixtap_predict4x4_ssse3; |
| 127 rtcd->subpix.bilinear16x16 = vp8_bilinear_predict16x16_ssse3; |
| 128 rtcd->subpix.bilinear8x8 = vp8_bilinear_predict8x8_ssse3; |
| 127 } | 129 } |
| 128 #endif | 130 #endif |
| 129 | 131 |
| 130 #endif | 132 #endif |
| 131 } | 133 } |
| OLD | NEW |