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 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
440 #define KUVTOB 0 | 440 #define KUVTOB 0 |
441 #define KUVTOG 32 | 441 #define KUVTOG 32 |
442 #define KUVTOR 64 | 442 #define KUVTOR 64 |
443 #define KUVBIASB 96 | 443 #define KUVBIASB 96 |
444 #define KUVBIASG 128 | 444 #define KUVBIASG 128 |
445 #define KUVBIASR 160 | 445 #define KUVBIASR 160 |
446 #define KYTORGB 192 | 446 #define KYTORGB 192 |
447 #endif | 447 #endif |
448 | 448 |
449 // Conversion matrix for YUV to RGB | 449 // Conversion matrix for YUV to RGB |
450 extern const struct YuvConstants kYuvIConstants; // BT.601 | 450 extern const struct YuvConstants kYuvI601Constants; // BT.601 |
451 extern const struct YuvConstants kYuvJConstants; // JPeg color space | 451 extern const struct YuvConstants kYuvJPEGConstants; // JPeg color space |
452 extern const struct YuvConstants kYuvHConstants; // BT.709 | 452 extern const struct YuvConstants kYuvH709Constants; // BT.709 |
453 | 453 |
454 // Conversion matrix for YVU to BGR. | 454 // Conversion matrix for YVU to BGR |
455 extern const struct YuvConstants kYvuIConstants; // BT.601 | 455 extern const struct YuvConstants kYvuI601Constants; // BT.601 |
456 extern const struct YuvConstants kYvuJConstants; // JPeg color space | 456 extern const struct YuvConstants kYvuJPEGConstants; // JPeg color space |
457 extern const struct YuvConstants kYvuHConstants; // BT.709 | 457 extern const struct YuvConstants kYvuH709Constants; // BT.709 |
458 | 458 |
459 #if defined(__APPLE__) || defined(__x86_64__) || defined(__llvm__) | 459 #if defined(__APPLE__) || defined(__x86_64__) || defined(__llvm__) |
460 #define OMITFP | 460 #define OMITFP |
461 #else | 461 #else |
462 #define OMITFP __attribute__((optimize("omit-frame-pointer"))) | 462 #define OMITFP __attribute__((optimize("omit-frame-pointer"))) |
463 #endif | 463 #endif |
464 | 464 |
465 // NaCL macros for GCC x86 and x64. | 465 // NaCL macros for GCC x86 and x64. |
466 #if defined(__native_client__) | 466 #if defined(__native_client__) |
467 #define LABELALIGN ".p2align 5\n" | 467 #define LABELALIGN ".p2align 5\n" |
(...skipping 1430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1898 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, | 1898 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, |
1899 int width, | 1899 int width, |
1900 const uint8* luma, uint32 lumacoeff); | 1900 const uint8* luma, uint32 lumacoeff); |
1901 | 1901 |
1902 #ifdef __cplusplus | 1902 #ifdef __cplusplus |
1903 } // extern "C" | 1903 } // extern "C" |
1904 } // namespace libyuv | 1904 } // namespace libyuv |
1905 #endif | 1905 #endif |
1906 | 1906 |
1907 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT | 1907 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT |
OLD | NEW |