Chromium Code Reviews

Side by Side Diff: media/base/simd/convert_yuva_to_argb_mmx.asm

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.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
1 ; Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 ; Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 ; Use of this source code is governed by a BSD-style license that can be 2 ; Use of this source code is governed by a BSD-style license that can be
3 ; found in the LICENSE file. 3 ; found in the LICENSE file.
4 4
5 %include "x86inc.asm" 5 %include "x86inc.asm"
6 6
7 ; 7 ;
8 ; This file uses MMX instructions. 8 ; This file uses MMX instructions.
9 ; 9 ;
10 SECTION_TEXT 10 SECTION_TEXT
11 CPU MMX 11 CPU MMX
12 12
13 ; Use movq to save the output. 13 ; Use movq to save the output.
14 %define MOVQ movq 14 %define MOVQ movq
15 15
16 ; extern "C" void ConvertYUVToRGB32Row_MMX(const uint8* y_buf, 16 ; extern "C" void ConvertYUVAToARGBRow_MMX(const uint8* y_buf,
17 ; const uint8* u_buf, 17 ; const uint8* u_buf,
18 ; const uint8* v_buf, 18 ; const uint8* v_buf,
19 ; const uint8* a_buf,
19 ; uint8* rgb_buf, 20 ; uint8* rgb_buf,
20 ; int width); 21 ; int width);
21 %define SYMBOL ConvertYUVToRGB32Row_MMX 22 %define SYMBOL ConvertYUVAToARGBRow_MMX
22 %include "convert_yuv_to_rgb_mmx.inc" 23 %include "convert_yuva_to_argb_mmx.inc"
OLDNEW

Powered by Google App Engine