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

Unified Diff: media/base/yuv_convert.h

Issue 12157002: Adding YUVA support for enabling Alpha Playback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moving VP8 Alpha Playback behind its own flag Created 7 years, 10 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
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,

Powered by Google App Engine
This is Rietveld 408576698