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

Side by Side Diff: webrtc/modules/audio_processing/logging/apm_data_dumper.cc

Issue 2300813004: Moved the place for the aec_debug_dump build flag and changed the name to apm_debug_dump (Closed)
Patch Set: Removed duplicate definition of build flag Created 4 years, 3 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
« no previous file with comments | « webrtc/modules/audio_processing/logging/apm_data_dumper.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/logging/apm_data_dumper.h" 11 #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h"
12 12
13 #include <sstream> 13 #include <sstream>
14 14
15 #include "webrtc/base/stringutils.h" 15 #include "webrtc/base/stringutils.h"
16 16
17 // Check to verify that the define is properly set. 17 // Check to verify that the define is properly set.
18 #if !defined(WEBRTC_AEC_DEBUG_DUMP) || \ 18 #if !defined(WEBRTC_APM_DEBUG_DUMP) || \
19 (WEBRTC_AEC_DEBUG_DUMP != 0 && WEBRTC_AEC_DEBUG_DUMP != 1) 19 (WEBRTC_APM_DEBUG_DUMP != 0 && WEBRTC_APM_DEBUG_DUMP != 1)
20 #error "Set WEBRTC_AEC_DEBUG_DUMP to either 0 or 1" 20 #error "Set WEBRTC_APM_DEBUG_DUMP to either 0 or 1"
21 #endif 21 #endif
22 22
23 namespace webrtc { 23 namespace webrtc {
24 24
25 namespace { 25 namespace {
26 26
27 #if WEBRTC_AEC_DEBUG_DUMP == 1 27 #if WEBRTC_APM_DEBUG_DUMP == 1
28 std::string FormFileName(const char* name, 28 std::string FormFileName(const char* name,
29 int instance_index, 29 int instance_index,
30 int reinit_index, 30 int reinit_index,
31 const std::string& suffix) { 31 const std::string& suffix) {
32 std::stringstream ss; 32 std::stringstream ss;
33 ss << name << "_" << instance_index << "-" << reinit_index << suffix; 33 ss << name << "_" << instance_index << "-" << reinit_index << suffix;
34 return ss.str(); 34 return ss.str();
35 } 35 }
36 #endif 36 #endif
37 37
38 } // namespace 38 } // namespace
39 39
40 #if WEBRTC_AEC_DEBUG_DUMP == 1 40 #if WEBRTC_APM_DEBUG_DUMP == 1
41 ApmDataDumper::ApmDataDumper(int instance_index) 41 ApmDataDumper::ApmDataDumper(int instance_index)
42 : instance_index_(instance_index) {} 42 : instance_index_(instance_index) {}
43 #else 43 #else
44 ApmDataDumper::ApmDataDumper(int instance_index) {} 44 ApmDataDumper::ApmDataDumper(int instance_index) {}
45 #endif 45 #endif
46 46
47 ApmDataDumper::~ApmDataDumper() {} 47 ApmDataDumper::~ApmDataDumper() {}
48 48
49 #if WEBRTC_AEC_DEBUG_DUMP == 1 49 #if WEBRTC_APM_DEBUG_DUMP == 1
50 FILE* ApmDataDumper::GetRawFile(const char* name) { 50 FILE* ApmDataDumper::GetRawFile(const char* name) {
51 std::string filename = 51 std::string filename =
52 FormFileName(name, instance_index_, recording_set_index_, ".dat"); 52 FormFileName(name, instance_index_, recording_set_index_, ".dat");
53 auto& f = raw_files_[filename]; 53 auto& f = raw_files_[filename];
54 if (!f) { 54 if (!f) {
55 f.reset(fopen(filename.c_str(), "wb")); 55 f.reset(fopen(filename.c_str(), "wb"));
56 } 56 }
57 return f.get(); 57 return f.get();
58 } 58 }
59 59
60 WavWriter* ApmDataDumper::GetWavFile(const char* name, 60 WavWriter* ApmDataDumper::GetWavFile(const char* name,
61 int sample_rate_hz, 61 int sample_rate_hz,
62 int num_channels) { 62 int num_channels) {
63 std::string filename = 63 std::string filename =
64 FormFileName(name, instance_index_, recording_set_index_, ".wav"); 64 FormFileName(name, instance_index_, recording_set_index_, ".wav");
65 auto& f = wav_files_[filename]; 65 auto& f = wav_files_[filename];
66 if (!f) { 66 if (!f) {
67 f.reset(new WavWriter(filename.c_str(), sample_rate_hz, num_channels)); 67 f.reset(new WavWriter(filename.c_str(), sample_rate_hz, num_channels));
68 } 68 }
69 return f.get(); 69 return f.get();
70 } 70 }
71 71
72 #endif 72 #endif
73 73
74 } // namespace webrtc 74 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/logging/apm_data_dumper.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698