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

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

Issue 1179953003: Revert "Upconvert various types to int." (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/isac/fix/source/decode.c
diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/source/decode.c b/webrtc/modules/audio_coding/codecs/isac/fix/source/decode.c
index f0ae07e132d156c4b0d84d485dd453b7f4495d9f..5e095da683255a8a1c45ee9aa8ba89550d7bfb0b 100644
--- a/webrtc/modules/audio_coding/codecs/isac/fix/source/decode.c
+++ b/webrtc/modules/audio_coding/codecs/isac/fix/source/decode.c
@@ -27,14 +27,14 @@
-int WebRtcIsacfix_DecodeImpl(int16_t *signal_out16,
- IsacFixDecoderInstance *ISACdec_obj,
- int16_t *current_framesamples)
+int16_t WebRtcIsacfix_DecodeImpl(int16_t *signal_out16,
+ IsacFixDecoderInstance *ISACdec_obj,
+ int16_t *current_framesamples)
{
int k;
int err;
int16_t BWno;
- int len = 0;
+ int16_t len = 0;
int16_t model;

Powered by Google App Engine
This is Rietveld 408576698