OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012, Google Inc. All rights reserved. | 2 * Copyright (C) 2012, 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 15 matching lines...) Expand all Loading... |
26 #define OscillatorNode_h | 26 #define OscillatorNode_h |
27 | 27 |
28 #include "platform/audio/AudioBus.h" | 28 #include "platform/audio/AudioBus.h" |
29 #include "modules/webaudio/AudioParam.h" | 29 #include "modules/webaudio/AudioParam.h" |
30 #include "modules/webaudio/AudioScheduledSourceNode.h" | 30 #include "modules/webaudio/AudioScheduledSourceNode.h" |
31 #include "wtf/OwnPtr.h" | 31 #include "wtf/OwnPtr.h" |
32 #include "wtf/PassRefPtr.h" | 32 #include "wtf/PassRefPtr.h" |
33 #include "wtf/RefPtr.h" | 33 #include "wtf/RefPtr.h" |
34 #include "wtf/Threading.h" | 34 #include "wtf/Threading.h" |
35 | 35 |
36 namespace WebCore { | 36 namespace blink { |
37 | 37 |
38 class AudioContext; | 38 class AudioContext; |
39 class PeriodicWave; | 39 class PeriodicWave; |
40 | 40 |
41 // OscillatorNode is an audio generator of periodic waveforms. | 41 // OscillatorNode is an audio generator of periodic waveforms. |
42 | 42 |
43 class OscillatorNode FINAL : public AudioScheduledSourceNode { | 43 class OscillatorNode FINAL : public AudioScheduledSourceNode { |
44 public: | 44 public: |
45 // The waveform type. | 45 // The waveform type. |
46 // These must be defined as in the .idl file. | 46 // These must be defined as in the .idl file. |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 // This synchronizes process(). | 98 // This synchronizes process(). |
99 mutable Mutex m_processLock; | 99 mutable Mutex m_processLock; |
100 | 100 |
101 // Stores sample-accurate values calculated according to frequency and detun
e. | 101 // Stores sample-accurate values calculated according to frequency and detun
e. |
102 AudioFloatArray m_phaseIncrements; | 102 AudioFloatArray m_phaseIncrements; |
103 AudioFloatArray m_detuneValues; | 103 AudioFloatArray m_detuneValues; |
104 | 104 |
105 RefPtrWillBeMember<PeriodicWave> m_periodicWave; | 105 RefPtrWillBeMember<PeriodicWave> m_periodicWave; |
106 }; | 106 }; |
107 | 107 |
108 } // namespace WebCore | 108 } // namespace blink |
109 | 109 |
110 #endif // OscillatorNode_h | 110 #endif // OscillatorNode_h |
OLD | NEW |