diff --git a/webrtc/voice_engine/channel.cc b/webrtc/voice_engine/channel.cc index e811a273de..c9364efb12 100644 --- a/webrtc/voice_engine/channel.cc +++ b/webrtc/voice_engine/channel.cc @@ -4200,9 +4200,9 @@ int32_t Channel::MixAudioWithFile(AudioFrame& audioFrame, int mixingFrequency) { - assert(mixingFrequency <= 32000); + assert(mixingFrequency <= 48000); - scoped_ptr fileBuffer(new int16_t[640]); + scoped_ptr fileBuffer(new int16_t[960]); int fileSamples(0); { diff --git a/webrtc/voice_engine/test/cmd_test/voe_cmd_test.cc b/webrtc/voice_engine/test/cmd_test/voe_cmd_test.cc index d213af6267..a30764ad96 100644 --- a/webrtc/voice_engine/test/cmd_test/voe_cmd_test.cc +++ b/webrtc/voice_engine/test/cmd_test/voe_cmd_test.cc @@ -433,7 +433,6 @@ void RunTest(std::string out_path) { printf("%i. Toggle receive-side NS \n", option_index++); printf("%i. AGC status \n", option_index++); printf("%i. Toggle microphone mute \n", option_index++); - printf("%i. Toggle on hold status \n", option_index++); printf("%i. Get last error code \n", option_index++); printf("%i. Toggle typing detection \n", option_index++);