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

Unified Diff: third_party/WebKit/Source/platform/audio/UpSampler.h

Issue 2384073002: reflow comments in platform/audio (Closed)
Patch Set: comments (heh!) 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/UpSampler.h
diff --git a/third_party/WebKit/Source/platform/audio/UpSampler.h b/third_party/WebKit/Source/platform/audio/UpSampler.h
index 6031c24e78f310dc70ebfd351578fc805d5d5068..2e951e36ca32f8b3a4d95f7893122e2112b92120 100644
--- a/third_party/WebKit/Source/platform/audio/UpSampler.h
+++ b/third_party/WebKit/Source/platform/audio/UpSampler.h
@@ -62,8 +62,9 @@ class PLATFORM_EXPORT UpSampler {
size_t m_inputBlockSize;
- // Computes ideal band-limited filter coefficients to sample in between each source sample-frame.
- // This filter will be used to compute the odd sample-frames of the output.
+ // Computes ideal band-limited filter coefficients to sample in between each
+ // source sample-frame. This filter will be used to compute the odd
+ // sample-frames of the output.
void initializeKernel();
AudioFloatArray m_kernel;
@@ -73,8 +74,9 @@ class PLATFORM_EXPORT UpSampler {
AudioFloatArray m_tempBuffer;
// Delay line for generating the even sample-frames of the output.
- // The source samples are delayed exactly to match the linear phase delay of the FIR filter (convolution)
- // used to generate the odd sample-frames of the output.
+ // The source samples are delayed exactly to match the linear phase delay of
+ // the FIR filter (convolution) used to generate the odd sample-frames of the
+ // output.
AudioFloatArray m_inputBuffer;
};
« no previous file with comments | « third_party/WebKit/Source/platform/audio/SincResampler.cpp ('k') | third_party/WebKit/Source/platform/audio/UpSampler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698