OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 | 382 |
383 if (settings_.use_ts) { | 383 if (settings_.use_ts) { |
384 ap_->set_stream_key_pressed(*settings_.use_ts); | 384 ap_->set_stream_key_pressed(*settings_.use_ts); |
385 } | 385 } |
386 | 386 |
387 if (settings_.aec_dump_output_filename) { | 387 if (settings_.aec_dump_output_filename) { |
388 size_t kMaxFilenameSize = AudioProcessing::kMaxFilenameSize; | 388 size_t kMaxFilenameSize = AudioProcessing::kMaxFilenameSize; |
389 RTC_CHECK_LE(settings_.aec_dump_output_filename->size(), kMaxFilenameSize); | 389 RTC_CHECK_LE(settings_.aec_dump_output_filename->size(), kMaxFilenameSize); |
390 RTC_CHECK_EQ(AudioProcessing::kNoError, | 390 RTC_CHECK_EQ(AudioProcessing::kNoError, |
391 ap_->StartDebugRecording( | 391 ap_->StartDebugRecording( |
392 settings_.aec_dump_output_filename->c_str(), -1)); | 392 settings_.aec_dump_output_filename->c_str(), -1, nullptr)); |
393 } | 393 } |
394 } | 394 } |
395 | 395 |
396 } // namespace test | 396 } // namespace test |
397 } // namespace webrtc | 397 } // namespace webrtc |
OLD | NEW |