OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isBusGood
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/platform/audio/
HRTFElevation.cpp
113
bool
isBusGood
= responseLength == expectedLength && impulseResponse->numberOfChannels() == 2;
114
ASSERT(
isBusGood
);
115
if (!
isBusGood
)
/external/webkit/Source/WebCore/webaudio/
RealtimeAnalyser.cpp
103
bool
isBusGood
= bus && bus->numberOfChannels() > 0 && bus->channel(0)->length() >= framesToProcess;
104
ASSERT(
isBusGood
);
105
if (!
isBusGood
)
118
// The source has already been sanity checked with
isBusGood
above.
AudioBufferSourceNode.cpp
265
bool
isBusGood
= destinationBus && destinationBus->length() == framesToProcess && destinationBus->numberOfChannels() == numberOfChannels();
266
ASSERT(
isBusGood
);
267
if (!
isBusGood
)
Completed in 29 milliseconds