OLD | NEW |
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 Loading... |
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/AudioDelayDSPKernel.h" | 29 #include "platform/audio/AudioDelayDSPKernel.h" |
30 | 30 |
31 #include "platform/audio/AudioUtilities.h" | 31 #include "platform/audio/AudioUtilities.h" |
| 32 #include "wtf/MathExtras.h" |
32 #include <algorithm> | 33 #include <algorithm> |
33 | 34 |
34 using namespace std; | 35 using namespace std; |
35 | 36 |
36 namespace WebCore { | 37 namespace WebCore { |
37 | 38 |
38 const float SmoothingTimeConstant = 0.020f; // 20ms | 39 const float SmoothingTimeConstant = 0.020f; // 20ms |
39 | 40 |
40 AudioDelayDSPKernel::AudioDelayDSPKernel(AudioDSPKernelProcessor* processor, siz
e_t processingSizeInFrames) | 41 AudioDelayDSPKernel::AudioDelayDSPKernel(AudioDSPKernelProcessor* processor, siz
e_t processingSizeInFrames) |
41 : AudioDSPKernel(processor) | 42 : AudioDSPKernel(processor) |
42 , m_writeIndex(0) | 43 , m_writeIndex(0) |
43 , m_firstTime(true) | 44 , m_firstTime(true) |
44 , m_delayTimes(processingSizeInFrames) | 45 , m_delayTimes(processingSizeInFrames) |
45 { | 46 { |
46 } | 47 } |
47 | 48 |
48 AudioDelayDSPKernel::AudioDelayDSPKernel(double maxDelayTime, float sampleRate) | 49 AudioDelayDSPKernel::AudioDelayDSPKernel(double maxDelayTime, float sampleRate) |
49 : AudioDSPKernel(sampleRate) | 50 : AudioDSPKernel(sampleRate) |
50 , m_maxDelayTime(maxDelayTime) | 51 , m_maxDelayTime(maxDelayTime) |
51 , m_writeIndex(0) | 52 , m_writeIndex(0) |
52 , m_firstTime(true) | 53 , m_firstTime(true) |
53 { | 54 { |
54 ASSERT(maxDelayTime > 0.0); | 55 ASSERT(maxDelayTime > 0.0 && !std::isnan(maxDelayTime)); |
55 if (maxDelayTime <= 0.0) | 56 if (maxDelayTime <= 0.0 || std::isnan(maxDelayTime)) |
56 return; | 57 return; |
57 | 58 |
58 size_t bufferLength = bufferLengthForDelay(maxDelayTime, sampleRate); | 59 size_t bufferLength = bufferLengthForDelay(maxDelayTime, sampleRate); |
59 ASSERT(bufferLength); | 60 ASSERT(bufferLength); |
60 if (!bufferLength) | 61 if (!bufferLength) |
61 return; | 62 return; |
62 | 63 |
63 m_buffer.allocate(bufferLength); | 64 m_buffer.allocate(bufferLength); |
64 m_buffer.zero(); | 65 m_buffer.zero(); |
65 | 66 |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 } | 173 } |
173 | 174 |
174 double AudioDelayDSPKernel::latencyTime() const | 175 double AudioDelayDSPKernel::latencyTime() const |
175 { | 176 { |
176 return 0; | 177 return 0; |
177 } | 178 } |
178 | 179 |
179 } // namespace WebCore | 180 } // namespace WebCore |
180 | 181 |
181 #endif // ENABLE(WEB_AUDIO) | 182 #endif // ENABLE(WEB_AUDIO) |
OLD | NEW |