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

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

Issue 1230503003: Update a ton of audio code to use size_t more correctly and in general reduce (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Resync 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/ilbc/init_decode.c
diff --git a/webrtc/modules/audio_coding/codecs/ilbc/init_decode.c b/webrtc/modules/audio_coding/codecs/ilbc/init_decode.c
index 0659e5005bf3b6caf7f049dd56fcb8410fc134ae..1f92480d9fdc4626df5b9f98a34a8ef252db0845 100644
--- a/webrtc/modules/audio_coding/codecs/ilbc/init_decode.c
+++ b/webrtc/modules/audio_coding/codecs/ilbc/init_decode.c
@@ -92,5 +92,5 @@ int WebRtcIlbcfix_InitDecode( /* (o) Number of decoded samples */
iLBCdec_inst->prev_enh_pl = 0;
- return (iLBCdec_inst->blockl);
+ return (int)(iLBCdec_inst->blockl);
}
« no previous file with comments | « webrtc/modules/audio_coding/codecs/ilbc/ilbc.c ('k') | webrtc/modules/audio_coding/codecs/ilbc/init_encode.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698