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

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

Issue 1535493002: roll to same version of chromium as head webrtc (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: use var for interpolant on neon armv7 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 | « no previous file | source/planar_functions.cc » ('j') | 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 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 #define HAS_ARGBMIRRORROW_SSE2 168 #define HAS_ARGBMIRRORROW_SSE2
169 #define HAS_ARGBMULTIPLYROW_SSE2 169 #define HAS_ARGBMULTIPLYROW_SSE2
170 #define HAS_ARGBPOLYNOMIALROW_SSE2 170 #define HAS_ARGBPOLYNOMIALROW_SSE2
171 #define HAS_ARGBQUANTIZEROW_SSE2 171 #define HAS_ARGBQUANTIZEROW_SSE2
172 #define HAS_ARGBSEPIAROW_SSSE3 172 #define HAS_ARGBSEPIAROW_SSSE3
173 #define HAS_ARGBSHADEROW_SSE2 173 #define HAS_ARGBSHADEROW_SSE2
174 #define HAS_ARGBSUBTRACTROW_SSE2 174 #define HAS_ARGBSUBTRACTROW_SSE2
175 #define HAS_ARGBUNATTENUATEROW_SSE2 175 #define HAS_ARGBUNATTENUATEROW_SSE2
176 #define HAS_COMPUTECUMULATIVESUMROW_SSE2 176 #define HAS_COMPUTECUMULATIVESUMROW_SSE2
177 #define HAS_CUMULATIVESUMTOAVERAGEROW_SSE2 177 #define HAS_CUMULATIVESUMTOAVERAGEROW_SSE2
178 #define HAS_INTERPOLATEROW_SSE2
179 #define HAS_INTERPOLATEROW_SSSE3 178 #define HAS_INTERPOLATEROW_SSSE3
180 #define HAS_RGBCOLORTABLEROW_X86 179 #define HAS_RGBCOLORTABLEROW_X86
181 #define HAS_SOBELROW_SSE2 180 #define HAS_SOBELROW_SSE2
182 #define HAS_SOBELTOPLANEROW_SSE2 181 #define HAS_SOBELTOPLANEROW_SSE2
183 #define HAS_SOBELXROW_SSE2 182 #define HAS_SOBELXROW_SSE2
184 #define HAS_SOBELXYROW_SSE2 183 #define HAS_SOBELXYROW_SSE2
185 #define HAS_SOBELYROW_SSE2 184 #define HAS_SOBELYROW_SSE2
186 #define HAS_BLENDPLANEROW_SSSE3 185 #define HAS_BLENDPLANEROW_SSSE3
187 #endif 186 #endif
188 187
(...skipping 1642 matching lines...) Expand 10 before | Expand all | Expand 10 after
1831 void ARGBAffineRow_C(const uint8* src_argb, int src_argb_stride, 1830 void ARGBAffineRow_C(const uint8* src_argb, int src_argb_stride,
1832 uint8* dst_argb, const float* uv_dudv, int width); 1831 uint8* dst_argb, const float* uv_dudv, int width);
1833 LIBYUV_API 1832 LIBYUV_API
1834 void ARGBAffineRow_SSE2(const uint8* src_argb, int src_argb_stride, 1833 void ARGBAffineRow_SSE2(const uint8* src_argb, int src_argb_stride,
1835 uint8* dst_argb, const float* uv_dudv, int width); 1834 uint8* dst_argb, const float* uv_dudv, int width);
1836 1835
1837 // Used for I420Scale, ARGBScale, and ARGBInterpolate. 1836 // Used for I420Scale, ARGBScale, and ARGBInterpolate.
1838 void InterpolateRow_C(uint8* dst_ptr, const uint8* src_ptr, 1837 void InterpolateRow_C(uint8* dst_ptr, const uint8* src_ptr,
1839 ptrdiff_t src_stride_ptr, 1838 ptrdiff_t src_stride_ptr,
1840 int width, int source_y_fraction); 1839 int width, int source_y_fraction);
1841 void InterpolateRow_SSE2(uint8* dst_ptr, const uint8* src_ptr,
1842 ptrdiff_t src_stride_ptr, int width,
1843 int source_y_fraction);
1844 void InterpolateRow_SSSE3(uint8* dst_ptr, const uint8* src_ptr, 1840 void InterpolateRow_SSSE3(uint8* dst_ptr, const uint8* src_ptr,
1845 ptrdiff_t src_stride_ptr, int width, 1841 ptrdiff_t src_stride_ptr, int width,
1846 int source_y_fraction); 1842 int source_y_fraction);
1847 void InterpolateRow_AVX2(uint8* dst_ptr, const uint8* src_ptr, 1843 void InterpolateRow_AVX2(uint8* dst_ptr, const uint8* src_ptr,
1848 ptrdiff_t src_stride_ptr, int width, 1844 ptrdiff_t src_stride_ptr, int width,
1849 int source_y_fraction); 1845 int source_y_fraction);
1850 void InterpolateRow_NEON(uint8* dst_ptr, const uint8* src_ptr, 1846 void InterpolateRow_NEON(uint8* dst_ptr, const uint8* src_ptr,
1851 ptrdiff_t src_stride_ptr, int width, 1847 ptrdiff_t src_stride_ptr, int width,
1852 int source_y_fraction); 1848 int source_y_fraction);
1853 void InterpolateRow_MIPS_DSPR2(uint8* dst_ptr, const uint8* src_ptr, 1849 void InterpolateRow_MIPS_DSPR2(uint8* dst_ptr, const uint8* src_ptr,
1854 ptrdiff_t src_stride_ptr, int width, 1850 ptrdiff_t src_stride_ptr, int width,
1855 int source_y_fraction); 1851 int source_y_fraction);
1856 void InterpolateRow_Any_NEON(uint8* dst_ptr, const uint8* src_ptr, 1852 void InterpolateRow_Any_NEON(uint8* dst_ptr, const uint8* src_ptr,
1857 ptrdiff_t src_stride_ptr, int width, 1853 ptrdiff_t src_stride_ptr, int width,
1858 int source_y_fraction); 1854 int source_y_fraction);
1859 void InterpolateRow_Any_SSE2(uint8* dst_ptr, const uint8* src_ptr,
1860 ptrdiff_t src_stride_ptr, int width,
1861 int source_y_fraction);
1862 void InterpolateRow_Any_SSSE3(uint8* dst_ptr, const uint8* src_ptr, 1855 void InterpolateRow_Any_SSSE3(uint8* dst_ptr, const uint8* src_ptr,
1863 ptrdiff_t src_stride_ptr, int width, 1856 ptrdiff_t src_stride_ptr, int width,
1864 int source_y_fraction); 1857 int source_y_fraction);
1865 void InterpolateRow_Any_AVX2(uint8* dst_ptr, const uint8* src_ptr, 1858 void InterpolateRow_Any_AVX2(uint8* dst_ptr, const uint8* src_ptr,
1866 ptrdiff_t src_stride_ptr, int width, 1859 ptrdiff_t src_stride_ptr, int width,
1867 int source_y_fraction); 1860 int source_y_fraction);
1868 void InterpolateRow_Any_MIPS_DSPR2(uint8* dst_ptr, const uint8* src_ptr, 1861 void InterpolateRow_Any_MIPS_DSPR2(uint8* dst_ptr, const uint8* src_ptr,
1869 ptrdiff_t src_stride_ptr, int width, 1862 ptrdiff_t src_stride_ptr, int width,
1870 int source_y_fraction); 1863 int source_y_fraction);
1871 1864
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
1932 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, 1925 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb,
1933 int width, 1926 int width,
1934 const uint8* luma, uint32 lumacoeff); 1927 const uint8* luma, uint32 lumacoeff);
1935 1928
1936 #ifdef __cplusplus 1929 #ifdef __cplusplus
1937 } // extern "C" 1930 } // extern "C"
1938 } // namespace libyuv 1931 } // namespace libyuv
1939 #endif 1932 #endif
1940 1933
1941 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT 1934 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT
OLDNEW
« no previous file with comments | « no previous file | source/planar_functions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698