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/platform/audio/
AudioChannel.h 38 // An AudioChannel represents a buffer of non-interleaved floating-point audio samples.
40 class PLATFORM_EXPORT AudioChannel {
41 WTF_MAKE_NONCOPYABLE(AudioChannel);
46 AudioChannel(float* storage, size_t length)
54 explicit AudioChannel(size_t length)
63 AudioChannel()
119 void copyFrom(const AudioChannel* sourceChannel);
122 void copyFromRange(const AudioChannel* sourceChannel, unsigned startFrame, unsigned endFrame);
125 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 31 milliseconds