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

Unified Diff: webrtc/modules/audio_coding/codecs/ilbc/enhancer_interface.h

Issue 2297873003: WebRtcIlbcfix_EnhancerInterface: Let input array be const (Closed)
Patch Set: Created 4 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
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/codecs/ilbc/enhancer_interface.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_coding/codecs/ilbc/enhancer_interface.h
diff --git a/webrtc/modules/audio_coding/codecs/ilbc/enhancer_interface.h b/webrtc/modules/audio_coding/codecs/ilbc/enhancer_interface.h
index 61efd22604b51cf144a52648942e93db9db21854..d540533a1c53c35b90162ac4be7c1f18a69eb8e2 100644
--- a/webrtc/modules/audio_coding/codecs/ilbc/enhancer_interface.h
+++ b/webrtc/modules/audio_coding/codecs/ilbc/enhancer_interface.h
@@ -25,10 +25,10 @@
* interface for enhancer
*---------------------------------------------------------------*/
-size_t WebRtcIlbcfix_EnhancerInterface( /* (o) Estimated lag in end of in[] */
- int16_t *out, /* (o) enhanced signal */
- int16_t *in, /* (i) unenhanced signal */
- IlbcDecoder *iLBCdec_inst /* (i) buffers etc */
- );
+size_t // (o) Estimated lag in end of in[]
+ WebRtcIlbcfix_EnhancerInterface(
+ int16_t* out, // (o) enhanced signal
+ const int16_t* in, // (i) unenhanced signal
+ IlbcDecoder* iLBCdec_inst); // (i) buffers etc
#endif
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/codecs/ilbc/enhancer_interface.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698