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

Unified Diff: third_party/WebKit/Source/platform/audio/HRTFKernel.cpp

Issue 2384073002: reflow comments in platform/audio (Closed)
Patch Set: Created 4 years, 2 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: third_party/WebKit/Source/platform/audio/HRTFKernel.cpp
diff --git a/third_party/WebKit/Source/platform/audio/HRTFKernel.cpp b/third_party/WebKit/Source/platform/audio/HRTFKernel.cpp
index 37d4fc0e4100f98ce7836b5a2dfab1fd8b10c656..97fc2af8f13e67aa5b76a02a7b680b6cb7bb8a81 100644
--- a/third_party/WebKit/Source/platform/audio/HRTFKernel.cpp
+++ b/third_party/WebKit/Source/platform/audio/HRTFKernel.cpp
@@ -36,10 +36,11 @@
namespace blink {
-// Takes the input AudioChannel as an input impulse response and calculates the average group delay.
-// This represents the initial delay before the most energetic part of the impulse response.
-// The sample-frame delay is removed from the impulseP impulse response, and this value is returned.
-// the length of the passed in AudioChannel must be a power of 2.
+// Takes the input AudioChannel as an input impulse response and calculates the
+// average group delay. This represents the initial delay before the most
+// energetic part of the impulse response. The sample-frame delay is removed
+// from the impulseP impulse response, and this value is returned. The length
+// of the passed in AudioChannel must be a power of 2.
static float extractAverageGroupDelay(AudioChannel* channel,
size_t analysisFFTSize) {
ASSERT(channel);
@@ -74,11 +75,10 @@ HRTFKernel::HRTFKernel(AudioChannel* channel, size_t fftSize, float sampleRate)
float* impulseResponse = channel->mutableData();
size_t responseLength = channel->length();
- // We need to truncate to fit into 1/2 the FFT size (with zero padding) in order to do proper convolution.
- size_t truncatedResponseLength = std::min(
- responseLength,
- fftSize /
- 2); // truncate if necessary to max impulse response length allowed by FFT
+ // We need to truncate to fit into 1/2 the FFT size (with zero padding) in
+ // order to do proper convolution.
+ // Truncate if necessary to max impulse response length allowed by FFT.
+ size_t truncatedResponseLength = std::min(responseLength, fftSize / 2);
// Quick fade-out (apply window) at truncation point
unsigned numberOfFadeOutFrames = static_cast<unsigned>(

Powered by Google App Engine
This is Rietveld 408576698