Make callers of CommandLine use it via the base:: namespace.
[chromium-blink-merge.git] / media / base / simd / convert_yuv_to_rgb_sse.asm
blob44b123fcdd1987dfe93887e52ac88f6902f1f573
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
3 ; found in the LICENSE file.
5 %include "third_party/x86inc/x86inc.asm"
8 ; This file uses MMX and SSE instructions.
10 SECTION_TEXT
11 CPU MMX, SSE
13 ; Use SSE instruction movntq can write faster.
14 %define MOVQ movntq
17 ; extern "C" void ConvertYUVToRGB32Row_SSE(const uint8* y_buf,
18 ; const uint8* u_buf,
19 ; const uint8* v_buf,
20 ; uint8* rgb_buf,
21 ; ptrdiff_t width);
22 ; const int16 convert_table[1024][4]);
23 %define SYMBOL ConvertYUVToRGB32Row_SSE
24 %include "convert_yuv_to_rgb_mmx.inc"