| OLD | NEW |
| 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 #ifndef MEDIA_BASE_SIMD_CONVERT_YUV_TO_RGB_H_ | 5 #ifndef MEDIA_BASE_SIMD_CONVERT_YUV_TO_RGB_H_ |
| 6 #define MEDIA_BASE_SIMD_CONVERT_YUV_TO_RGB_H_ | 6 #define MEDIA_BASE_SIMD_CONVERT_YUV_TO_RGB_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "media/base/yuv_convert.h" | 9 #include "media/base/yuv_convert.h" |
| 10 | 10 |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 int width, | 138 int width, |
| 139 int source_dx); | 139 int source_dx); |
| 140 | 140 |
| 141 void LinearScaleYUVToRGB32Row_MMX_X64(const uint8* y_buf, | 141 void LinearScaleYUVToRGB32Row_MMX_X64(const uint8* y_buf, |
| 142 const uint8* u_buf, | 142 const uint8* u_buf, |
| 143 const uint8* v_buf, | 143 const uint8* v_buf, |
| 144 uint8* rgb_buf, | 144 uint8* rgb_buf, |
| 145 int width, | 145 int width, |
| 146 int source_dx); | 146 int source_dx); |
| 147 | 147 |
| 148 } | 148 } // extern "C" |
| 149 | 149 |
| 150 #endif // MEDIA_BASE_SIMD_CONVERT_YUV_TO_RGB_H_ | 150 #endif // MEDIA_BASE_SIMD_CONVERT_YUV_TO_RGB_H_ |
| OLD | NEW |