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

Unified Diff: source/row_neon64.cc

Issue 1353923003: j422toabgr neon port using i422toabgr matrix function. (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « source/row_neon.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/row_neon64.cc
diff --git a/source/row_neon64.cc b/source/row_neon64.cc
index 2b3eff40d37ec8657c2f769aec81d27b0b684b35..ab74c792d75caab1164b8e5039bf2451882ed9a2 100644
--- a/source/row_neon64.cc
+++ b/source/row_neon64.cc
@@ -205,6 +205,7 @@ void I444ToARGBRow_NEON(const uint8* src_y,
}
#endif // HAS_I444TOARGBROW_NEON
+// TODO(fbarchard): Switch to Matrix version of this function.
#ifdef HAS_I422TOARGBROW_NEON
void I422ToARGBRow_NEON(const uint8* src_y,
const uint8* src_u,
@@ -292,6 +293,7 @@ void I422ToBGRARow_NEON(const uint8* src_y,
}
#endif // HAS_I422TOBGRAROW_NEON
+// TODO(fbarchard): Switch to Matrix version of this function.
#ifdef HAS_I422TOABGRROW_NEON
void I422ToABGRRow_NEON(const uint8* src_y,
const uint8* src_u,
« no previous file with comments | « source/row_neon.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698