HomeSort by relevance Sort by last modified time
    Searched refs:DelayProcessor (Results 1 - 6 of 6) sorted by null

  /external/webkit/Source/WebCore/webaudio/
DelayProcessor.cpp 29 #include "DelayProcessor.h"
35 DelayProcessor::DelayProcessor(double sampleRate, unsigned numberOfChannels)
41 DelayProcessor::~DelayProcessor()
47 PassOwnPtr<AudioDSPKernel> DelayProcessor::createKernel()
DelayDSPKernel.h 30 #include "DelayProcessor.h"
34 class DelayProcessor;
38 DelayDSPKernel(DelayProcessor*);
57 DelayProcessor* delayProcessor() { return static_cast<DelayProcessor*>(processor()); }
DelayProcessor.h 38 class DelayProcessor : public AudioDSPKernelProcessor {
40 DelayProcessor(double sampleRate, unsigned numberOfChannels);
41 virtual ~DelayProcessor();
DelayNode.h 29 #include "DelayProcessor.h"
48 DelayProcessor* delayProcessor() { return static_cast<DelayProcessor*>(processor()); }
DelayNode.cpp 36 m_processor = adoptPtr(new DelayProcessor(sampleRate, 1));
42 return delayProcessor()->delayTime();
DelayDSPKernel.cpp 41 DelayDSPKernel::DelayDSPKernel(DelayProcessor* processor)
92 double delayTime = delayProcessor() ? delayProcessor()->delayTime()->value() : m_desiredDelayFrames / sampleRate;

Completed in 511 milliseconds