wmiller848 / libyuv

Automatically exported from code.google.com/p/libyuv
BSD 3-Clause "New" or "Revised" License
1 stars 1 forks source link

libyuv::ABGRToARGB optimize #271

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
libyuv::ABGRToARGB is used alot - explore ways to make it faster.
Currently its SSSE3
libyuvTest.ABGRToARGB_Any (373 ms)
libyuvTest.ABGRToARGB_Unaligned (309 ms)
libyuvTest.ABGRToARGB_Invert (307 ms)
libyuvTest.ABGRToARGB_Opt (298 ms)
and Neon
ABGRToARGB_Any (4580 ms)
ABGRToARGB_Invert (2125 ms)
ABGRToARGB_Unaligned (2102 ms)
ABGRToARGB_Opt (2037 ms)

Original issue reported on code.google.com by fbarch...@google.com on 26 Sep 2013 at 12:31