Commit 158d4079 authored by Frank Barchard's avatar Frank Barchard

NEON J422ToABGR and H422ToABGR missing prototypes

TBR=harryjin@google.com
BUG=none

Review URL: https://codereview.chromium.org/1351993003 .
parent bdfd59a7
...@@ -617,6 +617,16 @@ void H422ToARGBRow_NEON(const uint8* src_y, ...@@ -617,6 +617,16 @@ void H422ToARGBRow_NEON(const uint8* src_y,
const uint8* src_v, const uint8* src_v,
uint8* dst_argb, uint8* dst_argb,
int width); 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, void NV12ToARGBRow_NEON(const uint8* src_y,
const uint8* src_uv, const uint8* src_uv,
uint8* dst_argb, uint8* dst_argb,
...@@ -1693,6 +1703,16 @@ void H422ToARGBRow_Any_NEON(const uint8* src_y, ...@@ -1693,6 +1703,16 @@ void H422ToARGBRow_Any_NEON(const uint8* src_y,
const uint8* src_v, const uint8* src_v,
uint8* dst_argb, uint8* dst_argb,
int width); 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, void NV12ToARGBRow_Any_NEON(const uint8* src_y,
const uint8* src_uv, const uint8* src_uv,
uint8* dst_argb, uint8* dst_argb,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment