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 1941 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1952 void HalfFloatRow_C(const uint16* src, uint16* dst, float scale, int width); | 1952 void HalfFloatRow_C(const uint16* src, uint16* dst, float scale, int width); |
1953 void HalfFloatRow_SSE2(const uint16* src, uint16* dst, float scale, int width); | 1953 void HalfFloatRow_SSE2(const uint16* src, uint16* dst, float scale, int width); |
1954 void HalfFloatRow_Any_SSE2(const uint16* src, uint16* dst, float scale, | 1954 void HalfFloatRow_Any_SSE2(const uint16* src, uint16* dst, float scale, |
1955 int width); | 1955 int width); |
1956 void HalfFloatRow_AVX2(const uint16* src, uint16* dst, float scale, int width); | 1956 void HalfFloatRow_AVX2(const uint16* src, uint16* dst, float scale, int width); |
1957 void HalfFloatRow_Any_AVX2(const uint16* src, uint16* dst, float scale, | 1957 void HalfFloatRow_Any_AVX2(const uint16* src, uint16* dst, float scale, |
1958 int width); | 1958 int width); |
1959 void HalfFloatRow_F16C(const uint16* src, uint16* dst, float scale, int width); | 1959 void HalfFloatRow_F16C(const uint16* src, uint16* dst, float scale, int width); |
1960 void HalfFloatRow_Any_F16C(const uint16* src, uint16* dst, float scale, | 1960 void HalfFloatRow_Any_F16C(const uint16* src, uint16* dst, float scale, |
1961 int width); | 1961 int width); |
| 1962 void HalfFloat1Row_F16C(const uint16* src, uint16* dst, float scale, int width); |
| 1963 void HalfFloat1Row_Any_F16C(const uint16* src, uint16* dst, float scale, |
| 1964 int width); |
1962 void HalfFloatRow_NEON(const uint16* src, uint16* dst, float scale, int width); | 1965 void HalfFloatRow_NEON(const uint16* src, uint16* dst, float scale, int width); |
1963 void HalfFloatRow_Any_NEON(const uint16* src, uint16* dst, float scale, | 1966 void HalfFloatRow_Any_NEON(const uint16* src, uint16* dst, float scale, |
1964 int width); | 1967 int width); |
| 1968 void HalfFloat1Row_NEON(const uint16* src, uint16* dst, float scale, int width); |
| 1969 void HalfFloat1Row_Any_NEON(const uint16* src, uint16* dst, float scale, |
| 1970 int width); |
1965 | 1971 |
1966 void ARGBLumaColorTableRow_C(const uint8* src_argb, uint8* dst_argb, int width, | 1972 void ARGBLumaColorTableRow_C(const uint8* src_argb, uint8* dst_argb, int width, |
1967 const uint8* luma, uint32 lumacoeff); | 1973 const uint8* luma, uint32 lumacoeff); |
1968 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, | 1974 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, |
1969 int width, | 1975 int width, |
1970 const uint8* luma, uint32 lumacoeff); | 1976 const uint8* luma, uint32 lumacoeff); |
1971 | 1977 |
1972 #ifdef __cplusplus | 1978 #ifdef __cplusplus |
1973 } // extern "C" | 1979 } // extern "C" |
1974 } // namespace libyuv | 1980 } // namespace libyuv |
1975 #endif | 1981 #endif |
1976 | 1982 |
1977 #endif // INCLUDE_LIBYUV_ROW_H_ | 1983 #endif // INCLUDE_LIBYUV_ROW_H_ |
OLD | NEW |