OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AudioChannel
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/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)
49
explicit
AudioChannel
(size_t length)
57
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/main/source/
audio_buffer.cc
40
struct
AudioChannel
{
41
AudioChannel
() {
83
channels_ = new
AudioChannel
[max_num_channels_];
84
mixed_low_pass_channels_ = new
AudioChannel
[max_num_channels_];
86
low_pass_reference_channels_ = new
AudioChannel
[max_num_channels_];
Completed in 123 milliseconds