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

Side by Side Diff: webrtc/modules/audio_processing/include/aec_dump.h

Issue 2778783002: AecDump interface (Closed)
Patch Set: Default unique_ptr constructor. Created 3 years, 7 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
(Empty)
1 /*
2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_INCLUDE_AEC_DUMP_H_
12 #define WEBRTC_MODULES_AUDIO_PROCESSING_INCLUDE_AEC_DUMP_H_
13
14 #include <memory>
15 #include <string>
16 #include <vector>
17
18 #include "webrtc/base/array_view.h"
19
20 namespace webrtc {
21
22 class AudioFrame;
23
24 // Struct for passing current config from APM without having to
25 // include protobuf headers.
26 struct InternalAPMConfig {
27 InternalAPMConfig();
28 InternalAPMConfig(const InternalAPMConfig&);
29 InternalAPMConfig(InternalAPMConfig&&);
30
31 InternalAPMConfig& operator=(const InternalAPMConfig&) = delete;
32 InternalAPMConfig& operator=(const InternalAPMConfig&&) = delete;
33
34 bool aec_enabled = false;
35 bool aec_delay_agnostic_enabled = false;
36 bool aec_drift_compensation_enabled = false;
37 bool aec_extended_filter_enabled = false;
38 int aec_suppression_level = 0;
39 bool aecm_enabled = false;
40 bool aecm_comfort_noise_enabled = false;
41 int aecm_routing_mode = 0;
42 bool agc_enabled = false;
43 int agc_mode = 0;
44 bool agc_limiter_enabled = false;
45 bool hpf_enabled = false;
46 bool ns_enabled = false;
47 int ns_level = 0;
48 bool transient_suppression_enabled = false;
49 bool intelligibility_enhancer_enabled = false;
50 bool noise_robust_agc_enabled = false;
51 std::string experiments_description = "";
52 };
53
54 struct InternalAPMStreamsConfig {
55 int input_sample_rate = 0;
56 int output_sample_rate = 0;
57 int render_input_sample_rate = 0;
58 int render_output_sample_rate = 0;
59
60 size_t input_num_channels = 0;
61 size_t output_num_channels = 0;
62 size_t render_input_num_channels = 0;
63 size_t render_output_num_channels = 0;
64 };
65
66 // Class to pass audio data in float** format. This is to avoid
67 // dependence on AudioBuffer, and avoid problems associated with
68 // rtc::ArrayView<rtc::ArrayView>.
69 class FloatAudioFrame {
70 public:
71 // |num_channels| and |channel_size| describe the float**
72 // |audio_samples|. |audio_samples| is assumed to point to a
73 // two-dimensional |num_channels * channel_size| array of floats.
74 FloatAudioFrame(const float* const* audio_samples,
75 size_t num_channels,
76 size_t channel_size)
77 : audio_samples_(audio_samples),
78 num_channels_(num_channels),
79 channel_size_(channel_size) {}
80
81 size_t num_channels() const { return num_channels_; }
82
83 rtc::ArrayView<const float> channel(size_t idx) const {
84 RTC_DCHECK_LE(0, idx);
85 RTC_DCHECK_LE(idx, num_channels_);
86 return rtc::ArrayView<const float>(audio_samples_[idx], channel_size_);
87 }
88
89 private:
90 const float* const* audio_samples_;
91 size_t num_channels_;
92 size_t channel_size_;
93 };
94
95 // An interface for recording configuration and input/output streams
96 // of the Audio Processing Module. The recordings are called
97 // 'aec-dumps' and are stored in a protobuf format defined in
98 // debug.proto.
99 class AecDump {
100 public:
101 struct AudioProcessingState {
102 int delay;
103 int drift;
104 int level;
105 bool keypress;
106 };
107
108 // To log an input/output pair, call the AddCapture* methods
the sun 2017/05/22 22:32:56 Place this comment with the AddCapture* methods, a
aleloi 2017/05/23 10:39:05 Done.
109 // followed by a WriteCaptureStreamMessage call.
110
111 virtual ~AecDump() = default;
112
113 virtual void AddCaptureStreamInput(const FloatAudioFrame& src) = 0;
the sun 2017/05/22 22:32:56 Do we really need to support both the fp and non-f
peah-webrtc 2017/05/23 06:15:28 Yes, we do. On mobiles the non-fp interface is use
114 virtual void AddCaptureStreamOutput(const FloatAudioFrame& src) = 0;
115
116 virtual void AddCaptureStreamInput(const AudioFrame& frame) = 0;
117 virtual void AddCaptureStreamOutput(const AudioFrame& frame) = 0;
118 virtual void AddAudioProcessingState(const AudioProcessingState& state) = 0;
119
120 // The Write* methods are always safe to call concurrently or
121 // otherwise for all implementing subclasses. The intended mode of
122 // operation is to create a protobuf object from the input, and send
123 // it away to be written to file asynchronously.
124 virtual void WriteInitMessage(
the sun 2017/05/22 22:32:56 This should go first, since it happens first.
aleloi 2017/05/23 10:39:05 Done.
125 const InternalAPMStreamsConfig& streams_config) = 0;
126
127 virtual void WriteRenderStreamMessage(const AudioFrame& frame) = 0;
128
129 virtual void WriteRenderStreamMessage(const FloatAudioFrame& src) = 0;
130
131 virtual void WriteCaptureStreamMessage() = 0;
132
133 // If not |forced|, only writes the current config if it is
the sun 2017/05/22 22:32:56 This sounds like an implementation detail which sh
aleloi 2017/05/23 10:39:05 I like that! The change would also improve efficie
134 // different from the last saved one; if |forced|, writes the config
135 // regardless of the last saved.
136 virtual void WriteConfig(const InternalAPMConfig& config, bool forced) = 0;
137 };
138 } // namespace webrtc
139
140 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_INCLUDE_AEC_DUMP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698