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 "modules/webaudio/OfflineAudioDestinationNode.h" | 25 #include "modules/webaudio/OfflineAudioDestinationNode.h" |
26 #include "core/dom/CrossThreadTask.h" | 26 #include "core/dom/CrossThreadTask.h" |
27 #include "modules/webaudio/AbstractAudioContext.h" | 27 #include "modules/webaudio/AbstractAudioContext.h" |
28 #include "modules/webaudio/AudioNodeInput.h" | 28 #include "modules/webaudio/AudioNodeInput.h" |
29 #include "modules/webaudio/AudioNodeOutput.h" | 29 #include "modules/webaudio/AudioNodeOutput.h" |
30 #include "modules/webaudio/OfflineAudioContext.h" | 30 #include "modules/webaudio/OfflineAudioContext.h" |
31 #include "platform/Task.h" | |
32 #include "platform/audio/AudioBus.h" | 31 #include "platform/audio/AudioBus.h" |
33 #include "platform/audio/DenormalDisabler.h" | 32 #include "platform/audio/DenormalDisabler.h" |
34 #include "platform/audio/HRTFDatabaseLoader.h" | 33 #include "platform/audio/HRTFDatabaseLoader.h" |
35 #include "public/platform/Platform.h" | 34 #include "public/platform/Platform.h" |
36 #include <algorithm> | 35 #include <algorithm> |
37 | 36 |
38 namespace blink { | 37 namespace blink { |
39 | 38 |
40 const size_t OfflineAudioDestinationHandler::renderQuantumSize = 128; | 39 const size_t OfflineAudioDestinationHandler::renderQuantumSize = 128; |
41 | 40 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 ASSERT(m_renderThread); | 97 ASSERT(m_renderThread); |
99 ASSERT(m_renderTarget); | 98 ASSERT(m_renderTarget); |
100 | 99 |
101 if (!m_renderTarget) | 100 if (!m_renderTarget) |
102 return; | 101 return; |
103 | 102 |
104 // Rendering was not started. Starting now. | 103 // Rendering was not started. Starting now. |
105 if (!m_isRenderingStarted) { | 104 if (!m_isRenderingStarted) { |
106 m_isRenderingStarted = true; | 105 m_isRenderingStarted = true; |
107 m_renderThread->taskRunner()->postTask(BLINK_FROM_HERE, | 106 m_renderThread->taskRunner()->postTask(BLINK_FROM_HERE, |
108 new Task(threadSafeBind(&OfflineAudioDestinationHandler::startOfflin
eRendering, this))); | 107 threadSafeBind(&OfflineAudioDestinationHandler::startOfflineRenderin
g, this)); |
109 return; | 108 return; |
110 } | 109 } |
111 | 110 |
112 // Rendering is already started, which implicitly means we resume the | 111 // Rendering is already started, which implicitly means we resume the |
113 // rendering by calling |doOfflineRendering| on the render thread. | 112 // rendering by calling |doOfflineRendering| on the render thread. |
114 m_renderThread->taskRunner()->postTask(BLINK_FROM_HERE, | 113 m_renderThread->taskRunner()->postTask(BLINK_FROM_HERE, |
115 threadSafeBind(&OfflineAudioDestinationHandler::doOfflineRendering, this
)); | 114 threadSafeBind(&OfflineAudioDestinationHandler::doOfflineRendering, this
)); |
116 } | 115 } |
117 | 116 |
118 void OfflineAudioDestinationHandler::stopRendering() | 117 void OfflineAudioDestinationHandler::stopRendering() |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 { | 305 { |
307 setHandler(OfflineAudioDestinationHandler::create(*this, renderTarget)); | 306 setHandler(OfflineAudioDestinationHandler::create(*this, renderTarget)); |
308 } | 307 } |
309 | 308 |
310 OfflineAudioDestinationNode* OfflineAudioDestinationNode::create(AbstractAudioCo
ntext* context, AudioBuffer* renderTarget) | 309 OfflineAudioDestinationNode* OfflineAudioDestinationNode::create(AbstractAudioCo
ntext* context, AudioBuffer* renderTarget) |
311 { | 310 { |
312 return new OfflineAudioDestinationNode(*context, renderTarget); | 311 return new OfflineAudioDestinationNode(*context, renderTarget); |
313 } | 312 } |
314 | 313 |
315 } // namespace blink | 314 } // namespace blink |
316 | |
OLD | NEW |