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

Unified Diff: media/base/simd/convert_yuva_to_argb_mmx.asm

Issue 12263013: media: Add support for playback of VP8 Alpha video streams (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressing comments on patchset 2 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/simd/convert_yuva_to_argb_mmx.asm
diff --git a/media/base/simd/convert_yuv_to_rgb_mmx.asm b/media/base/simd/convert_yuva_to_argb_mmx.asm
similarity index 72%
copy from media/base/simd/convert_yuv_to_rgb_mmx.asm
copy to media/base/simd/convert_yuva_to_argb_mmx.asm
index e0444749726dcd3df4c8a10962e7925918419e66..a7eb921be6cdad9f362e1be876159150bc27f528 100644
--- a/media/base/simd/convert_yuv_to_rgb_mmx.asm
+++ b/media/base/simd/convert_yuva_to_argb_mmx.asm
@@ -13,10 +13,11 @@
; Use movq to save the output.
%define MOVQ movq
-; extern "C" void ConvertYUVToRGB32Row_MMX(const uint8* y_buf,
+; extern "C" void ConvertYUVAToARGBRow_MMX(const uint8* y_buf,
; const uint8* u_buf,
; const uint8* v_buf,
+; const uint8* a_buf,
; uint8* rgb_buf,
; int width);
-%define SYMBOL ConvertYUVToRGB32Row_MMX
-%include "convert_yuv_to_rgb_mmx.inc"
+%define SYMBOL ConvertYUVAToARGBRow_MMX
+%include "convert_yuva_to_argb_mmx.inc"

Powered by Google App Engine
This is Rietveld 408576698