| 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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 // Biplanar to RGB. | 273 // Biplanar to RGB. |
| 274 #ifdef HAS_NV12TOARGBROW_SSSE3 | 274 #ifdef HAS_NV12TOARGBROW_SSSE3 |
| 275 ANY21C(NV12ToARGBRow_Any_SSSE3, NV12ToARGBRow_SSSE3, 1, 1, 2, 4, 7) | 275 ANY21C(NV12ToARGBRow_Any_SSSE3, NV12ToARGBRow_SSSE3, 1, 1, 2, 4, 7) |
| 276 #endif | 276 #endif |
| 277 #ifdef HAS_NV12TOARGBROW_AVX2 | 277 #ifdef HAS_NV12TOARGBROW_AVX2 |
| 278 ANY21C(NV12ToARGBRow_Any_AVX2, NV12ToARGBRow_AVX2, 1, 1, 2, 4, 15) | 278 ANY21C(NV12ToARGBRow_Any_AVX2, NV12ToARGBRow_AVX2, 1, 1, 2, 4, 15) |
| 279 #endif | 279 #endif |
| 280 #ifdef HAS_NV12TOARGBROW_NEON | 280 #ifdef HAS_NV12TOARGBROW_NEON |
| 281 ANY21C(NV12ToARGBRow_Any_NEON, NV12ToARGBRow_NEON, 1, 1, 2, 4, 7) | 281 ANY21C(NV12ToARGBRow_Any_NEON, NV12ToARGBRow_NEON, 1, 1, 2, 4, 7) |
| 282 #endif | 282 #endif |
| 283 #ifdef HAS_NV21TOARGBROW_SSSE3 |
| 284 ANY21C(NV21ToARGBRow_Any_SSSE3, NV21ToARGBRow_SSSE3, 1, 1, 2, 4, 7) |
| 285 #endif |
| 286 #ifdef HAS_NV21TOARGBROW_AVX2 |
| 287 ANY21C(NV21ToARGBRow_Any_AVX2, NV21ToARGBRow_AVX2, 1, 1, 2, 4, 15) |
| 288 #endif |
| 289 #ifdef HAS_NV21TOARGBROW_NEON |
| 290 ANY21C(NV21ToARGBRow_Any_NEON, NV12ToARGBRow_NEON, 1, 1, 2, 4, 7) |
| 291 #endif |
| 283 #ifdef HAS_NV12TORGB565ROW_SSSE3 | 292 #ifdef HAS_NV12TORGB565ROW_SSSE3 |
| 284 ANY21C(NV12ToRGB565Row_Any_SSSE3, NV12ToRGB565Row_SSSE3, 1, 1, 2, 2, 7) | 293 ANY21C(NV12ToRGB565Row_Any_SSSE3, NV12ToRGB565Row_SSSE3, 1, 1, 2, 2, 7) |
| 285 #endif | 294 #endif |
| 286 #ifdef HAS_NV12TORGB565ROW_AVX2 | 295 #ifdef HAS_NV12TORGB565ROW_AVX2 |
| 287 ANY21C(NV12ToRGB565Row_Any_AVX2, NV12ToRGB565Row_AVX2, 1, 1, 2, 2, 15) | 296 ANY21C(NV12ToRGB565Row_Any_AVX2, NV12ToRGB565Row_AVX2, 1, 1, 2, 2, 15) |
| 288 #endif | 297 #endif |
| 289 #ifdef HAS_NV12TORGB565ROW_NEON | 298 #ifdef HAS_NV12TORGB565ROW_NEON |
| 290 ANY21C(NV12ToRGB565Row_Any_NEON, NV12ToRGB565Row_NEON, 1, 1, 2, 2, 7) | 299 ANY21C(NV12ToRGB565Row_Any_NEON, NV12ToRGB565Row_NEON, 1, 1, 2, 2, 7) |
| 291 #endif | 300 #endif |
| 292 #undef ANY21C | 301 #undef ANY21C |
| (...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 786 #endif | 795 #endif |
| 787 #ifdef HAS_UYVYTOUVROW_NEON | 796 #ifdef HAS_UYVYTOUVROW_NEON |
| 788 ANY12S(UYVYToUVRow_Any_NEON, UYVYToUVRow_NEON, 1, 4, 15) | 797 ANY12S(UYVYToUVRow_Any_NEON, UYVYToUVRow_NEON, 1, 4, 15) |
| 789 #endif | 798 #endif |
| 790 #undef ANY12S | 799 #undef ANY12S |
| 791 | 800 |
| 792 #ifdef __cplusplus | 801 #ifdef __cplusplus |
| 793 } // extern "C" | 802 } // extern "C" |
| 794 } // namespace libyuv | 803 } // namespace libyuv |
| 795 #endif | 804 #endif |
| OLD | NEW |