Chromium Code Reviews| Index: webrtc/modules/audio_mixer/include/new_audio_conference_mixer.h |
| diff --git a/webrtc/modules/audio_mixer/include/new_audio_conference_mixer.h b/webrtc/modules/audio_mixer/include/new_audio_conference_mixer.h |
| index 844e9ae0fdb67d7d209f141c33e891370d750148..8eede7f0ccf748d71b96199e12a74f1941cb7d99 100644 |
| --- a/webrtc/modules/audio_mixer/include/new_audio_conference_mixer.h |
| +++ b/webrtc/modules/audio_mixer/include/new_audio_conference_mixer.h |
| @@ -50,12 +50,9 @@ class NewAudioConferenceMixer { |
| // Performs mixing by asking registered audio sources for audio. The |
| // mixed result is placed in the provided AudioFrame. Can only be |
|
minyue-webrtc
2016/08/08 15:05:44
add comments on the new arguments
|
| // called from a single thread. |
| - virtual void Mix(AudioFrame* audio_frame_for_mixing) = 0; |
| - |
| - // Set the minimum sampling frequency at which to mix. The mixing algorithm |
| - // may still choose to mix at a higher samling frequency to avoid |
| - // downsampling of audio contributing to the mixed audio. |
| - virtual int32_t SetMinimumMixingFrequency(Frequency freq) = 0; |
| + virtual void Mix(int sample_rate, |
| + size_t number_of_channels, |
| + AudioFrame* audio_frame_for_mixing) = 0; |
| // Returns true if the audio source is mixed anonymously. |
| virtual bool AnonymousMixabilityStatus( |