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

Unified Diff: webrtc/modules/audio_processing/test/audioproc_float.cc

Issue 1310653002: Fix accidental redeclaration. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_processing/test/audioproc_float.cc
diff --git a/webrtc/modules/audio_processing/test/audioproc_float.cc b/webrtc/modules/audio_processing/test/audioproc_float.cc
index 268702e5dec6ac7ebfff26d9d9f466bff876b04a..3cea5b933e2d0c1c084913af5026d6693a37ad5f 100644
--- a/webrtc/modules/audio_processing/test/audioproc_float.cc
+++ b/webrtc/modules/audio_processing/test/audioproc_float.cc
@@ -172,10 +172,10 @@ int main(int argc, char* argv[]) {
StreamConfig reverse_input_config = {};
StreamConfig reverse_output_config = {};
if (process_reverse) {
- StreamConfig reverse_input_config = {in_rev_file->sample_rate(),
- in_rev_file->num_channels()};
- StreamConfig reverse_output_config = {out_rev_file->sample_rate(),
- out_rev_file->num_channels()};
+ reverse_input_config = {in_rev_file->sample_rate(),
+ in_rev_file->num_channels()};
+ reverse_output_config = {out_rev_file->sample_rate(),
+ out_rev_file->num_channels()};
}
while (in_file.ReadSamples(in_interleaved.size(),
&in_interleaved[0]) == in_interleaved.size()) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698