commit | fb2e7c22a0c3a7b45ce92e607127f66ff08b6a01 | [log] [tgz] |
---|---|---|
author | aluebs@webrtc.org <aluebs@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> | Fri Jul 11 11:40:48 2014 +0000 |
committer | aluebs@webrtc.org <aluebs@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> | Fri Jul 11 11:40:48 2014 +0000 |
tree | 7af5ed7d26edad28d3e94308dff2ac6b4ecfee2e | |
parent | d212ffcfc6694e8ff933e579146e01a1b330e674 [diff] [blame] |
Document that channels are stored contiguously in AudioBuffer R=andrew@webrtc.org, kwiberg@webrtc.org Review URL: https://webrtc-codereview.appspot.com/20909004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6661 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/webrtc/modules/audio_processing/audio_buffer.h b/webrtc/modules/audio_processing/audio_buffer.h index 2fab814..db24e95 100644 --- a/webrtc/modules/audio_processing/audio_buffer.h +++ b/webrtc/modules/audio_processing/audio_buffer.h
@@ -56,6 +56,7 @@ int samples_per_split_channel() const; int samples_per_keyboard_channel() const; + // It can be assumed that channels are stored contiguously. int16_t* data(int channel); const int16_t* data(int channel) const; int16_t* low_pass_split_data(int channel);