| Index: webrtc/voice_engine/test/cmd_test/voe_cmd_test.cc
|
| 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 97188671bb8744407c2803469c742f049b3b3899..edc2ecf6b2d0996c2c088df2aca674060862f57b 100644
|
| --- a/webrtc/voice_engine/test/cmd_test/voe_cmd_test.cc
|
| +++ b/webrtc/voice_engine/test/cmd_test/voe_cmd_test.cc
|
| @@ -378,12 +378,6 @@ void RunTest(std::string out_path) {
|
| const bool receive = !(call_selection == 2);
|
|
|
| if (receive) {
|
| -#ifndef EXTERNAL_TRANSPORT
|
| - printf("Start Listen \n");
|
| - res = base1->StartReceive(chan);
|
| - VALIDATE;
|
| -#endif
|
| -
|
| printf("Start Playout \n");
|
| res = base1->StartPlayout(chan);
|
| VALIDATE;
|
| @@ -700,8 +694,6 @@ void RunTest(std::string out_path) {
|
| VALIDATE;
|
| } else if (option_selection == option_index++) {
|
| if (channel_index < kMaxNumChannels) {
|
| - res = base1->StartReceive(channels[channel_index]);
|
| - VALIDATE;
|
| res = base1->StartPlayout(channels[channel_index]);
|
| VALIDATE;
|
| res = base1->StartSend(channels[channel_index]);
|
| @@ -725,8 +717,6 @@ void RunTest(std::string out_path) {
|
| VALIDATE;
|
| res = base1->StopPlayout(channels[channel_index]);
|
| VALIDATE;
|
| - res = base1->StopReceive(channels[channel_index]);
|
| - VALIDATE;
|
| printf("Using %d additional channels\n", channel_index);
|
| } else {
|
| printf("All additional channels stopped\n");
|
| @@ -787,12 +777,6 @@ void RunTest(std::string out_path) {
|
| printf("Stop Playout \n");
|
| res = base1->StopPlayout(chan);
|
| VALIDATE;
|
| -
|
| -#ifndef EXTERNAL_TRANSPORT
|
| - printf("Stop Listen \n");
|
| - res = base1->StopReceive(chan);
|
| - VALIDATE;
|
| -#endif
|
| }
|
|
|
| while (channel_index > 0) {
|
| @@ -803,8 +787,6 @@ void RunTest(std::string out_path) {
|
| VALIDATE;
|
| res = base1->StopPlayout(channels[channel_index]);
|
| VALIDATE;
|
| - res = base1->StopReceive(channels[channel_index]);
|
| - VALIDATE;
|
| }
|
|
|
| printf("\n1. New call \n");
|
|
|