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

Unified Diff: include/libyuv/row.h

Issue 1351993003: NEON J422ToABGR and H422ToABGR prototypes (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: any functions prototyped 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/libyuv/row.h
diff --git a/include/libyuv/row.h b/include/libyuv/row.h
index 393ca466bbe517686a057bc56f1db2a8cce1d385..b7e9d5c9be28a6bb09b5c23894e1b2b140ca1e8a 100644
--- a/include/libyuv/row.h
+++ b/include/libyuv/row.h
@@ -617,6 +617,16 @@ void H422ToARGBRow_NEON(const uint8* src_y,
const uint8* src_v,
uint8* dst_argb,
int width);
+void J422ToABGRRow_NEON(const uint8* src_y,
+ const uint8* src_u,
+ const uint8* src_v,
+ uint8* dst_abgr,
+ int width);
+void H422ToABGRRow_NEON(const uint8* src_y,
+ const uint8* src_u,
+ const uint8* src_v,
+ uint8* dst_abgr,
+ int width);
void NV12ToARGBRow_NEON(const uint8* src_y,
const uint8* src_uv,
uint8* dst_argb,
@@ -1693,6 +1703,16 @@ void H422ToARGBRow_Any_NEON(const uint8* src_y,
const uint8* src_v,
uint8* dst_argb,
int width);
+void J422ToABGRRow_Any_NEON(const uint8* src_y,
+ const uint8* src_u,
+ const uint8* src_v,
+ uint8* dst_abgr,
+ int width);
+void H422ToABGRRow_Any_NEON(const uint8* src_y,
+ const uint8* src_u,
+ const uint8* src_v,
+ uint8* dst_abgr,
+ int width);
void NV12ToARGBRow_Any_NEON(const uint8* src_y,
const uint8* src_uv,
uint8* dst_argb,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698