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

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

Issue 7891039: Resubmit - Rewrite color space conversions suite using YASM" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « media/base/simd/convert_yuv_to_rgb_x86.cc ('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 "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_
OLDNEW
« no previous file with comments | « media/base/simd/convert_yuv_to_rgb_x86.cc ('k') | media/base/simd/filter_yuv_c.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698