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

Unified Diff: webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_filter_c.c

Issue 1227163003: Update audio code to use size_t more correctly, (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Review comments Created 5 years, 4 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/codecs/isac/fix/source/pitch_filter_c.c
diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_filter_c.c b/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_filter_c.c
index 5c956780e69d148cd6dfce1e126576d0d839e7ed..366eef034d981f3c8d96c7a1ae8e590eaf63d646 100644
--- a/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_filter_c.c
+++ b/webrtc/modules/audio_coding/codecs/isac/fix/source/pitch_filter_c.c
@@ -18,7 +18,7 @@ static const int16_t kDampFilter[PITCH_DAMPORDER] = {
void WebRtcIsacfix_PitchFilterCore(int loopNumber,
int16_t gain,
- int index,
+ size_t index,
int16_t sign,
int16_t* inputState,
int16_t* outputBuf2,

Powered by Google App Engine
This is Rietveld 408576698