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 16 matching lines...) Expand all Loading... |
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 "wtf/MathExtras.h" |
33 #include <algorithm> | 33 #include <algorithm> |
34 | 34 |
35 using namespace std; | 35 using namespace std; |
36 | 36 |
37 namespace WebCore { | 37 namespace blink { |
38 | 38 |
39 const float SmoothingTimeConstant = 0.020f; // 20ms | 39 const float SmoothingTimeConstant = 0.020f; // 20ms |
40 | 40 |
41 AudioDelayDSPKernel::AudioDelayDSPKernel(AudioDSPKernelProcessor* processor, siz
e_t processingSizeInFrames) | 41 AudioDelayDSPKernel::AudioDelayDSPKernel(AudioDSPKernelProcessor* processor, siz
e_t processingSizeInFrames) |
42 : AudioDSPKernel(processor) | 42 : AudioDSPKernel(processor) |
43 , m_writeIndex(0) | 43 , m_writeIndex(0) |
44 , m_firstTime(true) | 44 , m_firstTime(true) |
45 , m_delayTimes(processingSizeInFrames) | 45 , m_delayTimes(processingSizeInFrames) |
46 { | 46 { |
47 } | 47 } |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 // Account for worst case delay. | 170 // Account for worst case delay. |
171 // Don't try to track actual delay time which can change dynamically. | 171 // Don't try to track actual delay time which can change dynamically. |
172 return m_maxDelayTime; | 172 return m_maxDelayTime; |
173 } | 173 } |
174 | 174 |
175 double AudioDelayDSPKernel::latencyTime() const | 175 double AudioDelayDSPKernel::latencyTime() const |
176 { | 176 { |
177 return 0; | 177 return 0; |
178 } | 178 } |
179 | 179 |
180 } // namespace WebCore | 180 } // namespace blink |
181 | 181 |
182 #endif // ENABLE(WEB_AUDIO) | 182 #endif // ENABLE(WEB_AUDIO) |
OLD | NEW |