OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011, Google Inc. All rights reserved. | 2 * Copyright (C) 2011, 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 10 matching lines...) Expand all Loading... |
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
23 */ | 23 */ |
24 | 24 |
25 #include "config.h" | 25 #include "config.h" |
26 #if ENABLE(WEB_AUDIO) | 26 #if ENABLE(WEB_AUDIO) |
27 #include "modules/webaudio/OfflineAudioDestinationNode.h" | 27 #include "modules/webaudio/OfflineAudioDestinationNode.h" |
28 | 28 |
29 #include "core/dom/CrossThreadTask.h" | 29 #include "core/dom/CrossThreadTask.h" |
30 #include "modules/webaudio/AudioContext.h" | 30 #include "modules/webaudio/AudioContext.h" |
| 31 #include "modules/webaudio/OfflineAudioContext.h" |
31 #include "platform/Task.h" | 32 #include "platform/Task.h" |
32 #include "platform/audio/AudioBus.h" | 33 #include "platform/audio/AudioBus.h" |
33 #include "platform/audio/HRTFDatabaseLoader.h" | 34 #include "platform/audio/HRTFDatabaseLoader.h" |
34 #include "public/platform/Platform.h" | 35 #include "public/platform/Platform.h" |
35 #include <algorithm> | 36 #include <algorithm> |
36 | 37 |
37 namespace blink { | 38 namespace blink { |
38 | 39 |
39 const size_t renderQuantumSize = 128; | 40 const size_t renderQuantumSize = 128; |
40 | 41 |
41 OfflineAudioDestinationHandler::OfflineAudioDestinationHandler(AudioNode& node,
AudioBuffer* renderTarget) | 42 OfflineAudioDestinationHandler::OfflineAudioDestinationHandler(AudioNode& node,
AudioBuffer* renderTarget) |
42 : AudioDestinationHandler(node, renderTarget->sampleRate()) | 43 : AudioDestinationHandler(node, renderTarget->sampleRate()) |
43 , m_renderTarget(renderTarget) | 44 , m_renderTarget(renderTarget) |
44 , m_startedRendering(false) | 45 , m_framesProcessed(0) |
| 46 , m_framesToProcess(0) |
45 { | 47 { |
46 m_renderBus = AudioBus::create(renderTarget->numberOfChannels(), renderQuant
umSize); | 48 m_renderBus = AudioBus::create(renderTarget->numberOfChannels(), renderQuant
umSize); |
47 } | 49 } |
48 | 50 |
49 PassRefPtr<OfflineAudioDestinationHandler> OfflineAudioDestinationHandler::creat
e(AudioNode& node, AudioBuffer* renderTarget) | 51 PassRefPtr<OfflineAudioDestinationHandler> OfflineAudioDestinationHandler::creat
e(AudioNode& node, AudioBuffer* renderTarget) |
50 { | 52 { |
51 return adoptRef(new OfflineAudioDestinationHandler(node, renderTarget)); | 53 return adoptRef(new OfflineAudioDestinationHandler(node, renderTarget)); |
52 } | 54 } |
53 | 55 |
54 OfflineAudioDestinationHandler::~OfflineAudioDestinationHandler() | 56 OfflineAudioDestinationHandler::~OfflineAudioDestinationHandler() |
(...skipping 26 matching lines...) Expand all Loading... |
81 AudioHandler::uninitialize(); | 83 AudioHandler::uninitialize(); |
82 } | 84 } |
83 | 85 |
84 void OfflineAudioDestinationHandler::startRendering() | 86 void OfflineAudioDestinationHandler::startRendering() |
85 { | 87 { |
86 ASSERT(isMainThread()); | 88 ASSERT(isMainThread()); |
87 ASSERT(m_renderTarget); | 89 ASSERT(m_renderTarget); |
88 if (!m_renderTarget) | 90 if (!m_renderTarget) |
89 return; | 91 return; |
90 | 92 |
91 if (!m_startedRendering) { | 93 // Rendering was not started. Starting now. |
92 m_startedRendering = true; | 94 if (!m_renderThread) { |
93 m_renderThread = adoptPtr(Platform::current()->createThread("Offline Aud
io Renderer")); | 95 m_renderThread = adoptPtr(Platform::current()->createThread("Offline Aud
io Renderer")); |
94 m_renderThread->postTask(FROM_HERE, new Task(threadSafeBind(&OfflineAudi
oDestinationHandler::offlineRender, PassRefPtr<OfflineAudioDestinationHandler>(t
his)))); | 96 m_renderThread->postTask(FROM_HERE, |
| 97 new Task(threadSafeBind(&OfflineAudioDestinationHandler::startOfflin
eRendering, this))); |
| 98 return; |
95 } | 99 } |
| 100 |
| 101 // Rendering is already started, which implicitly means we resume the |
| 102 // rendering by calling |runOfflineRendering| on m_renderThread. |
| 103 m_renderThread->postTask(FROM_HERE, |
| 104 threadSafeBind(&OfflineAudioDestinationHandler::runOfflineRendering, thi
s)); |
96 } | 105 } |
97 | 106 |
98 void OfflineAudioDestinationHandler::stopRendering() | 107 void OfflineAudioDestinationHandler::stopRendering() |
99 { | 108 { |
100 ASSERT_NOT_REACHED(); | 109 ASSERT_NOT_REACHED(); |
101 } | 110 } |
102 | 111 |
103 void OfflineAudioDestinationHandler::offlineRender() | 112 size_t OfflineAudioDestinationHandler::quantizeTimeToRenderQuantum(double when)
const |
104 { | 113 { |
105 offlineRenderInternal(); | 114 ASSERT(when >= 0); |
106 context()->handlePostRenderTasks(); | 115 |
| 116 size_t whenAsFrame = when * sampleRate(); |
| 117 return whenAsFrame - (whenAsFrame % renderQuantumSize); |
107 } | 118 } |
108 | 119 |
109 void OfflineAudioDestinationHandler::offlineRenderInternal() | 120 void OfflineAudioDestinationHandler::startOfflineRendering() |
110 { | 121 { |
111 ASSERT(!isMainThread()); | 122 ASSERT(!isMainThread()); |
| 123 |
112 ASSERT(m_renderBus); | 124 ASSERT(m_renderBus); |
113 if (!m_renderBus) | 125 if (!m_renderBus) |
114 return; | 126 return; |
115 | 127 |
116 bool isAudioContextInitialized = context()->isInitialized(); | 128 bool isAudioContextInitialized = context()->isInitialized(); |
117 ASSERT(isAudioContextInitialized); | 129 ASSERT(isAudioContextInitialized); |
118 if (!isAudioContextInitialized) | 130 if (!isAudioContextInitialized) |
119 return; | 131 return; |
120 | 132 |
121 bool channelsMatch = m_renderBus->numberOfChannels() == m_renderTarget->numb
erOfChannels(); | 133 bool channelsMatch = m_renderBus->numberOfChannels() == m_renderTarget->numb
erOfChannels(); |
122 ASSERT(channelsMatch); | 134 ASSERT(channelsMatch); |
123 if (!channelsMatch) | 135 if (!channelsMatch) |
124 return; | 136 return; |
125 | 137 |
126 bool isRenderBusAllocated = m_renderBus->length() >= renderQuantumSize; | 138 bool isRenderBusAllocated = m_renderBus->length() >= renderQuantumSize; |
127 ASSERT(isRenderBusAllocated); | 139 ASSERT(isRenderBusAllocated); |
128 if (!isRenderBusAllocated) | 140 if (!isRenderBusAllocated) |
129 return; | 141 return; |
130 | 142 |
131 // Break up the render target into smaller "render quantize" sized pieces. | 143 m_framesToProcess = m_renderTarget->length(); |
132 // Render until we're finished. | 144 |
133 size_t framesToProcess = m_renderTarget->length(); | 145 // Start rendering. |
| 146 runOfflineRendering(); |
| 147 } |
| 148 |
| 149 void OfflineAudioDestinationHandler::runOfflineRendering() |
| 150 { |
| 151 ASSERT(!isMainThread()); |
| 152 |
134 unsigned numberOfChannels = m_renderTarget->numberOfChannels(); | 153 unsigned numberOfChannels = m_renderTarget->numberOfChannels(); |
135 | 154 |
136 unsigned n = 0; | 155 // If there is more to process and there is no suspension at the moment, |
137 while (framesToProcess > 0) { | 156 // do continue to render quanta. If there is a suspend scheduled at the |
138 // Render one render quantum. | 157 // current sample frame, stop the render loop and put the context into the |
| 158 // suspended state. Then calling OfflineAudioContext.resume() will pick up |
| 159 // the render loop again from where it suspended. |
| 160 while (m_framesToProcess > 0 && !context()->shouldSuspendNow()) { |
| 161 |
| 162 // Render one render quantum. Note that this includes pre/post render |
| 163 // tasks from the online audio context. |
139 render(0, m_renderBus.get(), renderQuantumSize); | 164 render(0, m_renderBus.get(), renderQuantumSize); |
140 | 165 |
141 size_t framesAvailableToCopy = std::min(framesToProcess, renderQuantumSi
ze); | 166 size_t framesAvailableToCopy = std::min(m_framesToProcess, renderQuantum
Size); |
142 | 167 |
143 for (unsigned channelIndex = 0; channelIndex < numberOfChannels; ++chann
elIndex) { | 168 for (unsigned channelIndex = 0; channelIndex < numberOfChannels; ++chann
elIndex) { |
144 const float* source = m_renderBus->channel(channelIndex)->data(); | 169 const float* source = m_renderBus->channel(channelIndex)->data(); |
145 float* destination = m_renderTarget->getChannelData(channelIndex)->d
ata(); | 170 float* destination = m_renderTarget->getChannelData(channelIndex)->d
ata(); |
146 memcpy(destination + n, source, sizeof(float) * framesAvailableToCop
y); | 171 memcpy(destination + m_framesProcessed, source, sizeof(float) * fram
esAvailableToCopy); |
147 } | 172 } |
148 | 173 |
149 n += framesAvailableToCopy; | 174 m_framesProcessed += framesAvailableToCopy; |
150 framesToProcess -= framesAvailableToCopy; | 175 m_framesToProcess -= framesAvailableToCopy; |
151 } | 176 } |
152 | 177 |
| 178 // Resolve pending suspend promises. |
| 179 context()->resolvePendingSuspendPromises(); |
| 180 |
| 181 // Finish up the rendering loop if there is no more to process. |
| 182 if (m_framesToProcess <= 0) |
| 183 finishOfflineRendering(); |
| 184 } |
| 185 |
| 186 void OfflineAudioDestinationHandler::finishOfflineRendering() |
| 187 { |
| 188 ASSERT(!isMainThread()); |
| 189 |
153 // Our work is done. Let the AudioContext know. | 190 // Our work is done. Let the AudioContext know. |
154 if (context()->executionContext()) | 191 if (context()->executionContext()) |
155 context()->executionContext()->postTask(FROM_HERE, createCrossThreadTask
(&OfflineAudioDestinationHandler::notifyComplete, PassRefPtr<OfflineAudioDestina
tionHandler>(this))); | 192 context()->executionContext()->postTask(FROM_HERE, createCrossThreadTask
(&OfflineAudioDestinationHandler::notifyComplete, this)); |
| 193 |
| 194 // FIXME: this might not be necessary. |
| 195 // Perform post-render tasks once more. |
| 196 context()->handlePostRenderTasks(); |
156 } | 197 } |
157 | 198 |
158 void OfflineAudioDestinationHandler::notifyComplete() | 199 void OfflineAudioDestinationHandler::notifyComplete() |
159 { | 200 { |
160 // The AudioContext might be gone. | 201 // The OfflineAudioContext might be gone. |
161 if (context()) | 202 if (context()) |
162 context()->fireCompletionEvent(); | 203 context()->fireCompletionEvent(); |
163 } | 204 } |
164 | 205 |
165 // ---------------------------------------------------------------- | 206 // ---------------------------------------------------------------- |
166 | 207 |
167 OfflineAudioDestinationNode::OfflineAudioDestinationNode(AudioContext& context,
AudioBuffer* renderTarget) | 208 OfflineAudioDestinationNode::OfflineAudioDestinationNode(AudioContext& context,
AudioBuffer* renderTarget) |
168 : AudioDestinationNode(context) | 209 : AudioDestinationNode(context) |
169 { | 210 { |
170 setHandler(OfflineAudioDestinationHandler::create(*this, renderTarget)); | 211 setHandler(OfflineAudioDestinationHandler::create(*this, renderTarget)); |
171 } | 212 } |
172 | 213 |
173 OfflineAudioDestinationNode* OfflineAudioDestinationNode::create(AudioContext* c
ontext, AudioBuffer* renderTarget) | 214 OfflineAudioDestinationNode* OfflineAudioDestinationNode::create(AudioContext* c
ontext, AudioBuffer* renderTarget) |
174 { | 215 { |
175 return new OfflineAudioDestinationNode(*context, renderTarget); | 216 return new OfflineAudioDestinationNode(*context, renderTarget); |
176 } | 217 } |
177 | 218 |
178 } // namespace blink | 219 } // namespace blink |
179 | 220 |
180 #endif // ENABLE(WEB_AUDIO) | 221 #endif // ENABLE(WEB_AUDIO) |
OLD | NEW |