OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 The LibYuv Project Authors. All rights reserved. | 2 * Copyright 2015 The LibYuv 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 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 | 367 |
368 #ifdef HAS_SCALEADDROW_SSE2 | 368 #ifdef HAS_SCALEADDROW_SSE2 |
369 SAANY(ScaleAddRow_Any_SSE2, ScaleAddRow_SSE2, ScaleAddRow_C, 15) | 369 SAANY(ScaleAddRow_Any_SSE2, ScaleAddRow_SSE2, ScaleAddRow_C, 15) |
370 #endif | 370 #endif |
371 #ifdef HAS_SCALEADDROW_AVX2 | 371 #ifdef HAS_SCALEADDROW_AVX2 |
372 SAANY(ScaleAddRow_Any_AVX2, ScaleAddRow_AVX2, ScaleAddRow_C, 31) | 372 SAANY(ScaleAddRow_Any_AVX2, ScaleAddRow_AVX2, ScaleAddRow_C, 31) |
373 #endif | 373 #endif |
374 #ifdef HAS_SCALEADDROW_NEON | 374 #ifdef HAS_SCALEADDROW_NEON |
375 SAANY(ScaleAddRow_Any_NEON, ScaleAddRow_NEON, ScaleAddRow_C, 15) | 375 SAANY(ScaleAddRow_Any_NEON, ScaleAddRow_NEON, ScaleAddRow_C, 15) |
376 #endif | 376 #endif |
| 377 #ifdef HAS_SCALEADDROW_DSPR2 |
| 378 SAANY(ScaleAddRow_Any_DSPR2, ScaleAddRow_DSPR2, ScaleAddRow_C, 15) |
| 379 #endif |
377 #undef SAANY | 380 #undef SAANY |
378 | 381 |
379 #ifdef __cplusplus | 382 #ifdef __cplusplus |
380 } // extern "C" | 383 } // extern "C" |
381 } // namespace libyuv | 384 } // namespace libyuv |
382 #endif | 385 #endif |
OLD | NEW |