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

Unified Diff: Source/platform/audio/AudioDelayDSPKernel.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/webaudio/DelayNode.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/audio/AudioDelayDSPKernel.cpp
diff --git a/Source/platform/audio/AudioDelayDSPKernel.cpp b/Source/platform/audio/AudioDelayDSPKernel.cpp
index 2eb5d972463fd7864fae8213d90a6feb1907f743..aded55985408eadbca95a06111c9d01e3687fa8c 100644
--- a/Source/platform/audio/AudioDelayDSPKernel.cpp
+++ b/Source/platform/audio/AudioDelayDSPKernel.cpp
@@ -29,6 +29,7 @@
#include "platform/audio/AudioDelayDSPKernel.h"
#include "platform/audio/AudioUtilities.h"
+#include "wtf/MathExtras.h"
#include <algorithm>
using namespace std;
@@ -51,8 +52,8 @@ AudioDelayDSPKernel::AudioDelayDSPKernel(double maxDelayTime, float sampleRate)
, m_writeIndex(0)
, m_firstTime(true)
{
- ASSERT(maxDelayTime > 0.0);
- if (maxDelayTime <= 0.0)
+ ASSERT(maxDelayTime > 0.0 && !std::isnan(maxDelayTime));
+ if (maxDelayTime <= 0.0 || std::isnan(maxDelayTime))
return;
size_t bufferLength = bufferLengthForDelay(maxDelayTime, sampleRate);
« no previous file with comments | « Source/modules/webaudio/DelayNode.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698