Index: media/base/yuv_convert.h |
diff --git a/media/base/yuv_convert.h b/media/base/yuv_convert.h |
index afd47d79ca1ea836a4a9852b8fb1cd224287344e..c4433c636bfe495d5cfb8d7ff39de6fc8876acd1 100644 |
--- a/media/base/yuv_convert.h |
+++ b/media/base/yuv_convert.h |
@@ -50,6 +50,21 @@ void ConvertYUVToRGB32(const uint8* yplane, |
int rgbstride, |
YUVType yuv_type); |
+// Convert a frame of YUVA to 32 bit ARGB. |
+// Pass in YV12A |
+void ConvertYUVAToARGB(const uint8* yplane, |
+ const uint8* uplane, |
+ const uint8* vplane, |
+ const uint8* aplane, |
+ uint8* rgbframe, |
+ int width, |
+ int height, |
+ int ystride, |
+ int uvstride, |
+ int astride, |
+ int rgbstride, |
+ YUVType yuv_type); |
+ |
// Scale a frame of YUV to 32 bit ARGB. |
// Supports rotation and mirroring. |
void ScaleYUVToRGB32(const uint8* yplane, |