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

Unified Diff: webrtc/modules/audio_coding/codecs/g722/include/g722_interface.h

Issue 1179093003: Reland "Upconvert various types to int.", misc. codecs 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/g722/include/g722_interface.h
diff --git a/webrtc/modules/audio_coding/codecs/g722/include/g722_interface.h b/webrtc/modules/audio_coding/codecs/g722/include/g722_interface.h
index 711b991d9c9b1f423be0f958a959af43bf466d91..46ff3b0f0190f789204221136a43b701a3806271 100644
--- a/webrtc/modules/audio_coding/codecs/g722/include/g722_interface.h
+++ b/webrtc/modules/audio_coding/codecs/g722/include/g722_interface.h
@@ -73,7 +73,7 @@ int16_t WebRtcG722_EncoderInit(G722EncInst *G722enc_inst);
* Return value : 0 - Ok
* -1 - Error
*/
-int16_t WebRtcG722_FreeEncoder(G722EncInst *G722enc_inst);
+int WebRtcG722_FreeEncoder(G722EncInst *G722enc_inst);
@@ -142,7 +142,7 @@ int16_t WebRtcG722_DecoderInit(G722DecInst *G722dec_inst);
* -1 - Error
*/
-int16_t WebRtcG722_FreeDecoder(G722DecInst *G722dec_inst);
+int WebRtcG722_FreeDecoder(G722DecInst *G722dec_inst);
/****************************************************************************

Powered by Google App Engine
This is Rietveld 408576698