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

Unified Diff: webrtc/modules/audio_coding/codecs/isac/main/source/crc.c

Issue 1179093002: Reland "Upconvert various types to int.", isac 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/isac/main/source/crc.c
diff --git a/webrtc/modules/audio_coding/codecs/isac/main/source/crc.c b/webrtc/modules/audio_coding/codecs/isac/main/source/crc.c
index 06c15cb390612c6329f8760cf19f83a1de54a902..2419e240339e900d1cbf0f70caf25468728facc7 100644
--- a/webrtc/modules/audio_coding/codecs/isac/main/source/crc.c
+++ b/webrtc/modules/audio_coding/codecs/isac/main/source/crc.c
@@ -80,9 +80,9 @@ static const uint32_t kCrcTable[256] = {
* -1 - Error
*/
-int16_t WebRtcIsac_GetCrc(const int16_t* bitstream,
- int16_t len_bitstream_in_bytes,
- uint32_t* crc)
+int WebRtcIsac_GetCrc(const int16_t* bitstream,
+ int len_bitstream_in_bytes,
+ uint32_t* crc)
{
uint8_t* bitstream_ptr_uw8;
uint32_t crc_state;
« no previous file with comments | « webrtc/modules/audio_coding/codecs/isac/main/source/crc.h ('k') | webrtc/modules/audio_coding/codecs/isac/main/source/isac.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698