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

Unified Diff: webrtc/modules/audio_coding/codecs/ilbc/create_augmented_vec.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
Index: webrtc/modules/audio_coding/codecs/ilbc/create_augmented_vec.h
diff --git a/webrtc/modules/audio_coding/codecs/ilbc/create_augmented_vec.h b/webrtc/modules/audio_coding/codecs/ilbc/create_augmented_vec.h
index 430dfe9b9dacddd054df5c0fbc2a8fe24760bb2b..f2582cd53277c5478985afd294615d8317f7d19a 100644
--- a/webrtc/modules/audio_coding/codecs/ilbc/create_augmented_vec.h
+++ b/webrtc/modules/audio_coding/codecs/ilbc/create_augmented_vec.h
@@ -27,10 +27,11 @@
*----------------------------------------------------------------*/
void WebRtcIlbcfix_CreateAugmentedVec(
- size_t index, /* (i) Index for the augmented vector to be created */
- int16_t *buffer, /* (i) Pointer to the end of the codebook memory that
- is used for creation of the augmented codebook */
- int16_t *cbVec /* (o) The construced codebook vector */
- );
+ size_t index, /* (i) Index for the augmented vector to be
+ created */
+ const int16_t* buffer, /* (i) Pointer to the end of the codebook memory
+ that is used for creation of the augmented
+ codebook */
+ int16_t* cbVec); /* (o) The construced codebook vector */
#endif
« no previous file with comments | « webrtc/modules/audio_coding/codecs/ilbc/cb_construct.c ('k') | webrtc/modules/audio_coding/codecs/ilbc/create_augmented_vec.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698