Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Side by Side Diff: include/libyuv/rotate_row.h

Issue 1527243002: Fix MIPS DSPR2 build failure. (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv.git@master
Patch Set: Increase revision number. Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « README.chromium ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698