| 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 #include "media/base/simd/convert_rgb_to_yuv.h" | 5 #include "media/base/simd/convert_rgb_to_yuv.h" |
| 6 | 6 |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 #include "media/base/cpu_features.h" | 8 #include "media/base/cpu_features.h" |
| 9 #include "media/base/simd/convert_rgb_to_yuv_ssse3.h" | 9 #include "media/base/simd/convert_rgb_to_yuv_ssse3.h" |
| 10 | 10 |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 uplane += uvstride; | 92 uplane += uvstride; |
| 93 vplane += uvstride; | 93 vplane += uvstride; |
| 94 } | 94 } |
| 95 | 95 |
| 96 if (height) | 96 if (height) |
| 97 ConvertRGBToYUVRow_SSSE3(rgbframe, yplane, uplane, vplane, width); | 97 ConvertRGBToYUVRow_SSSE3(rgbframe, yplane, uplane, vplane, width); |
| 98 #endif | 98 #endif |
| 99 } | 99 } |
| 100 | 100 |
| 101 } // namespace media | 101 } // namespace media |
| OLD | NEW |