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

Unified Diff: Source/core/platform/audio/ZeroPole.cpp

Issue 20294002: Fix trailing whitespace in .cpp, .h, and .idl files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 7 years, 5 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
Index: Source/core/platform/audio/ZeroPole.cpp
diff --git a/Source/core/platform/audio/ZeroPole.cpp b/Source/core/platform/audio/ZeroPole.cpp
index bab135f5dfacd8841c492bb047fa8262110700ab..86daf4e356275ccc32d338944e1afeee6a300f30 100644
--- a/Source/core/platform/audio/ZeroPole.cpp
+++ b/Source/core/platform/audio/ZeroPole.cpp
@@ -44,7 +44,7 @@ void ZeroPole::process(const float *source, float *destination, unsigned framesT
// Gain compensation to make 0dB @ 0Hz
const float k1 = 1 / (1 - zero);
const float k2 = 1 - pole;
-
+
// Member variables to locals.
float lastX = m_lastX;
float lastY = m_lastY;
@@ -62,7 +62,7 @@ void ZeroPole::process(const float *source, float *destination, unsigned framesT
*destination++ = output2;
}
-
+
// Locals to member variables. Flush denormals here so we don't
// slow down the inner loop above.
m_lastX = DenormalDisabler::flushDenormalFloatToZero(lastX);
« no previous file with comments | « Source/core/platform/audio/ZeroPole.h ('k') | Source/core/platform/audio/chromium/AudioDestinationChromium.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698