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

Unified Diff: webrtc/modules/audio_coding/neteq/expand.h

Issue 1172163004: Reformat existing code. There should be no functional effects. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Resync Created 5 years, 6 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: webrtc/modules/audio_coding/neteq/expand.h
diff --git a/webrtc/modules/audio_coding/neteq/expand.h b/webrtc/modules/audio_coding/neteq/expand.h
index 000064201212d8475989ddc619ea3f20328c46ac..b015959e75829ebf278d217b51f0ca8d45cc1e2b 100644
--- a/webrtc/modules/audio_coding/neteq/expand.h
+++ b/webrtc/modules/audio_coding/neteq/expand.h
@@ -119,9 +119,11 @@ class Expand {
// Calculate the auto-correlation of |input|, with length |input_length|
// samples. The correlation is calculated from a downsampled version of
// |input|, and is written to |output|. The scale factor is written to
- // |output_scale|. Returns the length of the correlation vector.
- int16_t Correlation(const int16_t* input, size_t input_length,
- int16_t* output, int16_t* output_scale) const;
+ // |output_scale|.
+ void Correlation(const int16_t* input,
+ size_t input_length,
+ int16_t* output,
+ int16_t* output_scale) const;
void UpdateLagIndex();

Powered by Google App Engine
This is Rietveld 408576698