Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1181)

Side by Side Diff: media/base/simd/filter_yuv.h

Issue 2694113002: Delete media/base/yuv_convert and dependents. Prefer libyuv. (Closed)
Patch Set: Fix media_unittests. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/base/simd/empty_register_state_mmx.asm ('k') | media/base/simd/filter_yuv_c.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 <stdint.h>
9
10 #include "media/base/media_export.h"
11
12 namespace media {
13
14 // These methods are exported for testing purposes only. Library users should
15 // only call the methods listed in yuv_convert.h.
16
17 MEDIA_EXPORT void FilterYUVRows_C(uint8_t* ybuf,
18 const uint8_t* y0_ptr,
19 const uint8_t* y1_ptr,
20 int source_width,
21 uint8_t source_y_fraction);
22
23 MEDIA_EXPORT void FilterYUVRows_SSE2(uint8_t* ybuf,
24 const uint8_t* y0_ptr,
25 const uint8_t* y1_ptr,
26 int source_width,
27 uint8_t source_y_fraction);
28
29 } // namespace media
30
31 #endif // MEDIA_BASE_SIMD_FILTER_YUV_H_
OLDNEW
« no previous file with comments | « media/base/simd/empty_register_state_mmx.asm ('k') | media/base/simd/filter_yuv_c.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698