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

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

Issue 1230503003: Update a ton of audio code to use size_t more correctly and in general reduce (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Resync 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/dtmf_tone_generator.h
diff --git a/webrtc/modules/audio_coding/neteq/dtmf_tone_generator.h b/webrtc/modules/audio_coding/neteq/dtmf_tone_generator.h
index 4e51e53674b681195a22eb5fe3a12bb569e6e161..767f66c797843e06f24650205a9110c6fd0a85b3 100644
--- a/webrtc/modules/audio_coding/neteq/dtmf_tone_generator.h
+++ b/webrtc/modules/audio_coding/neteq/dtmf_tone_generator.h
@@ -30,7 +30,7 @@ class DtmfToneGenerator {
virtual ~DtmfToneGenerator() {}
virtual int Init(int fs, int event, int attenuation);
virtual void Reset();
- virtual int Generate(int num_samples, AudioMultiVector* output);
+ virtual int Generate(size_t num_samples, AudioMultiVector* output);
virtual bool initialized() const;
private:
« no previous file with comments | « webrtc/modules/audio_coding/neteq/dsp_helper.cc ('k') | webrtc/modules/audio_coding/neteq/dtmf_tone_generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698