Searched defs:AudioChannel (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/platform/audio/
H A DAudioChannel.h37 // An AudioChannel represents a buffer of non-interleaved floating-point audio samples.
39 class AudioChannel { class in namespace:WebCore
40 WTF_MAKE_NONCOPYABLE(AudioChannel);
45 AudioChannel(float* storage, size_t length) function in class:WebCore::AudioChannel
49 explicit AudioChannel(size_t length) function in class:WebCore::AudioChannel
57 AudioChannel() function in class:WebCore::AudioChannel
92 void copyFrom(const AudioChannel* sourceChannel);
95 void copyFromRange(const AudioChannel* sourceChannel, unsigned startFrame, unsigned endFrame);
98 void sumFrom(const AudioChannel* sourceChannel);
/external/webrtc/src/modules/audio_processing/
H A Daudio_buffer.cc36 struct AudioChannel { struct in namespace:webrtc
37 AudioChannel() { function in struct:webrtc::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 93 milliseconds