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" | |
14 #include "webrtc/base/logging.h" | 13 #include "webrtc/base/logging.h" |
15 #include "webrtc/common_audio/resampler/include/push_resampler.h" | 14 #include "webrtc/common_audio/resampler/include/push_resampler.h" |
16 #include "webrtc/common_audio/signal_processing/include/signal_processing_librar
y.h" | 15 #include "webrtc/common_audio/signal_processing/include/signal_processing_librar
y.h" |
17 #include "webrtc/common_types.h" | 16 #include "webrtc/common_types.h" |
18 #include "webrtc/modules/include/module_common_types.h" | 17 #include "webrtc/modules/include/module_common_types.h" |
19 #include "webrtc/modules/utility/include/audio_frame_operations.h" | 18 #include "webrtc/modules/utility/include/audio_frame_operations.h" |
20 #include "webrtc/voice_engine/voice_engine_defines.h" | 19 #include "webrtc/voice_engine/voice_engine_defines.h" |
21 | 20 |
22 namespace webrtc { | 21 namespace webrtc { |
23 namespace voe { | 22 namespace voe { |
(...skipping 22 matching lines...) Expand all Loading... |
46 // Downmix before resampling. | 45 // Downmix before resampling. |
47 if (num_channels == 2 && dst_frame->num_channels_ == 1) { | 46 if (num_channels == 2 && dst_frame->num_channels_ == 1) { |
48 AudioFrameOperations::StereoToMono(src_data, samples_per_channel, | 47 AudioFrameOperations::StereoToMono(src_data, samples_per_channel, |
49 mono_audio); | 48 mono_audio); |
50 audio_ptr = mono_audio; | 49 audio_ptr = mono_audio; |
51 audio_ptr_num_channels = 1; | 50 audio_ptr_num_channels = 1; |
52 } | 51 } |
53 | 52 |
54 if (resampler->InitializeIfNeeded(sample_rate_hz, dst_frame->sample_rate_hz_, | 53 if (resampler->InitializeIfNeeded(sample_rate_hz, dst_frame->sample_rate_hz_, |
55 audio_ptr_num_channels) == -1) { | 54 audio_ptr_num_channels) == -1) { |
56 FATAL() << "InitializeIfNeeded failed: sample_rate_hz = " << sample_rate_hz | 55 LOG(LS_ERROR) << "InitializeIfNeeded failed: sample_rate_hz = " |
57 << ", dst_frame->sample_rate_hz_ = " << dst_frame->sample_rate_hz_ | 56 << sample_rate_hz << ", dst_frame->sample_rate_hz_ = " |
58 << ", audio_ptr_num_channels = " << audio_ptr_num_channels; | 57 << dst_frame->sample_rate_hz_ |
| 58 << ", audio_ptr_num_channels = " << audio_ptr_num_channels; |
| 59 assert(false); |
59 } | 60 } |
60 | 61 |
61 const size_t src_length = samples_per_channel * audio_ptr_num_channels; | 62 const size_t src_length = samples_per_channel * audio_ptr_num_channels; |
62 int out_length = resampler->Resample(audio_ptr, src_length, dst_frame->data_, | 63 int out_length = resampler->Resample(audio_ptr, src_length, dst_frame->data_, |
63 AudioFrame::kMaxDataSizeSamples); | 64 AudioFrame::kMaxDataSizeSamples); |
64 if (out_length == -1) { | 65 if (out_length == -1) { |
65 FATAL() << "Resample failed: audio_ptr = " << audio_ptr | 66 LOG(LS_ERROR) << "Resample failed: audio_ptr = " << audio_ptr |
66 << ", src_length = " << src_length | 67 << ", src_length = " << src_length |
67 << ", dst_frame->data_ = " << dst_frame->data_; | 68 << ", dst_frame->data_ = " << dst_frame->data_; |
| 69 assert(false); |
68 } | 70 } |
69 dst_frame->samples_per_channel_ = out_length / audio_ptr_num_channels; | 71 dst_frame->samples_per_channel_ = out_length / audio_ptr_num_channels; |
70 | 72 |
71 // Upmix after resampling. | 73 // Upmix after resampling. |
72 if (num_channels == 1 && dst_frame->num_channels_ == 2) { | 74 if (num_channels == 1 && dst_frame->num_channels_ == 2) { |
73 // The audio in dst_frame really is mono at this point; MonoToStereo will | 75 // The audio in dst_frame really is mono at this point; MonoToStereo will |
74 // set this back to stereo. | 76 // set this back to stereo. |
75 dst_frame->num_channels_ = 1; | 77 dst_frame->num_channels_ = 1; |
76 AudioFrameOperations::MonoToStereo(dst_frame); | 78 AudioFrameOperations::MonoToStereo(dst_frame); |
77 } | 79 } |
78 } | 80 } |
79 | 81 |
80 void MixWithSat(int16_t target[], | 82 void MixWithSat(int16_t target[], |
81 size_t target_channel, | 83 size_t target_channel, |
82 const int16_t source[], | 84 const int16_t source[], |
83 size_t source_channel, | 85 size_t source_channel, |
84 size_t source_len) { | 86 size_t source_len) { |
85 RTC_DCHECK_GE(target_channel, 1u); | 87 assert(target_channel == 1 || target_channel == 2); |
86 RTC_DCHECK_LE(target_channel, 2u); | 88 assert(source_channel == 1 || source_channel == 2); |
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 |