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

  /external/webkit/Source/WebCore/platform/audio/
Panner.h 40 class Panner {
50 static PassOwnPtr<Panner> create(PanningModel model, double sampleRate);
52 virtual ~Panner() { };
61 Panner(PanningModel model) : m_panningModel(model) { }
Panner.cpp 33 #include "Panner.h"
41 PassOwnPtr<Panner> Panner::create(PanningModel model, double sampleRate)
43 OwnPtr<Panner> panner; local
47 panner = adoptPtr(new EqualPowerPanner(sampleRate));
51 panner = adoptPtr(new HRTFPanner(sampleRate));
61 return panner.release();
EqualPowerPanner.h 28 #include "Panner.h"
32 // Common type of stereo panner as found in normal audio mixing equipment.
34 class EqualPowerPanner : public Panner {
HRTFPanner.h 30 #include "Panner.h"
34 class HRTFPanner : public Panner {
39 // Panner
EqualPowerPanner.cpp 41 : Panner(PanningModelEqualPower)
HRTFPanner.cpp 48 : Panner(PanningModelHRTF)
138 // IRCAM HRTF azimuths values from the loaded database is reversed from the panner's notion of azimuth.
  /external/webkit/Source/WebCore/webaudio/
AudioPannerNode.cpp 51 , m_panningModel(Panner::PanningModelHRTF)
134 m_panner = Panner::create(m_panningModel, sampleRate());
156 OwnPtr<Panner> newPanner = Panner::create(model, sampleRate());
AudioPannerNode.h 35 #include "Panner.h"
49 // These must be defined as in the .idl file and must match those in the Panner class.
129 OwnPtr<Panner> m_panner;

Completed in 48 milliseconds