Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: webrtc/modules/audio_processing/test/audio_processing_simulator.cc

Issue 2969653002: Update includes for webrtc/{base => rtc_base} rename (1/3) (Closed)
Patch Set: Rebased onto 89c4a7e57d524b13fbe0c823a83a4c10c2e63bd0 Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
11 #include "webrtc/modules/audio_processing/test/audio_processing_simulator.h" 11 #include "webrtc/modules/audio_processing/test/audio_processing_simulator.h"
12 12
13 #include <algorithm> 13 #include <algorithm>
14 #include <iostream> 14 #include <iostream>
15 #include <sstream> 15 #include <sstream>
16 #include <string> 16 #include <string>
17 #include <vector> 17 #include <vector>
18 18
19 #include "webrtc/base/checks.h"
20 #include "webrtc/base/stringutils.h"
21 #include "webrtc/common_audio/include/audio_util.h" 19 #include "webrtc/common_audio/include/audio_util.h"
22 #include "webrtc/modules/audio_processing/aec_dump/aec_dump_factory.h" 20 #include "webrtc/modules/audio_processing/aec_dump/aec_dump_factory.h"
23 #include "webrtc/modules/audio_processing/include/audio_processing.h" 21 #include "webrtc/modules/audio_processing/include/audio_processing.h"
22 #include "webrtc/rtc_base/checks.h"
23 #include "webrtc/rtc_base/stringutils.h"
24 24
25 namespace webrtc { 25 namespace webrtc {
26 namespace test { 26 namespace test {
27 namespace { 27 namespace {
28 28
29 void CopyFromAudioFrame(const AudioFrame& src, ChannelBuffer<float>* dest) { 29 void CopyFromAudioFrame(const AudioFrame& src, ChannelBuffer<float>* dest) {
30 RTC_CHECK_EQ(src.num_channels_, dest->num_channels()); 30 RTC_CHECK_EQ(src.num_channels_, dest->num_channels());
31 RTC_CHECK_EQ(src.samples_per_channel_, dest->num_frames()); 31 RTC_CHECK_EQ(src.samples_per_channel_, dest->num_frames());
32 // Copy the data from the input buffer. 32 // Copy the data from the input buffer.
33 std::vector<float> tmp(src.samples_per_channel_ * src.num_channels_); 33 std::vector<float> tmp(src.samples_per_channel_ * src.num_channels_);
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 } 390 }
391 391
392 if (settings_.aec_dump_output_filename) { 392 if (settings_.aec_dump_output_filename) {
393 ap_->AttachAecDump(AecDumpFactory::Create( 393 ap_->AttachAecDump(AecDumpFactory::Create(
394 *settings_.aec_dump_output_filename, -1, &worker_queue_)); 394 *settings_.aec_dump_output_filename, -1, &worker_queue_));
395 } 395 }
396 } 396 }
397 397
398 } // namespace test 398 } // namespace test
399 } // namespace webrtc 399 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698