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

Side by Side Diff: Source/modules/webaudio/DelayDSPKernel.cpp

Issue 138943003: Check for NaN when creating a DelayNode for WebAudio (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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 | Annotate | Revision Log
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 "modules/webaudio/DelayDSPKernel.h" 29 #include "modules/webaudio/DelayDSPKernel.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 DelayDSPKernel::DelayDSPKernel(DelayProcessor* processor) 41 DelayDSPKernel::DelayDSPKernel(DelayProcessor* processor)
41 : AudioDelayDSPKernel(processor, AudioNode::ProcessingSizeInFrames) 42 : AudioDelayDSPKernel(processor, AudioNode::ProcessingSizeInFrames)
42 { 43 {
43 ASSERT(processor && processor->sampleRate() > 0); 44 ASSERT(processor && processor->sampleRate() > 0);
44 if (!(processor && processor->sampleRate() > 0)) 45 if (!(processor && processor->sampleRate() > 0))
45 return; 46 return;
46 47
47 m_maxDelayTime = processor->maxDelayTime(); 48 m_maxDelayTime = processor->maxDelayTime();
48 ASSERT(m_maxDelayTime >= 0); 49 ASSERT(m_maxDelayTime >= 0 && !std::isnan(m_maxDelayTime));
49 if (m_maxDelayTime < 0) 50 if (m_maxDelayTime < 0 || std::isnan(m_maxDelayTime))
50 return; 51 return;
51 52
52 m_buffer.allocate(bufferLengthForDelay(m_maxDelayTime, processor->sampleRate ())); 53 m_buffer.allocate(bufferLengthForDelay(m_maxDelayTime, processor->sampleRate ()));
53 m_buffer.zero(); 54 m_buffer.zero();
54 55
55 m_smoothingRate = AudioUtilities::discreteTimeConstantForSampleRate(Smoothin gTimeConstant, processor->sampleRate()); 56 m_smoothingRate = AudioUtilities::discreteTimeConstantForSampleRate(Smoothin gTimeConstant, processor->sampleRate());
56 } 57 }
57 58
58 bool DelayDSPKernel::hasSampleAccurateValues() 59 bool DelayDSPKernel::hasSampleAccurateValues()
59 { 60 {
60 return delayProcessor()->delayTime()->hasSampleAccurateValues(); 61 return delayProcessor()->delayTime()->hasSampleAccurateValues();
61 } 62 }
62 63
63 void DelayDSPKernel::calculateSampleAccurateValues(float* delayTimes, size_t fra mesToProcess) 64 void DelayDSPKernel::calculateSampleAccurateValues(float* delayTimes, size_t fra mesToProcess)
64 { 65 {
65 delayProcessor()->delayTime()->calculateSampleAccurateValues(delayTimes, fra mesToProcess); 66 delayProcessor()->delayTime()->calculateSampleAccurateValues(delayTimes, fra mesToProcess);
66 } 67 }
67 68
68 double DelayDSPKernel::delayTime(float) 69 double DelayDSPKernel::delayTime(float)
69 { 70 {
70 return delayProcessor()->delayTime()->finalValue(); 71 return delayProcessor()->delayTime()->finalValue();
71 } 72 }
72 73
73 } // namespace WebCore 74 } // namespace WebCore
74 75
75 #endif // ENABLE(WEB_AUDIO) 76 #endif // ENABLE(WEB_AUDIO)
OLDNEW
« no previous file with comments | « LayoutTests/webaudio/delaynode-maxdelaylimit-expected.txt ('k') | Source/modules/webaudio/DelayNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698