Chromium Code Reviews| 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 bfc8b6537e47f505862f3b258cd2a1a1a1a965fb..967fcd21ec38293623b0ff31271774522f69bdda 100644 |
| --- a/webrtc/voice_engine/test/cmd_test/voe_cmd_test.cc |
| +++ b/webrtc/voice_engine/test/cmd_test/voe_cmd_test.cc |
| @@ -21,7 +21,6 @@ |
| #include "gflags/gflags.h" |
| #include "testing/gtest/include/gtest/gtest.h" |
| #include "webrtc/base/format_macros.h" |
| -#include "webrtc/call/rtc_event_log.h" |
| #include "webrtc/engine_configurations.h" |
| #include "webrtc/modules/audio_processing/include/audio_processing.h" |
| #include "webrtc/test/channel_transport/channel_transport.h" |
| @@ -454,7 +453,6 @@ void RunTest(std::string out_path) { |
| printf("%i. Set bit rate (only take effect on codecs that allow the " |
| "change) \n", option_index++); |
| printf("%i. Toggle AECdump recording \n", option_index++); |
| - printf("%i. Record RtcEventLog file of 30 seconds \n", option_index++); |
| printf("Select action or %i to stop the call: ", option_index); |
| int option_selection; |
| @@ -801,9 +799,6 @@ void RunTest(std::string out_path) { |
| printf("Debug recording named %s started\n", kDebugFileName); |
| } |
| debug_recording_started = !debug_recording_started; |
| - } else if (option_selection == option_index++) { |
| - const char* kDebugFileName = "eventlog.rel"; |
| - codec->GetEventLog()->StartLogging(kDebugFileName, 30000); |
|
the sun
2016/03/03 09:25:13
Add a test at the PeerConnection level which exerc
ivoc
2016/03/10 13:15:36
This is a little complicated to do, because there
|
| } else { |
| break; |
| } |