| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010, Google Inc. All rights reserved. | 2 * Copyright (C) 2010, Google Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 LowPass2FilterNode createLowPass2Filter(); | 68 LowPass2FilterNode createLowPass2Filter(); |
| 69 HighPass2FilterNode createHighPass2Filter(); | 69 HighPass2FilterNode createHighPass2Filter(); |
| 70 AudioPannerNode createPanner(); | 70 AudioPannerNode createPanner(); |
| 71 ConvolverNode createConvolver(); | 71 ConvolverNode createConvolver(); |
| 72 DynamicsCompressorNode createDynamicsCompressor(); | 72 DynamicsCompressorNode createDynamicsCompressor(); |
| 73 RealtimeAnalyserNode createAnalyser(); | 73 RealtimeAnalyserNode createAnalyser(); |
| 74 JavaScriptAudioNode createJavaScriptNode(in unsigned long bufferSize); | 74 JavaScriptAudioNode createJavaScriptNode(in unsigned long bufferSize); |
| 75 | 75 |
| 76 // Channel splitting and merging | 76 // Channel splitting and merging |
| 77 AudioChannelSplitter createChannelSplitter(); | 77 AudioChannelSplitter createChannelSplitter(); |
| 78 AudioChannelMerger createChannelMerger(); | |
| 79 | 78 |
| 80 // Offline rendering | 79 // Offline rendering |
| 81 // void prepareOfflineBufferRendering(in unsigned long numberOfChannels,
in unsigned long numberOfFrames, in float sampleRate); | 80 // void prepareOfflineBufferRendering(in unsigned long numberOfChannels,
in unsigned long numberOfFrames, in float sampleRate); |
| 82 attribute EventListener oncomplete; | 81 attribute EventListener oncomplete; |
| 83 void startRendering(); | 82 void startRendering(); |
| 84 }; | 83 }; |
| 85 } | 84 } |
| OLD | NEW |