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

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

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.h
diff --git a/webrtc/modules/audio_coding/codecs/isac/main/source/crc.h b/webrtc/modules/audio_coding/codecs/isac/main/source/crc.h
index 19d1bf31d53825d102fcbfddf51c6dfdbc4f7121..09583dfc5c3f74cb60e843d193568c40f517b0f3 100644
--- a/webrtc/modules/audio_coding/codecs/isac/main/source/crc.h
+++ b/webrtc/modules/audio_coding/codecs/isac/main/source/crc.h
@@ -36,10 +36,10 @@
* -1 - Error
*/
-int16_t WebRtcIsac_GetCrc(
+int WebRtcIsac_GetCrc(
const int16_t* encoded,
- int16_t no_of_word8s,
- uint32_t* crc);
+ int no_of_word8s,
+ uint32_t* crc);

Powered by Google App Engine
This is Rietveld 408576698