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

Unified Diff: webrtc/modules/audio_coding/neteq/random_vector.h

Issue 1228843002: Update audio code to use size_t more correctly, (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Review comments Created 5 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/neteq/random_vector.h
diff --git a/webrtc/modules/audio_coding/neteq/random_vector.h b/webrtc/modules/audio_coding/neteq/random_vector.h
index 767dc48eee3872f86abcc8ac5ac624d76fe85e08..8c75eae924dffb7b283e615c660427509bc292a4 100644
--- a/webrtc/modules/audio_coding/neteq/random_vector.h
+++ b/webrtc/modules/audio_coding/neteq/random_vector.h
@@ -21,7 +21,7 @@ namespace webrtc {
// This class generates pseudo-random samples.
class RandomVector {
public:
- static const int kRandomTableSize = 256;
+ static const size_t kRandomTableSize = 256;
static const int16_t kRandomTable[kRandomTableSize];
RandomVector()
« no previous file with comments | « webrtc/modules/audio_coding/neteq/preemptive_expand.cc ('k') | webrtc/modules/audio_coding/neteq/statistics_calculator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698