OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 The LibYuv Project Authors. All rights reserved. | 2 * Copyright 2012 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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 #ifdef HAS_COPYROW_NEON | 310 #ifdef HAS_COPYROW_NEON |
311 ANY11(CopyRow_Any_NEON, CopyRow_NEON, 0, 1, 1, 31) | 311 ANY11(CopyRow_Any_NEON, CopyRow_NEON, 0, 1, 1, 31) |
312 #endif | 312 #endif |
313 #if defined(HAS_ARGBTORGB24ROW_SSSE3) | 313 #if defined(HAS_ARGBTORGB24ROW_SSSE3) |
314 ANY11(ARGBToRGB24Row_Any_SSSE3, ARGBToRGB24Row_SSSE3, 0, 4, 3, 15) | 314 ANY11(ARGBToRGB24Row_Any_SSSE3, ARGBToRGB24Row_SSSE3, 0, 4, 3, 15) |
315 ANY11(ARGBToRAWRow_Any_SSSE3, ARGBToRAWRow_SSSE3, 0, 4, 3, 15) | 315 ANY11(ARGBToRAWRow_Any_SSSE3, ARGBToRAWRow_SSSE3, 0, 4, 3, 15) |
316 ANY11(ARGBToRGB565Row_Any_SSE2, ARGBToRGB565Row_SSE2, 0, 4, 2, 3) | 316 ANY11(ARGBToRGB565Row_Any_SSE2, ARGBToRGB565Row_SSE2, 0, 4, 2, 3) |
317 ANY11(ARGBToARGB1555Row_Any_SSE2, ARGBToARGB1555Row_SSE2, 0, 4, 2, 3) | 317 ANY11(ARGBToARGB1555Row_Any_SSE2, ARGBToARGB1555Row_SSE2, 0, 4, 2, 3) |
318 ANY11(ARGBToARGB4444Row_Any_SSE2, ARGBToARGB4444Row_SSE2, 0, 4, 2, 3) | 318 ANY11(ARGBToARGB4444Row_Any_SSE2, ARGBToARGB4444Row_SSE2, 0, 4, 2, 3) |
319 #endif | 319 #endif |
| 320 #if defined(HAS_ARGBTORGB565ROW_AVX2) |
| 321 ANY11(ARGBToRGB565Row_Any_AVX2, ARGBToRGB565Row_AVX2, 0, 4, 2, 7) |
| 322 #endif |
320 #if defined(HAS_ARGBTOARGB4444ROW_AVX2) | 323 #if defined(HAS_ARGBTOARGB4444ROW_AVX2) |
321 ANY11(ARGBToRGB565Row_Any_AVX2, ARGBToRGB565Row_AVX2, 0, 4, 2, 7) | |
322 ANY11(ARGBToARGB1555Row_Any_AVX2, ARGBToARGB1555Row_AVX2, 0, 4, 2, 7) | 324 ANY11(ARGBToARGB1555Row_Any_AVX2, ARGBToARGB1555Row_AVX2, 0, 4, 2, 7) |
323 ANY11(ARGBToARGB4444Row_Any_AVX2, ARGBToARGB4444Row_AVX2, 0, 4, 2, 7) | 325 ANY11(ARGBToARGB4444Row_Any_AVX2, ARGBToARGB4444Row_AVX2, 0, 4, 2, 7) |
324 #endif | 326 #endif |
325 #if defined(HAS_J400TOARGBROW_SSE2) | 327 #if defined(HAS_J400TOARGBROW_SSE2) |
326 ANY11(J400ToARGBRow_Any_SSE2, J400ToARGBRow_SSE2, 0, 1, 4, 7) | 328 ANY11(J400ToARGBRow_Any_SSE2, J400ToARGBRow_SSE2, 0, 1, 4, 7) |
327 #endif | 329 #endif |
328 #if defined(HAS_J400TOARGBROW_AVX2) | 330 #if defined(HAS_J400TOARGBROW_AVX2) |
329 ANY11(J400ToARGBRow_Any_AVX2, J400ToARGBRow_AVX2, 0, 1, 4, 15) | 331 ANY11(J400ToARGBRow_Any_AVX2, J400ToARGBRow_AVX2, 0, 1, 4, 15) |
330 #endif | 332 #endif |
331 #if defined(HAS_I400TOARGBROW_SSE2) | 333 #if defined(HAS_I400TOARGBROW_SSE2) |
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
803 #endif | 805 #endif |
804 #ifdef HAS_UYVYTOUVROW_NEON | 806 #ifdef HAS_UYVYTOUVROW_NEON |
805 ANY12S(UYVYToUVRow_Any_NEON, UYVYToUVRow_NEON, 1, 4, 15) | 807 ANY12S(UYVYToUVRow_Any_NEON, UYVYToUVRow_NEON, 1, 4, 15) |
806 #endif | 808 #endif |
807 #undef ANY12S | 809 #undef ANY12S |
808 | 810 |
809 #ifdef __cplusplus | 811 #ifdef __cplusplus |
810 } // extern "C" | 812 } // extern "C" |
811 } // namespace libyuv | 813 } // namespace libyuv |
812 #endif | 814 #endif |
OLD | NEW |