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

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

Issue 1244383003: [NOT FOR REVIEW] Various changes requested by Andrew (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@size_t
Patch Set: Android work Created 5 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: webrtc/modules/audio_coding/neteq/expand.cc
diff --git a/webrtc/modules/audio_coding/neteq/expand.cc b/webrtc/modules/audio_coding/neteq/expand.cc
index 35c80e773c0d9e8aadc698ff880d6ff3324c4c69..dc9e271d874815b8c15f2240649953e59da11e84 100644
--- a/webrtc/modules/audio_coding/neteq/expand.cc
+++ b/webrtc/modules/audio_coding/neteq/expand.cc
@@ -454,8 +454,7 @@ void Expand::AnalyzeSignal(int16_t* random_vector) {
correlation_length, correlation_lags, correlation_scale, -1);
// Find maximizing index.
- best_index = static_cast<size_t>(
- WebRtcSpl_MaxIndexW32(correlation_vector2, correlation_lags));
+ best_index = WebRtcSpl_MaxIndexW32(correlation_vector2, correlation_lags);
int32_t max_correlation = correlation_vector2[best_index];
// Compensate index with start offset.
best_index = best_index + start_index;
« no previous file with comments | « webrtc/modules/audio_coding/codecs/ilbc/refiner.c ('k') | webrtc/modules/audio_device/android/audio_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698