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

Side by Side Diff: media/base/vector_math.cc

Issue 10868037: Split AudioRendererMixer::VectorFMAC into VectorMath library. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Comments. Lint. Created 8 years, 4 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/vector_math.h ('k') | media/base/vector_math_testing.h » ('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) 2012 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 #include "media/base/vector_math.h"
6 #include "media/base/vector_math_testing.h"
7
8 #include "base/cpu.h"
9 #include "base/logging.h"
10 #include "build/build_config.h"
11
12 #if defined(ARCH_CPU_X86_FAMILY) && defined(__SSE__)
13 #include <xmmintrin.h>
14 #endif
15
16 namespace media {
17 namespace vector_math {
18
19 void FMAC(const float src[], float scale, int len, float dest[]) {
20 // Ensure |src| and |dest| are 16-byte aligned.
21 DCHECK_EQ(0u, reinterpret_cast<uintptr_t>(src) & (kRequiredAlignment - 1));
22 DCHECK_EQ(0u, reinterpret_cast<uintptr_t>(dest) & (kRequiredAlignment - 1));
23
24 // Rely on function level static initialization to keep VectorFMACProc
25 // selection thread safe.
26 typedef void (*VectorFMACProc)(const float src[], float scale, int len,
27 float dest[]);
28 #if defined(ARCH_CPU_X86_FAMILY) && defined(__SSE__)
29 static const VectorFMACProc kVectorFMACProc =
30 base::CPU().has_sse() ? FMAC_SSE : FMAC_C;
31 #else
32 static const VectorFMACProc kVectorFMACProc = FMAC_C;
33 #endif
34
35 return kVectorFMACProc(src, scale, len, dest);
36 }
37
38 void FMAC_C(const float src[], float scale, int len, float dest[]) {
39 for (int i = 0; i < len; ++i)
40 dest[i] += src[i] * scale;
41 }
42
43 #if defined(ARCH_CPU_X86_FAMILY) && defined(__SSE__)
44 void FMAC_SSE(const float src[], float scale, int len, float dest[]) {
45 __m128 m_scale = _mm_set_ps1(scale);
46 int rem = len % 4;
47 for (int i = 0; i < len - rem; i += 4) {
48 _mm_store_ps(dest + i, _mm_add_ps(_mm_load_ps(dest + i),
49 _mm_mul_ps(_mm_load_ps(src + i), m_scale)));
50 }
51
52 // Handle any remaining values that wouldn't fit in an SSE pass.
53 if (rem)
54 FMAC_C(src + len - rem, scale, rem, dest + len - rem);
55 }
56 #endif
57
58 } // namespace vector_math
59 } // namespace media
OLDNEW
« no previous file with comments | « media/base/vector_math.h ('k') | media/base/vector_math_testing.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698