OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
629 printf(" Primary rates: %d Hz (in), %d Hz (out)\n", | 629 printf(" Primary rates: %d Hz (in), %d Hz (out)\n", |
630 msg.sample_rate(), output_sample_rate); | 630 msg.sample_rate(), output_sample_rate); |
631 printf(" Primary channels: %d (in), %d (out)\n", | 631 printf(" Primary channels: %d (in), %d (out)\n", |
632 msg.num_input_channels(), | 632 msg.num_input_channels(), |
633 msg.num_output_channels()); | 633 msg.num_output_channels()); |
634 printf(" Reverse rate: %d\n", reverse_sample_rate); | 634 printf(" Reverse rate: %d\n", reverse_sample_rate); |
635 printf(" Reverse channels: %d\n", msg.num_reverse_channels()); | 635 printf(" Reverse channels: %d\n", msg.num_reverse_channels()); |
636 } | 636 } |
637 | 637 |
638 if (!raw_output) { | 638 if (!raw_output) { |
639 // The WAV file needs to be reset every time, because it cant change | 639 // The WAV file needs to be reset every time, because it can't change |
640 // it's sample rate or number of channels. | 640 // its sample rate or number of channels. |
641 output_wav_file.reset(new WavWriter(out_filename + ".wav", | 641 output_wav_file.reset(new WavWriter(out_filename + ".wav", |
642 output_sample_rate, | 642 output_sample_rate, |
643 msg.num_output_channels())); | 643 msg.num_output_channels())); |
644 } | 644 } |
645 | 645 |
646 } else if (event_msg.type() == Event::REVERSE_STREAM) { | 646 } else if (event_msg.type() == Event::REVERSE_STREAM) { |
647 ASSERT_TRUE(event_msg.has_reverse_stream()); | 647 ASSERT_TRUE(event_msg.has_reverse_stream()); |
648 ReverseStream msg = event_msg.reverse_stream(); | 648 ReverseStream msg = event_msg.reverse_stream(); |
649 reverse_count++; | 649 reverse_count++; |
650 | 650 |
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1141 } // namespace | 1141 } // namespace |
1142 } // namespace webrtc | 1142 } // namespace webrtc |
1143 | 1143 |
1144 int main(int argc, char* argv[]) { | 1144 int main(int argc, char* argv[]) { |
1145 webrtc::void_main(argc, argv); | 1145 webrtc::void_main(argc, argv); |
1146 | 1146 |
1147 // Optional, but removes memory leak noise from Valgrind. | 1147 // Optional, but removes memory leak noise from Valgrind. |
1148 google::protobuf::ShutdownProtobufLibrary(); | 1148 google::protobuf::ShutdownProtobufLibrary(); |
1149 return 0; | 1149 return 0; |
1150 } | 1150 } |
OLD | NEW |