| 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 28 matching lines...) Expand all Loading... |
| 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 enum { | 50 enum { |
| 50 PanningModelEqualPower = 0, | 51 PanningModelEqualPower = 0, |
| 51 PanningModelHRTF = 1 | 52 PanningModelHRTF = 1 |
| 52 }; | 53 }; |
| 53 | 54 |
| 54 typedef unsigned PanningModel; | 55 typedef unsigned PanningModel; |
| 55 | 56 |
| 56 static PassOwnPtr<Panner> create(PanningModel, float sampleRate, HRTFDatabas
eLoader*); | 57 static PassOwnPtr<Panner> create(PanningModel, float sampleRate, HRTFDatabas
eLoader*); |
| 57 | 58 |
| 58 virtual ~Panner() { }; | 59 virtual ~Panner() { }; |
| 59 | 60 |
| 60 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; |
| 61 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; |
| 62 | 63 |
| 63 virtual void reset() = 0; | 64 virtual void reset() = 0; |
| 64 | 65 |
| 65 virtual double tailTime() const = 0; | 66 virtual double tailTime() const = 0; |
| 66 virtual double latencyTime() const = 0; | 67 virtual double latencyTime() const = 0; |
| 67 | 68 |
| 68 protected: | 69 protected: |
| 69 Panner(PanningModel model) : m_panningModel(model) { } | 70 Panner(PanningModel model) : m_panningModel(model) { } |
| 70 | 71 |
| 71 PanningModel m_panningModel; | 72 PanningModel m_panningModel; |
| 72 }; | 73 }; |
| 73 | 74 |
| 74 } // namespace blink | 75 } // namespace blink |
| 75 | 76 |
| 76 #endif // Panner_h | 77 #endif // Panner_h |
| OLD | NEW |