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

Side by Side Diff: source/row_any.cc

Issue 1422263002: refactor I420AlphaToABGR to use I420AlphaToARGB internally (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: Created 5 years, 1 month 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 | « source/convert_argb.cc ('k') | source/row_common.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 2012 The LibYuv Project Authors. All rights reserved. 2 * Copyright 2012 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 28 matching lines...) Expand all
39 memcpy(temp + 128, v_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \ 39 memcpy(temp + 128, v_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
40 memcpy(temp + 192, a_buf + n, r); \ 40 memcpy(temp + 192, a_buf + n, r); \
41 ANY_SIMD(temp, temp + 64, temp + 128, temp + 192, temp + 256, \ 41 ANY_SIMD(temp, temp + 64, temp + 128, temp + 192, temp + 256, \
42 yuvconstants, MASK + 1); \ 42 yuvconstants, MASK + 1); \
43 memcpy(dst_ptr + (n >> DUVSHIFT) * BPP, temp + 256, \ 43 memcpy(dst_ptr + (n >> DUVSHIFT) * BPP, temp + 256, \
44 SS(r, DUVSHIFT) * BPP); \ 44 SS(r, DUVSHIFT) * BPP); \
45 } 45 }
46 46
47 #ifdef HAS_I422ALPHATOARGBROW_SSSE3 47 #ifdef HAS_I422ALPHATOARGBROW_SSSE3
48 ANY41C(I422AlphaToARGBRow_Any_SSSE3, I422AlphaToARGBRow_SSSE3, 1, 0, 4, 7) 48 ANY41C(I422AlphaToARGBRow_Any_SSSE3, I422AlphaToARGBRow_SSSE3, 1, 0, 4, 7)
49 ANY41C(I422AlphaToABGRRow_Any_SSSE3, I422AlphaToABGRRow_SSSE3, 1, 0, 4, 7)
50 #endif 49 #endif
51 #ifdef HAS_I422ALPHATOARGBROW_AVX2 50 #ifdef HAS_I422ALPHATOARGBROW_AVX2
52 ANY41C(I422AlphaToARGBRow_Any_AVX2, I422AlphaToARGBRow_AVX2, 1, 0, 4, 7) 51 ANY41C(I422AlphaToARGBRow_Any_AVX2, I422AlphaToARGBRow_AVX2, 1, 0, 4, 7)
53 ANY41C(I422AlphaToABGRRow_Any_AVX2, I422AlphaToABGRRow_AVX2, 1, 0, 4, 7)
54 #endif 52 #endif
55 #undef ANY41C 53 #undef ANY41C
56 54
57 // Any 3 planes to 1. 55 // Any 3 planes to 1.
58 #define ANY31(NAMEANY, ANY_SIMD, UVSHIFT, DUVSHIFT, BPP, MASK) \ 56 #define ANY31(NAMEANY, ANY_SIMD, UVSHIFT, DUVSHIFT, BPP, MASK) \
59 void NAMEANY(const uint8* y_buf, const uint8* u_buf, const uint8* v_buf, \ 57 void NAMEANY(const uint8* y_buf, const uint8* u_buf, const uint8* v_buf, \
60 uint8* dst_ptr, int width) { \ 58 uint8* dst_ptr, int width) { \
61 SIMD_ALIGNED(uint8 temp[64 * 4]); \ 59 SIMD_ALIGNED(uint8 temp[64 * 4]); \
62 memset(temp, 0, 64 * 3); /* for YUY2 and msan */ \ 60 memset(temp, 0, 64 * 3); /* for YUY2 and msan */ \
63 int r = width & MASK; \ 61 int r = width & MASK; \
(...skipping 747 matching lines...) Expand 10 before | Expand all | Expand 10 after
811 #endif 809 #endif
812 #ifdef HAS_UYVYTOUVROW_NEON 810 #ifdef HAS_UYVYTOUVROW_NEON
813 ANY12S(UYVYToUVRow_Any_NEON, UYVYToUVRow_NEON, 1, 4, 15) 811 ANY12S(UYVYToUVRow_Any_NEON, UYVYToUVRow_NEON, 1, 4, 15)
814 #endif 812 #endif
815 #undef ANY12S 813 #undef ANY12S
816 814
817 #ifdef __cplusplus 815 #ifdef __cplusplus
818 } // extern "C" 816 } // extern "C"
819 } // namespace libyuv 817 } // namespace libyuv
820 #endif 818 #endif
OLDNEW
« no previous file with comments | « source/convert_argb.cc ('k') | source/row_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698