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

Side by Side Diff: webrtc/common_audio/include/audio_util.h

Issue 1234463003: Integrate Intelligibility with APM (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added resampling support to InterleaveTo; removed VAD logic 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 for (int i = 0; i < num_channels; ++i) { 90 for (int i = 0; i < num_channels; ++i) {
91 const T* channel = deinterleaved[i]; 91 const T* channel = deinterleaved[i];
92 int interleaved_idx = i; 92 int interleaved_idx = i;
93 for (int j = 0; j < samples_per_channel; ++j) { 93 for (int j = 0; j < samples_per_channel; ++j) {
94 interleaved[interleaved_idx] = channel[j]; 94 interleaved[interleaved_idx] = channel[j];
95 interleaved_idx += num_channels; 95 interleaved_idx += num_channels;
96 } 96 }
97 } 97 }
98 } 98 }
99 99
100 // Copies audio from a single channel buffer pointed to by |mono| to each
101 // channel of |interleaved|. There must be sufficient space allocated in
102 // |interleaved| (|samples_per_channel| * |num_channels|).
103 template <typename T>
104 void UpmixMonoToInterleaved(const T* mono, int samples_per_channel,
Andrew MacDonald 2015/07/29 03:52:27 Go with num_frames for new code rather than sample
ekm 2015/07/29 23:35:06 Done.
105 int num_channels, T* interleaved) {
106 int interleaved_idx = 0;
107 for (int i = 0; i < samples_per_channel; ++i) {
108 for (int j = 0; j < num_channels; ++j) {
109 interleaved[interleaved_idx] = mono[i];
aluebs-webrtc 2015/07/29 22:17:10 How about: interleaved[i * num_channels + j] = mo
ekm 2015/07/29 23:35:06 I'd like to avoid the inner multiplication, though
aluebs-webrtc 2015/07/30 15:28:07 Agreed.
110 interleaved_idx++;
Andrew MacDonald 2015/07/29 03:52:27 nit: could put the post-increment in the above lin
ekm 2015/07/29 23:35:06 Done.
111 }
112 }
113 }
114
100 } // namespace webrtc 115 } // namespace webrtc
101 116
102 #endif // WEBRTC_COMMON_AUDIO_INCLUDE_AUDIO_UTIL_H_ 117 #endif // WEBRTC_COMMON_AUDIO_INCLUDE_AUDIO_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698