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

Unified Diff: webrtc/modules/audio_coding/codecs/ilbc/cb_search.c

Issue 1184643002: Reland "Upconvert various types to int.", ilbc portion. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: 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/codecs/ilbc/cb_search.c
diff --git a/webrtc/modules/audio_coding/codecs/ilbc/cb_search.c b/webrtc/modules/audio_coding/codecs/ilbc/cb_search.c
index bc601492e892005b0c7f80aac0fa2c70d1ce95c5..d502cf0c32b91b3ec80506539f0f08b85dd51f3c 100644
--- a/webrtc/modules/audio_coding/codecs/ilbc/cb_search.c
+++ b/webrtc/modules/audio_coding/codecs/ilbc/cb_search.c
@@ -46,7 +46,9 @@ void WebRtcIlbcfix_CbSearch(
int16_t block /* (i) the subblock number */
) {
int16_t i, j, stage, range;
- int16_t *pp, scale, tmp;
+ int16_t *pp;
+ int16_t tmp;
+ int scale;
int16_t bits, temp1, temp2;
int16_t base_size;
int32_t codedEner, targetEner;

Powered by Google App Engine
This is Rietveld 408576698