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

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

Issue 2293843002: iLBC: Some const annotations (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/cb_construct.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/cb_construct.h
diff --git a/webrtc/modules/audio_coding/codecs/ilbc/cb_construct.h b/webrtc/modules/audio_coding/codecs/ilbc/cb_construct.h
index 45db85e4e3d703ea40f5c5cc20c9855d026ac8fe..34c0d1b777c9122a38d8cbf3caefd7c3979f0fc3 100644
--- a/webrtc/modules/audio_coding/codecs/ilbc/cb_construct.h
+++ b/webrtc/modules/audio_coding/codecs/ilbc/cb_construct.h
@@ -28,12 +28,12 @@
// Returns true on success, false on failure.
bool WebRtcIlbcfix_CbConstruct(
- int16_t* decvector, /* (o) Decoded vector */
- int16_t* index, /* (i) Codebook indices */
- int16_t* gain_index, /* (i) Gain quantization indices */
- int16_t* mem, /* (i) Buffer for codevector construction */
- size_t lMem, /* (i) Length of buffer */
- size_t veclen /* (i) Length of vector */
+ int16_t* decvector, /* (o) Decoded vector */
+ const int16_t* index, /* (i) Codebook indices */
+ const int16_t* gain_index, /* (i) Gain quantization indices */
+ int16_t* mem, /* (i) Buffer for codevector construction */
+ size_t lMem, /* (i) Length of buffer */
+ size_t veclen /* (i) Length of vector */
) WARN_UNUSED_RESULT;
#endif
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/codecs/ilbc/cb_construct.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698