OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 The LibYuv Project Authors. All rights reserved. | 2 * Copyright 2013 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 void TransposeWx8_C(const uint8* src, int src_stride, | 61 void TransposeWx8_C(const uint8* src, int src_stride, |
62 uint8* dst, int dst_stride, int width); | 62 uint8* dst, int dst_stride, int width); |
63 void TransposeWx8_NEON(const uint8* src, int src_stride, | 63 void TransposeWx8_NEON(const uint8* src, int src_stride, |
64 uint8* dst, int dst_stride, int width); | 64 uint8* dst, int dst_stride, int width); |
65 void TransposeWx8_SSSE3(const uint8* src, int src_stride, | 65 void TransposeWx8_SSSE3(const uint8* src, int src_stride, |
66 uint8* dst, int dst_stride, int width); | 66 uint8* dst, int dst_stride, int width); |
67 void TransposeWx8_Fast_SSSE3(const uint8* src, int src_stride, | 67 void TransposeWx8_Fast_SSSE3(const uint8* src, int src_stride, |
68 uint8* dst, int dst_stride, int width); | 68 uint8* dst, int dst_stride, int width); |
69 void TransposeWx8_MIPS_DSPR2(const uint8* src, int src_stride, | 69 void TransposeWx8_MIPS_DSPR2(const uint8* src, int src_stride, |
70 uint8* dst, int dst_stride, int width); | 70 uint8* dst, int dst_stride, int width); |
| 71 void TransposeWx8_Fast_MIPS_DSPR2(const uint8* src, int src_stride, |
| 72 uint8* dst, int dst_stride, int width); |
71 | 73 |
72 void TransposeWx8_Any_NEON(const uint8* src, int src_stride, | 74 void TransposeWx8_Any_NEON(const uint8* src, int src_stride, |
73 uint8* dst, int dst_stride, int width); | 75 uint8* dst, int dst_stride, int width); |
74 void TransposeWx8_Any_SSSE3(const uint8* src, int src_stride, | 76 void TransposeWx8_Any_SSSE3(const uint8* src, int src_stride, |
75 uint8* dst, int dst_stride, int width); | 77 uint8* dst, int dst_stride, int width); |
76 void TransposeWx8_Fast_Any_SSSE3(const uint8* src, int src_stride, | 78 void TransposeWx8_Fast_Any_SSSE3(const uint8* src, int src_stride, |
77 uint8* dst, int dst_stride, int width); | 79 uint8* dst, int dst_stride, int width); |
78 void TransposeWx8_Any_MIPS_DSPR2(const uint8* src, int src_stride, | 80 void TransposeWx8_Any_MIPS_DSPR2(const uint8* src, int src_stride, |
79 uint8* dst, int dst_stride, int width); | 81 uint8* dst, int dst_stride, int width); |
80 | 82 |
(...skipping 24 matching lines...) Expand all Loading... |
105 void TransposeUVWx8_Any_MIPS_DSPR2(const uint8* src, int src_stride, | 107 void TransposeUVWx8_Any_MIPS_DSPR2(const uint8* src, int src_stride, |
106 uint8* dst_a, int dst_stride_a, | 108 uint8* dst_a, int dst_stride_a, |
107 uint8* dst_b, int dst_stride_b, int width); | 109 uint8* dst_b, int dst_stride_b, int width); |
108 | 110 |
109 #ifdef __cplusplus | 111 #ifdef __cplusplus |
110 } // extern "C" | 112 } // extern "C" |
111 } // namespace libyuv | 113 } // namespace libyuv |
112 #endif | 114 #endif |
113 | 115 |
114 #endif // INCLUDE_LIBYUV_ROTATE_ROW_H_ NOLINT | 116 #endif // INCLUDE_LIBYUV_ROTATE_ROW_H_ NOLINT |
OLD | NEW |