OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011, Google Inc. All rights reserved. | 2 * Copyright (C) 2011, 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 10 matching lines...) Expand all Loading... |
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
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 "modules/webaudio/WaveShaperDSPKernel.h" | 29 #include "modules/webaudio/WaveShaperDSPKernel.h" |
30 | 30 |
31 #include "modules/webaudio/WaveShaperProcessor.h" | |
32 #include "wtf/MainThread.h" | 31 #include "wtf/MainThread.h" |
33 #include "wtf/Threading.h" | 32 #include "wtf/Threading.h" |
34 #include <algorithm> | 33 #include <algorithm> |
35 | 34 |
36 const unsigned RenderingQuantum = 128; | 35 const unsigned RenderingQuantum = 128; |
37 | 36 |
38 using namespace std; | 37 using namespace std; |
39 | 38 |
40 namespace WebCore { | 39 namespace WebCore { |
41 | 40 |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 default: | 196 default: |
198 ASSERT_NOT_REACHED(); | 197 ASSERT_NOT_REACHED(); |
199 } | 198 } |
200 | 199 |
201 return static_cast<double>(latencyFrames) / sampleRate(); | 200 return static_cast<double>(latencyFrames) / sampleRate(); |
202 } | 201 } |
203 | 202 |
204 } // namespace WebCore | 203 } // namespace WebCore |
205 | 204 |
206 #endif // ENABLE(WEB_AUDIO) | 205 #endif // ENABLE(WEB_AUDIO) |
OLD | NEW |