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

Unified Diff: media/base/yuv_convert.cc

Issue 12263013: media: Add support for playback of VP8 Alpha video streams (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 8 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 | « media/base/yuv_convert.h ('k') | media/ffmpeg/ffmpeg_common.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/yuv_convert.cc
diff --git a/media/base/yuv_convert.cc b/media/base/yuv_convert.cc
index 85b06995b512f70c2929ad8f28a3ccc50d1ef029..1d09a244010fca7540ab096f29805969680702ac 100644
--- a/media/base/yuv_convert.cc
+++ b/media/base/yuv_convert.cc
@@ -603,4 +603,34 @@ void ConvertYUVToRGB32(const uint8* yplane,
#endif
}
+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) {
+#if defined(ARCH_CPU_ARM_FAMILY) || defined(ARCH_CPU_MIPS_FAMILY)
+ ConvertYUVAToARGB_C(yplane, uplane, vplane, aplane, rgbframe,
+ width, height, ystride, uvstride, astride, rgbstride,
+ yuv_type);
+#else
+ static ConvertYUVAToARGBProc convert_proc = NULL;
+ if (!convert_proc) {
+ base::CPU cpu;
+ if (cpu.has_mmx())
+ convert_proc = &ConvertYUVAToARGB_MMX;
+ else
+ convert_proc = &ConvertYUVAToARGB_C;
+ }
+ convert_proc(yplane, uplane, vplane, aplane, rgbframe,
+ width, height, ystride, uvstride, astride, rgbstride, yuv_type);
+#endif
+}
+
} // namespace media
« no previous file with comments | « media/base/yuv_convert.h ('k') | media/ffmpeg/ffmpeg_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698