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

Side by Side Diff: source/row_any.cc

Issue 2393393006: YUY2ToI422 coalesce rows for small images (Closed)
Patch Set: fix for YUY2ToY any Created 4 years, 2 months 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/planar_functions.cc ('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 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 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 #ifdef HAS_ARGB1555TOYROW_NEON 433 #ifdef HAS_ARGB1555TOYROW_NEON
434 ANY11(ARGB1555ToYRow_Any_NEON, ARGB1555ToYRow_NEON, 0, 2, 1, 7) 434 ANY11(ARGB1555ToYRow_Any_NEON, ARGB1555ToYRow_NEON, 0, 2, 1, 7)
435 #endif 435 #endif
436 #ifdef HAS_ARGB4444TOYROW_NEON 436 #ifdef HAS_ARGB4444TOYROW_NEON
437 ANY11(ARGB4444ToYRow_Any_NEON, ARGB4444ToYRow_NEON, 0, 2, 1, 7) 437 ANY11(ARGB4444ToYRow_Any_NEON, ARGB4444ToYRow_NEON, 0, 2, 1, 7)
438 #endif 438 #endif
439 #ifdef HAS_YUY2TOYROW_NEON 439 #ifdef HAS_YUY2TOYROW_NEON
440 ANY11(YUY2ToYRow_Any_NEON, YUY2ToYRow_NEON, 1, 4, 1, 15) 440 ANY11(YUY2ToYRow_Any_NEON, YUY2ToYRow_NEON, 1, 4, 1, 15)
441 #endif 441 #endif
442 #ifdef HAS_UYVYTOYROW_NEON 442 #ifdef HAS_UYVYTOYROW_NEON
443 ANY11(UYVYToYRow_Any_NEON, UYVYToYRow_NEON, 0, 2, 1, 15) 443 ANY11(UYVYToYRow_Any_NEON, UYVYToYRow_NEON, 1, 4, 1, 15)
444 #endif 444 #endif
445 #ifdef HAS_YUY2TOYROW_MSA 445 #ifdef HAS_YUY2TOYROW_MSA
446 ANY11(YUY2ToYRow_Any_MSA, YUY2ToYRow_MSA, 1, 4, 1, 31) 446 ANY11(YUY2ToYRow_Any_MSA, YUY2ToYRow_MSA, 1, 4, 1, 31)
447 #endif 447 #endif
448 #ifdef HAS_UYVYTOYROW_MSA 448 #ifdef HAS_UYVYTOYROW_MSA
449 ANY11(UYVYToYRow_Any_MSA, UYVYToYRow_MSA, 0, 2, 1, 31) 449 ANY11(UYVYToYRow_Any_MSA, UYVYToYRow_MSA, 1, 4, 1, 31)
450 #endif 450 #endif
451 #ifdef HAS_RGB24TOARGBROW_NEON 451 #ifdef HAS_RGB24TOARGBROW_NEON
452 ANY11(RGB24ToARGBRow_Any_NEON, RGB24ToARGBRow_NEON, 0, 3, 4, 7) 452 ANY11(RGB24ToARGBRow_Any_NEON, RGB24ToARGBRow_NEON, 0, 3, 4, 7)
453 #endif 453 #endif
454 #ifdef HAS_RAWTOARGBROW_NEON 454 #ifdef HAS_RAWTOARGBROW_NEON
455 ANY11(RAWToARGBRow_Any_NEON, RAWToARGBRow_NEON, 0, 3, 4, 7) 455 ANY11(RAWToARGBRow_Any_NEON, RAWToARGBRow_NEON, 0, 3, 4, 7)
456 #endif 456 #endif
457 #ifdef HAS_RGB565TOARGBROW_NEON 457 #ifdef HAS_RGB565TOARGBROW_NEON
458 ANY11(RGB565ToARGBRow_Any_NEON, RGB565ToARGBRow_NEON, 0, 2, 4, 7) 458 ANY11(RGB565ToARGBRow_Any_NEON, RGB565ToARGBRow_NEON, 0, 2, 4, 7)
459 #endif 459 #endif
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
863 #endif 863 #endif
864 #ifdef HAS_UYVYTOUVROW_MSA 864 #ifdef HAS_UYVYTOUVROW_MSA
865 ANY12S(UYVYToUVRow_Any_MSA, UYVYToUVRow_MSA, 1, 4, 31) 865 ANY12S(UYVYToUVRow_Any_MSA, UYVYToUVRow_MSA, 1, 4, 31)
866 #endif 866 #endif
867 #undef ANY12S 867 #undef ANY12S
868 868
869 #ifdef __cplusplus 869 #ifdef __cplusplus
870 } // extern "C" 870 } // extern "C"
871 } // namespace libyuv 871 } // namespace libyuv
872 #endif 872 #endif
OLDNEW
« no previous file with comments | « source/planar_functions.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698