HomeSort by relevance Sort by last modified time
    Searched defs:AudioChannel (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
AudioChannel.h 37 // An AudioChannel represents a buffer of non-interleaved floating-point audio samples.
39 class AudioChannel {
40 WTF_MAKE_NONCOPYABLE(AudioChannel);
45 AudioChannel(float* storage, size_t length)
53 explicit AudioChannel(size_t length)
62 AudioChannel()
118 void copyFrom(const AudioChannel* sourceChannel);
121 void copyFromRange(const AudioChannel* sourceChannel, unsigned startFrame, unsigned endFrame);
124 void sumFrom(const AudioChannel* sourceChannel);
  /external/webrtc/src/modules/audio_processing/
audio_buffer.cc 36 struct AudioChannel {
37 AudioChannel() {
83 channels_.reset(new AudioChannel[max_num_channels_]);
84 mixed_channels_.reset(new AudioChannel[max_num_channels_]);
85 mixed_low_pass_channels_.reset(new AudioChannel[max_num_channels_]);
87 low_pass_reference_channels_.reset(new AudioChannel[max_num_channels_]);

Completed in 61 milliseconds