| OLD | NEW |
| (Empty) | |
| 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. |
| 4 |
| 5 #ifndef MEDIA_BASE_SIMD_FILTER_YUV_H_ |
| 6 #define MEDIA_BASE_SIMD_FILTER_YUV_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 |
| 10 namespace media { |
| 11 |
| 12 typedef void (*FilterYUVRowsProc)(uint8*, |
| 13 const uint8*, |
| 14 const uint8*, |
| 15 int, |
| 16 int); |
| 17 |
| 18 void FilterYUVRows_C(uint8* ybuf, const uint8* y0_ptr, const uint8* y1_ptr, |
| 19 int source_width, int source_y_fraction); |
| 20 |
| 21 void FilterYUVRows_MMX(uint8* ybuf, const uint8* y0_ptr, const uint8* y1_ptr, |
| 22 int source_width, int source_y_fraction); |
| 23 |
| 24 void FilterYUVRows_SSE2(uint8* ybuf, const uint8* y0_ptr, const uint8* y1_ptr, |
| 25 int source_width, int source_y_fraction); |
| 26 |
| 27 } // namespace media |
| 28 |
| 29 #endif // MEDIA_BASE_SIMD_FILTER_YUV_H_ |
| OLD | NEW |