From 0f2aba11093a6bea4fba32ccef8fbe7958e865a2 Mon Sep 17 00:00:00 2001 From: "andrew@webrtc.org" Date: Tue, 16 Oct 2012 01:20:39 +0000 Subject: [PATCH] Remove non-ASCII character from voe_external_media.h TBR=henrika@webrtc.org Review URL: https://webrtc-codereview.appspot.com/881006 git-svn-id: http://webrtc.googlecode.com/svn/trunk@2932 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/voice_engine/include/voe_external_media.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/voice_engine/include/voe_external_media.h b/src/voice_engine/include/voe_external_media.h index 50d2d387d8..a4ef7e20f1 100644 --- a/src/voice_engine/include/voe_external_media.h +++ b/src/voice_engine/include/voe_external_media.h @@ -47,9 +47,9 @@ public: // given by the |type| parameter. The function should modify the // original data and ensure that it is copied back to the |audio10ms| // array. The number of samples in the frame cannot be changed. - // The sampling frequency will depend upon the codec used. + // The sampling frequency will depend upon the codec used. // If |isStereo| is true, audio10ms will contain 16-bit PCM data - // samples in interleaved stereo format (L0,R0,L1,R1,…): + // samples in interleaved stereo format (L0,R0,L1,R1,...). virtual void Process(const int channel, const ProcessingTypes type, WebRtc_Word16 audio10ms[], const int length, const int samplingFreq, const bool isStereo) = 0;