OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 private: | 79 private: |
80 TickIntervalStats proc_time_; | 80 TickIntervalStats proc_time_; |
81 }; | 81 }; |
82 | 82 |
83 // Used to read from and write to WavFile objects. | 83 // Used to read from and write to WavFile objects. |
84 class WavFileProcessor final : public AudioFileProcessor { | 84 class WavFileProcessor final : public AudioFileProcessor { |
85 public: | 85 public: |
86 // Takes ownership of all parameters. | 86 // Takes ownership of all parameters. |
87 WavFileProcessor(std::unique_ptr<AudioProcessing> ap, | 87 WavFileProcessor(std::unique_ptr<AudioProcessing> ap, |
88 std::unique_ptr<WavReader> in_file, | 88 std::unique_ptr<WavReader> in_file, |
89 std::unique_ptr<WavWriter> out_file, | 89 std::unique_ptr<WavWriter> out_file); |
90 std::unique_ptr<WavReader> reverse_in_file, | |
91 std::unique_ptr<WavWriter> reverse_out_file); | |
92 virtual ~WavFileProcessor() {} | 90 virtual ~WavFileProcessor() {} |
93 | 91 |
94 // Processes one chunk from the WAV input and writes to the WAV output. | 92 // Processes one chunk from the WAV input and writes to the WAV output. |
95 bool ProcessChunk() override; | 93 bool ProcessChunk() override; |
96 | 94 |
97 private: | 95 private: |
98 std::unique_ptr<AudioProcessing> ap_; | 96 std::unique_ptr<AudioProcessing> ap_; |
99 | 97 |
100 ChannelBuffer<float> in_buf_; | 98 ChannelBuffer<float> in_buf_; |
101 ChannelBuffer<float> out_buf_; | 99 ChannelBuffer<float> out_buf_; |
102 const StreamConfig input_config_; | 100 const StreamConfig input_config_; |
103 const StreamConfig output_config_; | 101 const StreamConfig output_config_; |
104 ChannelBufferWavReader buffer_reader_; | 102 ChannelBufferWavReader buffer_reader_; |
105 ChannelBufferWavWriter buffer_writer_; | 103 ChannelBufferWavWriter buffer_writer_; |
106 std::unique_ptr<ChannelBuffer<float>> reverse_in_buf_; | |
107 std::unique_ptr<ChannelBuffer<float>> reverse_out_buf_; | |
108 std::unique_ptr<StreamConfig> reverse_input_config_; | |
109 std::unique_ptr<StreamConfig> reverse_output_config_; | |
110 std::unique_ptr<ChannelBufferWavReader> reverse_buffer_reader_; | |
111 std::unique_ptr<ChannelBufferWavWriter> reverse_buffer_writer_; | |
112 }; | 104 }; |
113 | 105 |
114 // Used to read from an aecdump file and write to a WavWriter. | 106 // Used to read from an aecdump file and write to a WavWriter. |
115 class AecDumpFileProcessor final : public AudioFileProcessor { | 107 class AecDumpFileProcessor final : public AudioFileProcessor { |
116 public: | 108 public: |
117 // Takes ownership of all parameters. | 109 // Takes ownership of all parameters. |
118 AecDumpFileProcessor(std::unique_ptr<AudioProcessing> ap, | 110 AecDumpFileProcessor(std::unique_ptr<AudioProcessing> ap, |
119 FILE* dump_file, | 111 FILE* dump_file, |
120 std::unique_ptr<WavWriter> out_file); | 112 std::unique_ptr<WavWriter> out_file); |
121 | 113 |
(...skipping 16 matching lines...) Expand all Loading... |
138 ChannelBuffer<float> out_buf_; | 130 ChannelBuffer<float> out_buf_; |
139 StreamConfig input_config_; | 131 StreamConfig input_config_; |
140 StreamConfig reverse_config_; | 132 StreamConfig reverse_config_; |
141 const StreamConfig output_config_; | 133 const StreamConfig output_config_; |
142 ChannelBufferWavWriter buffer_writer_; | 134 ChannelBufferWavWriter buffer_writer_; |
143 }; | 135 }; |
144 | 136 |
145 } // namespace webrtc | 137 } // namespace webrtc |
146 | 138 |
147 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_FILE_PROCESSOR_H_ | 139 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_FILE_PROCESSOR_H_ |
OLD | NEW |