Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(254)

Side by Side Diff: third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.cpp

Issue 2092033003: Add OfflineAudioDestinationNode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
11 * documentation and/or other materials provided with the distribution. 11 * documentation and/or other materials provided with the distribution.
12 * 12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND AN Y 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND AN Y
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 15 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16 * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR AN Y 16 * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR AN Y
17 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 17 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 18 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND O N 19 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND O N
20 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 20 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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 26
27 #include "core/dom/ExceptionCode.h"
28 #include "core/dom/ExecutionContext.h"
27 #include "core/dom/ExecutionContextTask.h" 29 #include "core/dom/ExecutionContextTask.h"
28 #include "modules/webaudio/AudioNodeInput.h" 30 #include "modules/webaudio/AudioNodeInput.h"
29 #include "modules/webaudio/AudioNodeOutput.h" 31 #include "modules/webaudio/AudioNodeOutput.h"
30 #include "modules/webaudio/BaseAudioContext.h" 32 #include "modules/webaudio/BaseAudioContext.h"
31 #include "modules/webaudio/OfflineAudioContext.h" 33 #include "modules/webaudio/OfflineAudioContext.h"
32 #include "platform/audio/AudioBus.h" 34 #include "platform/audio/AudioBus.h"
33 #include "platform/audio/DenormalDisabler.h" 35 #include "platform/audio/DenormalDisabler.h"
34 #include "platform/audio/HRTFDatabaseLoader.h" 36 #include "platform/audio/HRTFDatabaseLoader.h"
35 #include "public/platform/Platform.h" 37 #include "public/platform/Platform.h"
36 #include "wtf/PtrUtil.h" 38 #include "wtf/PtrUtil.h"
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 // Let the context take care of any business at the end of each render quant um. 308 // Let the context take care of any business at the end of each render quant um.
307 context()->handlePostOfflineRenderTasks(); 309 context()->handlePostOfflineRenderTasks();
308 310
309 // Advance current sample-frame. 311 // Advance current sample-frame.
310 size_t newSampleFrame = m_currentSampleFrame + numberOfFrames; 312 size_t newSampleFrame = m_currentSampleFrame + numberOfFrames;
311 releaseStore(&m_currentSampleFrame, newSampleFrame); 313 releaseStore(&m_currentSampleFrame, newSampleFrame);
312 314
313 return false; 315 return false;
314 } 316 }
315 317
318 void OfflineAudioDestinationHandler::setChannelCount(unsigned long newChannelCou nt, ExceptionState& exceptionState)
319 {
320 DCHECK(isMainThread());
321 BaseAudioContext::AutoLocker locker(context());
322
323 // Cannot change the channelCount to a different value.
324 if (newChannelCount != channelCount()) {
325 exceptionState.throwDOMException(
326 NotSupportedError,
327 ExceptionMessages::indexOutsideRange<unsigned long>(
328 "channelCount",
329 newChannelCount,
330 channelCount(),
331 ExceptionMessages::InclusiveBound,
332 channelCount(),
333 ExceptionMessages::InclusiveBound));
334 }
335 }
336
337 void OfflineAudioDestinationHandler::setChannelCountMode(const String& mode, Exc eptionState& exceptionState)
338 {
339 DCHECK(isMainThread());
340 BaseAudioContext::AutoLocker locker(context());
341
342 if (mode != channelCountMode()) {
343 exceptionState.throwDOMException(
344 NotSupportedError,
345 "Cannot change channelCountMode from \""
346 + channelCountMode()
347 + "\" to \""
348 + mode + "\"");
349 }
350 }
351
316 // ---------------------------------------------------------------- 352 // ----------------------------------------------------------------
317 353
318 OfflineAudioDestinationNode::OfflineAudioDestinationNode(BaseAudioContext& conte xt, AudioBuffer* renderTarget) 354 OfflineAudioDestinationNode::OfflineAudioDestinationNode(BaseAudioContext& conte xt, AudioBuffer* renderTarget)
319 : AudioDestinationNode(context) 355 : AudioDestinationNode(context)
320 { 356 {
321 setHandler(OfflineAudioDestinationHandler::create(*this, renderTarget)); 357 setHandler(OfflineAudioDestinationHandler::create(*this, renderTarget));
322 } 358 }
323 359
324 OfflineAudioDestinationNode* OfflineAudioDestinationNode::create(BaseAudioContex t* context, AudioBuffer* renderTarget) 360 OfflineAudioDestinationNode* OfflineAudioDestinationNode::create(BaseAudioContex t* context, AudioBuffer* renderTarget)
325 { 361 {
326 return new OfflineAudioDestinationNode(*context, renderTarget); 362 return new OfflineAudioDestinationNode(*context, renderTarget);
327 } 363 }
328 364
329 } // namespace blink 365 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698