Index: webrtc/modules/audio_mixer/source/audio_conference_mixer_impl.h |
diff --git a/webrtc/modules/audio_mixer/source/audio_conference_mixer_impl.h b/webrtc/modules/audio_mixer/source/audio_conference_mixer_impl.h |
index 24c4aa7bdbadb2569fec0fbd278100158e5760d5..2c813d61368641f42cbabdc798a4bd7d9edbafc9 100644 |
--- a/webrtc/modules/audio_mixer/source/audio_conference_mixer_impl.h |
+++ b/webrtc/modules/audio_mixer/source/audio_conference_mixer_impl.h |
@@ -67,10 +67,6 @@ class NewAudioConferenceMixerImpl : public NewAudioConferenceMixer { |
// Must be called after ctor. |
bool Init(); |
- // Module functions |
- int64_t TimeUntilNextProcess() override; |
- void Process() override; |
- |
// NewAudioConferenceMixer functions |
void Mix(AudioFrame*) override; |
ivoc
2016/07/01 11:35:20
Please add a name for the input variable (i.e. aud
aleloi
2016/07/01 11:42:13
Done.
|
int32_t RegisterMixedStreamCallback( |
@@ -174,13 +170,6 @@ class NewAudioConferenceMixerImpl : public NewAudioConferenceMixer { |
uint32_t _timeStamp; |
- // Metronome class. |
- TimeScheduler _timeScheduler; |
- |
- // Counter keeping track of concurrent calls to process. |
- // Note: should never be higher than 1 or lower than 0. |
- int16_t _processCalls; |
- |
// Used for inhibiting saturation in mixing. |
std::unique_ptr<AudioProcessing> _limiter; |
}; |