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 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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_I422TOABGRROW_NEON | 302 #define HAS_I422TOABGRROW_NEON |
303 #define HAS_I422TOARGB1555ROW_NEON | 303 #define HAS_I422TOARGB1555ROW_NEON |
304 #define HAS_I422TOARGB4444ROW_NEON | 304 #define HAS_I422TOARGB4444ROW_NEON |
305 #define HAS_I422TOARGBROW_NEON | 305 #define HAS_I422TOARGBROW_NEON |
306 // TODO(fbarchard): Implement NEON version | 306 // TODO(fbarchard): Implement NEON version |
307 #ifndef __aarch64__ | 307 #ifndef __aarch64__ |
308 #define HAS_I422TOARGBMATRIXROW_NEON | 308 #define HAS_I422TOARGBMATRIXROW_NEON |
| 309 #define HAS_J422TOARGBROW_NEON |
309 #endif | 310 #endif |
310 // #define HAS_I422TOABGRMATRIXROW_NEON | 311 // #define HAS_I422TOABGRMATRIXROW_NEON |
311 #define HAS_I422TOBGRAROW_NEON | 312 #define HAS_I422TOBGRAROW_NEON |
312 #define HAS_I422TORAWROW_NEON | 313 #define HAS_I422TORAWROW_NEON |
313 #define HAS_I422TORGB24ROW_NEON | 314 #define HAS_I422TORGB24ROW_NEON |
314 #define HAS_I422TORGB565ROW_NEON | 315 #define HAS_I422TORGB565ROW_NEON |
315 #define HAS_I422TORGBAROW_NEON | 316 #define HAS_I422TORGBAROW_NEON |
316 #define HAS_I422TOUYVYROW_NEON | 317 #define HAS_I422TOUYVYROW_NEON |
317 #define HAS_I422TOYUY2ROW_NEON | 318 #define HAS_I422TOYUY2ROW_NEON |
318 #define HAS_I444TOARGBROW_NEON | 319 #define HAS_I444TOARGBROW_NEON |
319 #define HAS_J422TOARGBROW_NEON | |
320 #define HAS_MERGEUVROW_NEON | 320 #define HAS_MERGEUVROW_NEON |
321 #define HAS_MIRRORROW_NEON | 321 #define HAS_MIRRORROW_NEON |
322 #define HAS_MIRRORUVROW_NEON | 322 #define HAS_MIRRORUVROW_NEON |
323 #define HAS_NV12TOARGBROW_NEON | 323 #define HAS_NV12TOARGBROW_NEON |
324 #define HAS_NV12TORGB565ROW_NEON | 324 #define HAS_NV12TORGB565ROW_NEON |
325 #define HAS_NV21TOARGBROW_NEON | 325 #define HAS_NV21TOARGBROW_NEON |
326 #define HAS_NV21TORGB565ROW_NEON | 326 #define HAS_NV21TORGB565ROW_NEON |
327 #define HAS_RAWTOARGBROW_NEON | 327 #define HAS_RAWTOARGBROW_NEON |
328 #define HAS_RAWTOUVROW_NEON | 328 #define HAS_RAWTOUVROW_NEON |
329 #define HAS_RAWTOYROW_NEON | 329 #define HAS_RAWTOYROW_NEON |
(...skipping 1697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2027 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, | 2027 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, |
2028 int width, | 2028 int width, |
2029 const uint8* luma, uint32 lumacoeff); | 2029 const uint8* luma, uint32 lumacoeff); |
2030 | 2030 |
2031 #ifdef __cplusplus | 2031 #ifdef __cplusplus |
2032 } // extern "C" | 2032 } // extern "C" |
2033 } // namespace libyuv | 2033 } // namespace libyuv |
2034 #endif | 2034 #endif |
2035 | 2035 |
2036 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT | 2036 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT |
OLD | NEW |