Index: third_party/WebKit/Source/platform/audio/IIRFilter.cpp |
diff --git a/third_party/WebKit/Source/platform/audio/IIRFilter.cpp b/third_party/WebKit/Source/platform/audio/IIRFilter.cpp |
index 2dca1b18b83a1cfc8d81434a41922ab8c9b76172..c914a6d8875718dfb07ad3ebf4566287ec87aaec 100644 |
--- a/third_party/WebKit/Source/platform/audio/IIRFilter.cpp |
+++ b/third_party/WebKit/Source/platform/audio/IIRFilter.cpp |
@@ -65,7 +65,7 @@ void IIRFilter::process(const float* sourceP, |
// Sanity check to see if the feedback coefficients have been scaled |
// appropriately. It must be EXACTLY 1! |
- ASSERT(feedback[0] == 1); |
+ DCHECK_EQ(feedback[0], 1); |
int feedbackLength = m_feedback->size(); |
int feedforwardLength = m_feedforward->size(); |