| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 */ | 27 */ |
| 28 | 28 |
| 29 #ifndef Panner_h | 29 #ifndef Panner_h |
| 30 #define Panner_h | 30 #define Panner_h |
| 31 | 31 |
| 32 #include "platform/PlatformExport.h" | 32 #include "platform/PlatformExport.h" |
| 33 #include "wtf/Allocator.h" | 33 #include "wtf/Allocator.h" |
| 34 #include "wtf/Noncopyable.h" | 34 #include "wtf/Noncopyable.h" |
| 35 #include "wtf/PassOwnPtr.h" |
| 35 #include "wtf/build_config.h" | 36 #include "wtf/build_config.h" |
| 36 #include <memory> | |
| 37 | 37 |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 class AudioBus; | 40 class AudioBus; |
| 41 class HRTFDatabaseLoader; | 41 class HRTFDatabaseLoader; |
| 42 | 42 |
| 43 // Abstract base class for panning a mono or stereo source. | 43 // Abstract base class for panning a mono or stereo source. |
| 44 | 44 |
| 45 class PLATFORM_EXPORT Panner { | 45 class PLATFORM_EXPORT Panner { |
| 46 USING_FAST_MALLOC(Panner); | 46 USING_FAST_MALLOC(Panner); |
| 47 WTF_MAKE_NONCOPYABLE(Panner); | 47 WTF_MAKE_NONCOPYABLE(Panner); |
| 48 public: | 48 public: |
| 49 // This values are used in histograms and should not be renumbered or delete
d. | 49 // This values are used in histograms and should not be renumbered or delete
d. |
| 50 enum { | 50 enum { |
| 51 PanningModelEqualPower = 0, | 51 PanningModelEqualPower = 0, |
| 52 PanningModelHRTF = 1 | 52 PanningModelHRTF = 1 |
| 53 }; | 53 }; |
| 54 | 54 |
| 55 typedef unsigned PanningModel; | 55 typedef unsigned PanningModel; |
| 56 | 56 |
| 57 static std::unique_ptr<Panner> create(PanningModel, float sampleRate, HRTFDa
tabaseLoader*); | 57 static PassOwnPtr<Panner> create(PanningModel, float sampleRate, HRTFDatabas
eLoader*); |
| 58 | 58 |
| 59 virtual ~Panner() { }; | 59 virtual ~Panner() { }; |
| 60 | 60 |
| 61 virtual void pan(double azimuth, double elevation, const AudioBus* inputBus,
AudioBus* outputBus, size_t framesToProcess) = 0; | 61 virtual void pan(double azimuth, double elevation, const AudioBus* inputBus,
AudioBus* outputBus, size_t framesToProcess) = 0; |
| 62 virtual void panWithSampleAccurateValues(double* azimuth, double* elevation,
const AudioBus* inputBus, AudioBus* outputBus, size_t framesToProcess) = 0; | 62 virtual void panWithSampleAccurateValues(double* azimuth, double* elevation,
const AudioBus* inputBus, AudioBus* outputBus, size_t framesToProcess) = 0; |
| 63 | 63 |
| 64 virtual void reset() = 0; | 64 virtual void reset() = 0; |
| 65 | 65 |
| 66 virtual double tailTime() const = 0; | 66 virtual double tailTime() const = 0; |
| 67 virtual double latencyTime() const = 0; | 67 virtual double latencyTime() const = 0; |
| 68 | 68 |
| 69 protected: | 69 protected: |
| 70 Panner(PanningModel model) : m_panningModel(model) { } | 70 Panner(PanningModel model) : m_panningModel(model) { } |
| 71 | 71 |
| 72 PanningModel m_panningModel; | 72 PanningModel m_panningModel; |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 } // namespace blink | 75 } // namespace blink |
| 76 | 76 |
| 77 #endif // Panner_h | 77 #endif // Panner_h |
| OLD | NEW |