| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 The LibYuv Project Authors. All rights reserved. | 2 * Copyright 2011 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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 #define HAS_ARGBTOUV444ROW_NEON | 292 #define HAS_ARGBTOUV444ROW_NEON |
| 293 #define HAS_ARGBTOUVJROW_NEON | 293 #define HAS_ARGBTOUVJROW_NEON |
| 294 #define HAS_ARGBTOUVROW_NEON | 294 #define HAS_ARGBTOUVROW_NEON |
| 295 #define HAS_ARGBTOYJROW_NEON | 295 #define HAS_ARGBTOYJROW_NEON |
| 296 #define HAS_ARGBTOYROW_NEON | 296 #define HAS_ARGBTOYROW_NEON |
| 297 #define HAS_BGRATOUVROW_NEON | 297 #define HAS_BGRATOUVROW_NEON |
| 298 #define HAS_BGRATOYROW_NEON | 298 #define HAS_BGRATOYROW_NEON |
| 299 #define HAS_COPYROW_NEON | 299 #define HAS_COPYROW_NEON |
| 300 #define HAS_J400TOARGBROW_NEON | 300 #define HAS_J400TOARGBROW_NEON |
| 301 #define HAS_I411TOARGBROW_NEON | 301 #define HAS_I411TOARGBROW_NEON |
| 302 #define HAS_I422TOARGBROW_NEON |
| 302 #define HAS_I422TOABGRROW_NEON | 303 #define HAS_I422TOABGRROW_NEON |
| 303 #define HAS_I422TOARGB1555ROW_NEON | 304 #define HAS_I422TOARGB1555ROW_NEON |
| 304 #define HAS_I422TOARGB4444ROW_NEON | 305 #define HAS_I422TOARGB4444ROW_NEON |
| 305 #define HAS_I422TOARGBROW_NEON | |
| 306 // TODO(fbarchard): Implement aarch64 neon version | 306 // TODO(fbarchard): Implement aarch64 neon version |
| 307 #ifndef __aarch64__ | 307 #ifndef __aarch64__ |
| 308 #define HAS_I422TOARGBMATRIXROW_NEON | 308 #define HAS_I422TOARGBMATRIXROW_NEON |
| 309 #define HAS_I422TOABGRMATRIXROW_NEON |
| 309 #define HAS_J422TOARGBROW_NEON | 310 #define HAS_J422TOARGBROW_NEON |
| 311 #define HAS_J422TOABGRROW_NEON |
| 310 #define HAS_H422TOARGBROW_NEON | 312 #define HAS_H422TOARGBROW_NEON |
| 313 #define HAS_H422TOABGRROW_NEON |
| 311 #endif | 314 #endif |
| 312 // #define HAS_I422TOABGRMATRIXROW_NEON | 315 // #define HAS_I422TOABGRMATRIXROW_NEON |
| 313 #define HAS_I422TOBGRAROW_NEON | 316 #define HAS_I422TOBGRAROW_NEON |
| 314 #define HAS_I422TORAWROW_NEON | 317 #define HAS_I422TORAWROW_NEON |
| 315 #define HAS_I422TORGB24ROW_NEON | 318 #define HAS_I422TORGB24ROW_NEON |
| 316 #define HAS_I422TORGB565ROW_NEON | 319 #define HAS_I422TORGB565ROW_NEON |
| 317 #define HAS_I422TORGBAROW_NEON | 320 #define HAS_I422TORGBAROW_NEON |
| 318 #define HAS_I422TOUYVYROW_NEON | 321 #define HAS_I422TOUYVYROW_NEON |
| 319 #define HAS_I422TOYUY2ROW_NEON | 322 #define HAS_I422TOYUY2ROW_NEON |
| 320 #define HAS_I444TOARGBROW_NEON | 323 #define HAS_I444TOARGBROW_NEON |
| (...skipping 1717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2038 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, | 2041 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, |
| 2039 int width, | 2042 int width, |
| 2040 const uint8* luma, uint32 lumacoeff); | 2043 const uint8* luma, uint32 lumacoeff); |
| 2041 | 2044 |
| 2042 #ifdef __cplusplus | 2045 #ifdef __cplusplus |
| 2043 } // extern "C" | 2046 } // extern "C" |
| 2044 } // namespace libyuv | 2047 } // namespace libyuv |
| 2045 #endif | 2048 #endif |
| 2046 | 2049 |
| 2047 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT | 2050 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT |
| OLD | NEW |