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

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

Issue 12211067: Change prototypes to yuv_convert_simd_x86 yasm and equivalent C to portably sign extend int args (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove extra line 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 unified diff | Download patch | 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 "third_party/x86inc/x86inc.asm" 5 %include "third_party/x86inc/x86inc.asm"
6 6
7 ; 7 ;
8 ; This file uses MMX and SSE instructions. 8 ; This file uses MMX and SSE instructions.
9 ; 9 ;
10 SECTION_TEXT 10 SECTION_TEXT
11 CPU MMX, SSE 11 CPU MMX, SSE
12 12
13 ; Use SSE instruction movntq can write faster. 13 ; Use SSE instruction movntq can write faster.
14 %define MOVQ movntq 14 %define MOVQ movntq
15 15
16 ; 16 ;
17 ; extern "C" void ConvertYUVToRGB32Row_SSE(const uint8* y_buf, 17 ; extern "C" void ConvertYUVToRGB32Row_SSE(const uint8* y_buf,
18 ; const uint8* u_buf, 18 ; const uint8* u_buf,
19 ; const uint8* v_buf, 19 ; const uint8* v_buf,
20 ; uint8* rgb_buf, 20 ; uint8* rgb_buf,
21 ; int width); 21 ; ptrdiff_t width);
22 %define SYMBOL ConvertYUVToRGB32Row_SSE 22 %define SYMBOL ConvertYUVToRGB32Row_SSE
23 %include "convert_yuv_to_rgb_mmx.inc" 23 %include "convert_yuv_to_rgb_mmx.inc"
OLDNEW
« no previous file with comments | « media/base/simd/convert_yuv_to_rgb_mmx.asm ('k') | media/base/simd/linear_scale_yuv_to_rgb_mmx.asm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698