Chromium Code Reviews| Index: media/base/simd/convert_yuv_to_rgb_ssse3.h |
| =================================================================== |
| --- media/base/simd/convert_yuv_to_rgb_ssse3.h (revision 0) |
| +++ media/base/simd/convert_yuv_to_rgb_ssse3.h (revision 0) |
| @@ -0,0 +1,32 @@ |
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef MEDIA_BASE_SIMD_CONVERT_YUV_TO_RGB_SSSE3_H_ |
| +#define MEDIA_BASE_SIMD_CONVERT_YUV_TO_RGB_SSSE3_H_ |
| + |
| +namespace media { |
| +namespace simd { |
| + |
| +// The header file for ASM functions that convert a row of pixels with SSSE3 |
| +// instructions so we can call them from C++ code. These functions are |
| +// implemented in "convert_yuv_to_rgb_ssse3.asm". |
| + |
| +// Convert a row of YV12 pixels to 24-bit RGB pixels. |
| +void ConvertYUVtoRGBRow(const uint8* y, |
|
Alpha Left Google
2011/09/01 13:24:45
Add _SSSE3 suffix.
|
| + const uint8* u, |
| + const uint8* v, |
| + uint8* rgb, |
| + int width); |
| + |
| +// Convert a row of YV12 pixels to 32-bit RGB pixels. |
| +void ConvertYUVtoARGBRow(const uint8* y, |
|
Alpha Left Google
2011/09/01 13:24:45
Add _SSSE3 suffix.
|
| + const uint8* u, |
| + const uint8* v, |
| + uint8* argb, |
| + int width); |
| + |
| +} // namespace simd |
| +} // namespace media |
| + |
| +#endif // MEDIA_BASE_SIMD_CONVERT_YUV_TO_RGB_SSSE3_H_ |
| Property changes on: media\base\simd\convert_yuv_to_rgb_ssse3.h |
| ___________________________________________________________________ |
| Added: svn:eol-style |
| + LF |