Index: third_party/WebKit/Source/modules/webaudio/IIRDSPKernel.cpp |
diff --git a/third_party/WebKit/Source/modules/webaudio/IIRDSPKernel.cpp b/third_party/WebKit/Source/modules/webaudio/IIRDSPKernel.cpp |
index 47a31c564377323165b606eb549f88df02cc9566..f1f596ff681d8c0efcbdaf5d100c02ee31bcf5f6 100644 |
--- a/third_party/WebKit/Source/modules/webaudio/IIRDSPKernel.cpp |
+++ b/third_party/WebKit/Source/modules/webaudio/IIRDSPKernel.cpp |
@@ -10,8 +10,8 @@ namespace blink { |
void IIRDSPKernel::process(const float* source, float* destination, size_t framesToProcess) |
{ |
- ASSERT(source); |
- ASSERT(destination); |
+ DCHECK(source); |
+ DCHECK(destination); |
m_iir.process(source, destination, framesToProcess); |
} |
@@ -19,7 +19,7 @@ void IIRDSPKernel::process(const float* source, float* destination, size_t frame |
void IIRDSPKernel::getFrequencyResponse(int nFrequencies, const float* frequencyHz, float* magResponse, float* phaseResponse) |
{ |
bool isGood = nFrequencies > 0 && frequencyHz && magResponse && phaseResponse; |
- ASSERT(isGood); |
+ DCHECK(isGood); |
if (!isGood) |
return; |