| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 * | 7 * |
| 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 26 matching lines...) Expand all Loading... |
| 37 readonly attribute DOMString name; | 37 readonly attribute DOMString name; |
| 38 | 38 |
| 39 // FIXME: Could define units constants here (seconds, decibels, cents, etc.)
... | 39 // FIXME: Could define units constants here (seconds, decibels, cents, etc.)
... |
| 40 readonly attribute unsigned short units; | 40 readonly attribute unsigned short units; |
| 41 | 41 |
| 42 // Parameter automation. | 42 // Parameter automation. |
| 43 void setValueAtTime(in float value, in float time); | 43 void setValueAtTime(in float value, in float time); |
| 44 void linearRampToValueAtTime(in float value, in float time); | 44 void linearRampToValueAtTime(in float value, in float time); |
| 45 void exponentialRampToValueAtTime(in float value, in float time); | 45 void exponentialRampToValueAtTime(in float value, in float time); |
| 46 | 46 |
| 47 // Exponentially approach the target value with a rate having the given time
constant. | 47 // Exponentially approach the target with a rate having the given time const
ant. |
| 48 void setTargetValueAtTime(in float targetValue, in float time, in float time
Constant); | 48 void setTargetAtTime(in float target, in float time, in float timeConstant); |
| 49 | 49 |
| 50 // Sets an array of arbitrary parameter values starting at time for the give
n duration. | 50 // Sets an array of arbitrary parameter values starting at time for the give
n duration. |
| 51 // The number of values will be scaled to fit into the desired duration. | 51 // The number of values will be scaled to fit into the desired duration. |
| 52 void setValueCurveAtTime(in Float32Array values, in float time, in float dur
ation); | 52 void setValueCurveAtTime(in Float32Array values, in float time, in float dur
ation); |
| 53 | 53 |
| 54 // Cancels all scheduled parameter changes with times greater than or equal
to startTime. | 54 // Cancels all scheduled parameter changes with times greater than or equal
to startTime. |
| 55 void cancelScheduledValues(in float startTime); | 55 void cancelScheduledValues(in float startTime); |
| 56 |
| 57 #if defined(ENABLE_LEGACY_WEB_AUDIO) && ENABLE_LEGACY_WEB_AUDIO |
| 58 [V8MeasureAs=LegacyWebAudio, ImplementedAs=setTargetAtTime] void setTargetVa
lueAtTime(in float targetValue, in float time, in float timeConstant); |
| 59 #endif |
| 60 |
| 56 }; | 61 }; |
| OLD | NEW |