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

Unified Diff: webrtc/modules/audio_processing/agc/agc_manager_direct.h

Issue 1227213002: Update audio code to use size_t more correctly, webrtc/modules/audio_processing/ (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Checkpoint 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_processing/agc/agc_manager_direct.h
diff --git a/webrtc/modules/audio_processing/agc/agc_manager_direct.h b/webrtc/modules/audio_processing/agc/agc_manager_direct.h
index d12acf30d377b0c7344cc2c1106d8fcf8993dff9..fae1248b195d0c1a586ae5090fadc6cf2b9b76ec 100644
--- a/webrtc/modules/audio_processing/agc/agc_manager_direct.h
+++ b/webrtc/modules/audio_processing/agc/agc_manager_direct.h
@@ -57,8 +57,8 @@ class AgcManagerDirect {
int Initialize();
void AnalyzePreProcess(int16_t* audio,
int num_channels,
Andrew MacDonald 2015/07/24 04:01:43 You've used size_t for num_channels elsewhere.
Peter Kasting 2015/07/24 06:44:22 Not in this CL, at least as far as I'm aware. I d
Andrew MacDonald 2015/07/24 19:07:13 Understood, thanks.
- int samples_per_channel);
- void Process(const int16_t* audio, int length, int sample_rate_hz);
+ size_t samples_per_channel);
+ void Process(const int16_t* audio, size_t length, int sample_rate_hz);
// Sets a new microphone level, after first checking that it hasn't been
// updated by the user, in which case no action is taken.

Powered by Google App Engine
This is Rietveld 408576698