Revert of Add correct support for videos with YUVJ420P color format, in the software...
[chromium-blink-merge.git] / media / base / simd / convert_yuva_to_argb_mmx.asm
blobb39315dc461bb61e003f467c13f3925b9a8b3368
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 instructions.
10 SECTION_TEXT
11 CPU MMX
13 ; Use movq to save the output.
14 %define MOVQ movq
16 ; extern "C" void ConvertYUVAToARGBRow_MMX(const uint8* y_buf,
17 ; const uint8* u_buf,
18 ; const uint8* v_buf,
19 ; const uint8* a_buf,
20 ; uint8* rgb_buf,
21 ; ptrdiff_t width);
22 %define SYMBOL ConvertYUVAToARGBRow_MMX
23 %include "convert_yuva_to_argb_mmx.inc"