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 |
11 #include "webrtc/voice_engine/utility.h" | 11 #include "webrtc/voice_engine/utility.h" |
12 | 12 |
| 13 #include "webrtc/base/checks.h" |
13 #include "webrtc/base/logging.h" | 14 #include "webrtc/base/logging.h" |
14 #include "webrtc/common_audio/resampler/include/push_resampler.h" | 15 #include "webrtc/common_audio/resampler/include/push_resampler.h" |
15 #include "webrtc/common_audio/signal_processing/include/signal_processing_librar
y.h" | 16 #include "webrtc/common_audio/signal_processing/include/signal_processing_librar
y.h" |
16 #include "webrtc/common_types.h" | 17 #include "webrtc/common_types.h" |
17 #include "webrtc/modules/include/module_common_types.h" | 18 #include "webrtc/modules/include/module_common_types.h" |
18 #include "webrtc/modules/utility/include/audio_frame_operations.h" | 19 #include "webrtc/modules/utility/include/audio_frame_operations.h" |
19 #include "webrtc/voice_engine/voice_engine_defines.h" | 20 #include "webrtc/voice_engine/voice_engine_defines.h" |
20 | 21 |
21 namespace webrtc { | 22 namespace webrtc { |
22 namespace voe { | 23 namespace voe { |
(...skipping 22 matching lines...) Expand all Loading... |
45 // Downmix before resampling. | 46 // Downmix before resampling. |
46 if (num_channels == 2 && dst_frame->num_channels_ == 1) { | 47 if (num_channels == 2 && dst_frame->num_channels_ == 1) { |
47 AudioFrameOperations::StereoToMono(src_data, samples_per_channel, | 48 AudioFrameOperations::StereoToMono(src_data, samples_per_channel, |
48 mono_audio); | 49 mono_audio); |
49 audio_ptr = mono_audio; | 50 audio_ptr = mono_audio; |
50 audio_ptr_num_channels = 1; | 51 audio_ptr_num_channels = 1; |
51 } | 52 } |
52 | 53 |
53 if (resampler->InitializeIfNeeded(sample_rate_hz, dst_frame->sample_rate_hz_, | 54 if (resampler->InitializeIfNeeded(sample_rate_hz, dst_frame->sample_rate_hz_, |
54 audio_ptr_num_channels) == -1) { | 55 audio_ptr_num_channels) == -1) { |
55 LOG(LS_ERROR) << "InitializeIfNeeded failed: sample_rate_hz = " | 56 FATAL() << "InitializeIfNeeded failed: sample_rate_hz = " << sample_rate_hz |
56 << sample_rate_hz << ", dst_frame->sample_rate_hz_ = " | 57 << ", dst_frame->sample_rate_hz_ = " << dst_frame->sample_rate_hz_ |
57 << dst_frame->sample_rate_hz_ | 58 << ", audio_ptr_num_channels = " << audio_ptr_num_channels; |
58 << ", audio_ptr_num_channels = " << audio_ptr_num_channels; | |
59 assert(false); | |
60 } | 59 } |
61 | 60 |
62 const size_t src_length = samples_per_channel * audio_ptr_num_channels; | 61 const size_t src_length = samples_per_channel * audio_ptr_num_channels; |
63 int out_length = resampler->Resample(audio_ptr, src_length, dst_frame->data_, | 62 int out_length = resampler->Resample(audio_ptr, src_length, dst_frame->data_, |
64 AudioFrame::kMaxDataSizeSamples); | 63 AudioFrame::kMaxDataSizeSamples); |
65 if (out_length == -1) { | 64 if (out_length == -1) { |
66 LOG(LS_ERROR) << "Resample failed: audio_ptr = " << audio_ptr | 65 FATAL() << "Resample failed: audio_ptr = " << audio_ptr |
67 << ", src_length = " << src_length | 66 << ", src_length = " << src_length |
68 << ", dst_frame->data_ = " << dst_frame->data_; | 67 << ", dst_frame->data_ = " << dst_frame->data_; |
69 assert(false); | |
70 } | 68 } |
71 dst_frame->samples_per_channel_ = out_length / audio_ptr_num_channels; | 69 dst_frame->samples_per_channel_ = out_length / audio_ptr_num_channels; |
72 | 70 |
73 // Upmix after resampling. | 71 // Upmix after resampling. |
74 if (num_channels == 1 && dst_frame->num_channels_ == 2) { | 72 if (num_channels == 1 && dst_frame->num_channels_ == 2) { |
75 // The audio in dst_frame really is mono at this point; MonoToStereo will | 73 // The audio in dst_frame really is mono at this point; MonoToStereo will |
76 // set this back to stereo. | 74 // set this back to stereo. |
77 dst_frame->num_channels_ = 1; | 75 dst_frame->num_channels_ = 1; |
78 AudioFrameOperations::MonoToStereo(dst_frame); | 76 AudioFrameOperations::MonoToStereo(dst_frame); |
79 } | 77 } |
80 } | 78 } |
81 | 79 |
82 void MixWithSat(int16_t target[], | 80 void MixWithSat(int16_t target[], |
83 size_t target_channel, | 81 size_t target_channel, |
84 const int16_t source[], | 82 const int16_t source[], |
85 size_t source_channel, | 83 size_t source_channel, |
86 size_t source_len) { | 84 size_t source_len) { |
87 assert(target_channel == 1 || target_channel == 2); | 85 RTC_DCHECK_GE(target_channel, 1u); |
88 assert(source_channel == 1 || source_channel == 2); | 86 RTC_DCHECK_LE(target_channel, 2u); |
| 87 RTC_DCHECK_GE(source_channel, 1u); |
| 88 RTC_DCHECK_LE(source_channel, 2u); |
89 | 89 |
90 if (target_channel == 2 && source_channel == 1) { | 90 if (target_channel == 2 && source_channel == 1) { |
91 // Convert source from mono to stereo. | 91 // Convert source from mono to stereo. |
92 int32_t left = 0; | 92 int32_t left = 0; |
93 int32_t right = 0; | 93 int32_t right = 0; |
94 for (size_t i = 0; i < source_len; ++i) { | 94 for (size_t i = 0; i < source_len; ++i) { |
95 left = source[i] + target[i * 2]; | 95 left = source[i] + target[i * 2]; |
96 right = source[i] + target[i * 2 + 1]; | 96 right = source[i] + target[i * 2 + 1]; |
97 target[i * 2] = WebRtcSpl_SatW32ToW16(left); | 97 target[i * 2] = WebRtcSpl_SatW32ToW16(left); |
98 target[i * 2 + 1] = WebRtcSpl_SatW32ToW16(right); | 98 target[i * 2 + 1] = WebRtcSpl_SatW32ToW16(right); |
99 } | 99 } |
100 } else if (target_channel == 1 && source_channel == 2) { | 100 } else if (target_channel == 1 && source_channel == 2) { |
101 // Convert source from stereo to mono. | 101 // Convert source from stereo to mono. |
102 int32_t temp = 0; | 102 int32_t temp = 0; |
103 for (size_t i = 0; i < source_len / 2; ++i) { | 103 for (size_t i = 0; i < source_len / 2; ++i) { |
104 temp = ((source[i * 2] + source[i * 2 + 1]) >> 1) + target[i]; | 104 temp = ((source[i * 2] + source[i * 2 + 1]) >> 1) + target[i]; |
105 target[i] = WebRtcSpl_SatW32ToW16(temp); | 105 target[i] = WebRtcSpl_SatW32ToW16(temp); |
106 } | 106 } |
107 } else { | 107 } else { |
108 int32_t temp = 0; | 108 int32_t temp = 0; |
109 for (size_t i = 0; i < source_len; ++i) { | 109 for (size_t i = 0; i < source_len; ++i) { |
110 temp = source[i] + target[i]; | 110 temp = source[i] + target[i]; |
111 target[i] = WebRtcSpl_SatW32ToW16(temp); | 111 target[i] = WebRtcSpl_SatW32ToW16(temp); |
112 } | 112 } |
113 } | 113 } |
114 } | 114 } |
115 | 115 |
116 } // namespace voe | 116 } // namespace voe |
117 } // namespace webrtc | 117 } // namespace webrtc |
OLD | NEW |