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

Side by Side Diff: Source/platform/audio/AudioResampler.cpp

Issue 64643010: Remove duplicated headers from platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month 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 | « Source/platform/audio/AudioBus.cpp ('k') | Source/platform/audio/HRTFDatabase.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010, Google Inc. All rights reserved. 2 * Copyright (C) 2010, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 11 matching lines...) Expand all
22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */ 23 */
24 24
25 #include "config.h" 25 #include "config.h"
26 26
27 #if ENABLE(WEB_AUDIO) 27 #if ENABLE(WEB_AUDIO)
28 28
29 #include "platform/audio/AudioResampler.h" 29 #include "platform/audio/AudioResampler.h"
30 30
31 #include <algorithm> 31 #include <algorithm>
32 #include "platform/audio/AudioBus.h"
33 #include "wtf/MathExtras.h" 32 #include "wtf/MathExtras.h"
34 33
35 using namespace std; 34 using namespace std;
36 35
37 namespace WebCore { 36 namespace WebCore {
38 37
39 const double AudioResampler::MaxRate = 8.0; 38 const double AudioResampler::MaxRate = 8.0;
40 39
41 AudioResampler::AudioResampler() 40 AudioResampler::AudioResampler()
42 : m_rate(1.0) 41 : m_rate(1.0)
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 void AudioResampler::reset() 118 void AudioResampler::reset()
120 { 119 {
121 unsigned numberOfChannels = m_kernels.size(); 120 unsigned numberOfChannels = m_kernels.size();
122 for (unsigned i = 0; i < numberOfChannels; ++i) 121 for (unsigned i = 0; i < numberOfChannels; ++i)
123 m_kernels[i]->reset(); 122 m_kernels[i]->reset();
124 } 123 }
125 124
126 } // namespace WebCore 125 } // namespace WebCore
127 126
128 #endif // ENABLE(WEB_AUDIO) 127 #endif // ENABLE(WEB_AUDIO)
OLDNEW
« no previous file with comments | « Source/platform/audio/AudioBus.cpp ('k') | Source/platform/audio/HRTFDatabase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698