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); |
90 virtual ~WavFileProcessor() {} | 92 virtual ~WavFileProcessor() {} |
91 | 93 |
92 // Processes one chunk from the WAV input and writes to the WAV output. | 94 // Processes one chunk from the WAV input and writes to the WAV output. |
93 bool ProcessChunk() override; | 95 bool ProcessChunk() override; |
94 | 96 |
95 private: | 97 private: |
96 std::unique_ptr<AudioProcessing> ap_; | 98 std::unique_ptr<AudioProcessing> ap_; |
97 | 99 |
98 ChannelBuffer<float> in_buf_; | 100 ChannelBuffer<float> in_buf_; |
99 ChannelBuffer<float> out_buf_; | 101 ChannelBuffer<float> out_buf_; |
100 const StreamConfig input_config_; | 102 const StreamConfig input_config_; |
101 const StreamConfig output_config_; | 103 const StreamConfig output_config_; |
102 ChannelBufferWavReader buffer_reader_; | 104 ChannelBufferWavReader buffer_reader_; |
103 ChannelBufferWavWriter buffer_writer_; | 105 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_; |
104 }; | 112 }; |
105 | 113 |
106 // Used to read from an aecdump file and write to a WavWriter. | 114 // Used to read from an aecdump file and write to a WavWriter. |
107 class AecDumpFileProcessor final : public AudioFileProcessor { | 115 class AecDumpFileProcessor final : public AudioFileProcessor { |
108 public: | 116 public: |
109 // Takes ownership of all parameters. | 117 // Takes ownership of all parameters. |
110 AecDumpFileProcessor(std::unique_ptr<AudioProcessing> ap, | 118 AecDumpFileProcessor(std::unique_ptr<AudioProcessing> ap, |
111 FILE* dump_file, | 119 FILE* dump_file, |
112 std::unique_ptr<WavWriter> out_file); | 120 std::unique_ptr<WavWriter> out_file); |
113 | 121 |
(...skipping 16 matching lines...) Expand all Loading... |
130 ChannelBuffer<float> out_buf_; | 138 ChannelBuffer<float> out_buf_; |
131 StreamConfig input_config_; | 139 StreamConfig input_config_; |
132 StreamConfig reverse_config_; | 140 StreamConfig reverse_config_; |
133 const StreamConfig output_config_; | 141 const StreamConfig output_config_; |
134 ChannelBufferWavWriter buffer_writer_; | 142 ChannelBufferWavWriter buffer_writer_; |
135 }; | 143 }; |
136 | 144 |
137 } // namespace webrtc | 145 } // namespace webrtc |
138 | 146 |
139 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_FILE_PROCESSOR_H_ | 147 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_FILE_PROCESSOR_H_ |
OLD | NEW |