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

Side by Side Diff: Source/modules/webaudio/WaveShaperProcessor.cpp

Issue 606653006: bindings: Adds DOMArrayBuffer, etc. as thin wrappers for ArrayBuffer, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 6 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « Source/modules/webaudio/WaveShaperProcessor.h ('k') | Source/modules/webmidi/MIDIInput.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 { 42 {
43 if (isInitialized()) 43 if (isInitialized())
44 uninitialize(); 44 uninitialize();
45 } 45 }
46 46
47 PassOwnPtr<AudioDSPKernel> WaveShaperProcessor::createKernel() 47 PassOwnPtr<AudioDSPKernel> WaveShaperProcessor::createKernel()
48 { 48 {
49 return adoptPtr(new WaveShaperDSPKernel(this)); 49 return adoptPtr(new WaveShaperDSPKernel(this));
50 } 50 }
51 51
52 void WaveShaperProcessor::setCurve(Float32Array* curve) 52 void WaveShaperProcessor::setCurve(DOMFloat32Array* curve)
53 { 53 {
54 // This synchronizes with process(). 54 // This synchronizes with process().
55 MutexLocker processLocker(m_processLock); 55 MutexLocker processLocker(m_processLock);
56 56
57 m_curve = curve; 57 m_curve = curve;
58 } 58 }
59 59
60 void WaveShaperProcessor::setOversample(OverSampleType oversample) 60 void WaveShaperProcessor::setOversample(OverSampleType oversample)
61 { 61 {
62 // This synchronizes with process(). 62 // This synchronizes with process().
(...skipping 29 matching lines...) Expand all
92 m_kernels[i]->process(source->channel(i)->data(), destination->chann el(i)->mutableData(), framesToProcess); 92 m_kernels[i]->process(source->channel(i)->data(), destination->chann el(i)->mutableData(), framesToProcess);
93 } else { 93 } else {
94 // Too bad - the tryLock() failed. We must be in the middle of a setCurv e() call. 94 // Too bad - the tryLock() failed. We must be in the middle of a setCurv e() call.
95 destination->zero(); 95 destination->zero();
96 } 96 }
97 } 97 }
98 98
99 } // namespace blink 99 } // namespace blink
100 100
101 #endif // ENABLE(WEB_AUDIO) 101 #endif // ENABLE(WEB_AUDIO)
OLDNEW
« no previous file with comments | « Source/modules/webaudio/WaveShaperProcessor.h ('k') | Source/modules/webmidi/MIDIInput.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698