commit a3a1c6593cfbd29ed37d83b01826e423f3f1894b Author: Paul Adenot <paul@paul.cx> Date: Thu Aug 10 18:35:26 2017 +0200 Allow passing `null` to AudioBufferSourceNode.buffer. (#1288) This fixes #1273. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit e19baea123f9dac03b03ba7cb5e3722fb5e61972 Author: rtoy <toy.raymond@gmail.com> Date: Thu Aug 10 09:35:17 2017 -0700 Fix #1267: DynamicsCompressor mode cannot be "max" (#1284) Add channelCountMode constraint for DynamicsCompressor so that it can not be set to "max". Also change the default channelCountMode from "max" to "clamped-max". These changes make the compressor work just like PannerNode and StereoPannerNode. index.html | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) commit 0c80e57aff6ad354a9f9902e5245b0198ebedd76 Author: Paul Adenot <paul@paul.cx> Date: Thu Aug 10 18:10:42 2017 +0200 Specify the DynamicsCompressor (#1278) images/compression-curve.svg | 175 +++++++++++++ images/dynamicscompressor-internal-graph.svg | 377 +++++++++++++++++++++++++++ index.html | 303 ++++++++++++++++++++- 3 files changed, 853 insertions(+), 2 deletions(-) commit fa251f953d48d7482d2769bcb26a053c2edd8f8b Author: rtoy <toy.raymond@gmail.com> Date: Thu Aug 10 07:54:08 2017 -0700 Fix #1262: Clarify text for AudioContextOptions (#1286) Just say that AudioContextOptions allows users to specify some options for an AudioContext, without explicitly saying what. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit d107ea68daa8b2891250b7a69161718a6d7efe5e Author: Chris Lilley <chris@w3.org> Date: Thu Aug 10 17:37:33 2017 +0300 deal with all the MUST and most of the SHOULD (#1276) * deal with all the MUST and most of the SHOULD * Tidy up. * Update index.html * Update index.html index.html | 224 ++++++++++++++++++++++++++++++------------------------------- 1 file changed, 112 insertions(+), 112 deletions(-) commit 2d8bb9311a0e21bd69cfab926cc1360a9f6e1c48 Merge: 275e1d6 2aef8af Author: Joe Berkovitz <joe@noteflight.com> Date: Thu Aug 3 11:40:54 2017 -0400 Merge pull request #1280 from WebAudio/1275-fix-graph-rendering-link Fix broken link identifier for "rendering a audio graph" commit 2aef8af299ac75f81fa650fa3030324f9e7e36f9 Author: joeberkovitz <joe@noteflight.com> Date: Wed Aug 2 14:47:48 2017 -0400 Fix broken link identifier. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 275e1d66722e95cbebbbb392ebf40b02703b429e Author: jdsmith3000 <jdsmith3000@users.noreply.github.com> Date: Thu Jul 20 09:20:03 2017 -0700 Fix 1089: Specify channel order (#1271) * Fix 1089: Specify channel order * Removed <pre> & </pre> before and after table * Adjusted table style * Fix tidy issues * A few more tidy fixes * Removed one last space index.html | 324 +++++++++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 295 insertions(+), 29 deletions(-) commit f4a6a69b2bfb42e00b4da93b13c3227cc2b562a3 Author: rtoy <toy.raymond@gmail.com> Date: Mon Jul 17 00:31:27 2017 -0700 Fix #1152: Add OfflineAudioContext constructor with dictionary (#1264) * Fix #1152: Add OfflineAudioContext constructor with dictionary Add constructor for OfflineAudioContext that takes a required dictionary. This is an addition to the existing constructor. Define an algorithm that describes how the context is created too. Update startRendering to match these changes. * Address (offline) review comments * Address review comments and run tidy index.html | 176 ++++++++++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 128 insertions(+), 48 deletions(-) commit d99de23c6bd84f35bb16b564157c08e0397c18f0 Merge: f36c8e3 33f42e0 Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Fri Jul 7 10:54:05 2017 -0700 Merge pull request #1270 from hoch/update-makefile-gitignore Update Makefile and gitignore commit 33f42e0d5654306e5dd7acb59853b9fec9d4652b Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Fri Jul 7 10:49:14 2017 -0700 Update Makefile and gitignore .gitignore | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) commit f36c8e3e012dd44ff9bf2d17015170f7ac05a606 Merge: cec3b04 7ee9978 Author: Joe Berkovitz <joe@noteflight.com> Date: Wed Jun 21 16:54:53 2017 -0400 Merge pull request #1263 from WebAudio/1236-common-function-defs Canonicalize all the variations of 3-vector spec code to use common definitions. commit 7ee997857886705889094aea389795a097c543dc Author: joeberkovitz <joe@noteflight.com> Date: Wed Jun 21 16:44:23 2017 -0400 Fix wrong use of ‘var’ in Vec3 class index.html | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) commit a1b8b4c739e7c8349143851db1d0a040c38604d9 Author: joeberkovitz <joe@noteflight.com> Date: Wed Jun 21 16:43:23 2017 -0400 Use ‘let’ consistently instead of ‘var’ index.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) commit f1cb3b5eca874a0355806456244064ff0e61adab Author: joeberkovitz <joe@noteflight.com> Date: Wed Jun 21 16:37:13 2017 -0400 Change acos() to Math.acos() in example code index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit e6821c444331a3244bd42b61c45bcb3cf1d442db Author: joeberkovitz <joe@noteflight.com> Date: Wed Jun 21 16:33:50 2017 -0400 Clean up zero-vector case in Vec3.magnitude index.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit a099732cabb24dd6e800d86b68c4629dc8ea89ba Author: joeberkovitz <joe@noteflight.com> Date: Wed Jun 21 16:19:45 2017 -0400 Canonicalize all the variations of 3-vector spec code to use a common refactored set of definitions. index.html | 141 +++++++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 91 insertions(+), 50 deletions(-) commit cec3b04d9b17eeea4b0b1a181acb6cb25388d893 Author: Matthew Paradis <matthewparadis@gmail.com> Date: Wed Jun 21 20:39:43 2017 +0100 fix for #987 (#1253) index.html | 9 +++++++++ 1 file changed, 9 insertions(+) commit 4c151b1edbefd7f0107be97aa5cb6148020dd299 Merge: 20ad5a4 c9ab9a5 Author: rtoy <toy.raymond@gmail.com> Date: Wed Jun 21 15:39:36 2017 -0400 Merge pull request #1260 from padenot/travis-caching Take advantage of travis caching to speed up tidy checking commit 20ad5a4cd58766615b6a52ed4f9520da1099b50a Author: Joe Berkovitz <joe@noteflight.com> Date: Wed Jun 21 15:35:43 2017 -0400 Clean up definitions of automation events and times. (#1258) index.html | 76 +++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 45 insertions(+), 31 deletions(-) commit e6025a30cfd7e87f9333ed47f105acabfa785c91 Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Wed Jun 21 15:32:59 2017 -0400 Add missing link for `processorState` property (#1259) * Fix missing dfn for AudioWorkletNode.processorState property * Add explicit href attribute to link index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit 0a43dba29a3b68f1e927bb43ab1e507888fac85c Author: rtoy <toy.raymond@gmail.com> Date: Wed Jun 21 15:19:51 2017 -0400 Fix #908: DynamicsCompressor channelCountMode max (#1255) Set channelCountMode to max to match what Chrome and Firefox actually do. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 58bce80ded87636aea43f0cd12a9590dd824f2f8 Author: rtoy <toy.raymond@gmail.com> Date: Wed Jun 21 15:19:47 2017 -0400 Fix #906: DynamicsCompressor channelCount is at most 2 (#1256) Specify that DynamicsCompressor channelCount must be 1 or 2 or an error is thrown. index.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) commit d6725cb7143266611912b591f72a26448c9813c8 Merge: 45466f3 e38c4e7 Author: Joe Berkovitz <joe@noteflight.com> Date: Wed Jun 21 14:57:57 2017 -0400 Merge pull request #1257 from WebAudio/1081-update-param-value Specify that AudioParam.value returns the most recent computed value. commit e38c4e749ecda85066dac6e3eaf9b2ab15bdf5fd Author: joeberkovitz <joe@noteflight.com> Date: Wed Jun 21 14:54:51 2017 -0400 Respond to @padenot’s feedback index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) commit c9ab9a508c9dcfc73dfb64d619d586f3717f1a7a Author: Paul Adenot <paul@paul.cx> Date: Wed Jun 21 14:44:53 2017 -0400 Tidy the document. index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) commit edf6e3b736624447aaab9fb80b24108a900fd694 Author: Paul Adenot <paul@paul.cx> Date: Wed Jun 21 14:38:28 2017 -0400 Bump the tidy version. Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 550ca64f544bb324b87587977b84c82439809262 Author: Paul Adenot <paul@paul.cx> Date: Wed Jun 21 14:30:06 2017 -0400 Use travis caching to speed up tidy checks. .travis.yml | 3 +++ 1 file changed, 3 insertions(+) commit 1da6555bf8097ae5c2b56551d293c58b89b9264b Author: joeberkovitz <joe@noteflight.com> Date: Wed Jun 21 12:53:56 2017 -0400 Clean up definition of AudioParam value attribute by employing an internal slot to cache the last value. index.html | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) commit 37db59cbbcaccb8bb8e809c913ae0c54d6de0a48 Author: joeberkovitz <joe@noteflight.com> Date: Wed Jun 21 12:41:05 2017 -0400 Clarify language in rendering loop concerning last-computed AudioParam value. index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) commit 669d6c9266420a90a251f3da333f25ffda2cb00a Author: joeberkovitz <joe@noteflight.com> Date: Wed Jun 21 12:24:37 2017 -0400 Specify that AudioParam.value returns the most recent computed value. index.html | 31 +++++++++++++++++++++---------- 1 file changed, 21 insertions(+), 10 deletions(-) commit 45466f301dde5db778d9c5f1417e2dc4ff69aed5 Merge: 04653b7 39f682e Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Wed Jun 21 12:18:29 2017 -0400 Merge pull request #1249 from hoch/audioworkletnode-processorstate Add `AudioWorkletProcessorState` on AudioWorkletNode commit 39f682ef41c8fffb1dbcefee2303c226ec3bed83 Author: hoch <hongchan.choi@gmail.com> Date: Wed Jun 21 12:16:17 2017 -0400 Apply tidy index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 98a26f94ba126881057e5942d1f9840aa87b44ef Author: hoch <hongchan.choi@gmail.com> Date: Wed Jun 21 12:07:38 2017 -0400 Remove onprocessorerror EventHandler from AWN index.html | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) commit 04653b769b7241eebcf03d140fea758dac9392f8 Merge: a4e5c0a f4e3c43 Author: Matthew Paradis <matthew.paradis@bbc.co.uk> Date: Wed Jun 21 17:05:33 2017 +0100 Merge branch 'gh-pages' of github.com:WebAudio/web-audio-api into gh-pages commit a4e5c0a95180eb5cbbded08f1928791b892153c8 Author: Matthew Paradis <matthew.paradis@bbc.co.uk> Date: Wed Jun 21 17:04:01 2017 +0100 updating cr transition document with wac details webaudio-CR-transition.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) commit f4e3c432573da17f03320e8853fba2c1c918f374 Merge: 7aba7ad f62bf34 Author: Joe Berkovitz <joe@noteflight.com> Date: Wed Jun 21 12:01:55 2017 -0400 Merge pull request #1254 from WebAudio/1252-reset-entered-loop Force enteredLoop flag to false on next render quantum for ABSN, iff loop is false commit 21ba6c9c8dd91acdad9cea0f903d63e13bce611a Author: hoch <hongchan.choi@gmail.com> Date: Wed Jun 21 12:00:59 2017 -0400 Adding tag and applying tidy index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit f9e4e4c83fbc4f2a6c215e5c6e0ca8d1b854de24 Author: hoch <hongchan.choi@gmail.com> Date: Wed Jun 21 11:59:02 2017 -0400 More refinements index.html | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) commit 7aba7ad22d3f208be8c42f74f38a9256237a2eca Author: Paul Adenot <paul@paul.cx> Date: Wed Jun 21 11:52:10 2017 -0400 Run tidy index.html | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) commit f62bf34d8b088a53cf32a808ca9e5c8563aeb304 Author: joeberkovitz <joe@noteflight.com> Date: Wed Jun 21 11:48:51 2017 -0400 Fix if/else style nit in ABSN algorithm index.html | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) commit d86a350d5abd3a080c1a16a56819ba6bca91939d Author: Paul Adenot <paul@paul.cx> Date: Wed Jun 21 11:40:58 2017 -0400 Fix respec error: ES slots should be prefixed by \ to not be considered as references. index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit 7d66466459c4f437d3fc7d379aac6c12d8cad159 Author: joeberkovitz <joe@noteflight.com> Date: Wed Jun 21 11:38:44 2017 -0400 Force enteredLoop flag to false on next render quantum for ABSN, when loop = false. index.html | 4 ++++ 1 file changed, 4 insertions(+) commit cbc03f1f08052a5e5fcf52601bb6c061558e4b3c Merge: 8b44201 0d556e0 Author: Joe Berkovitz <joe@noteflight.com> Date: Wed Jun 21 11:35:00 2017 -0400 Merge pull request #1251 from WebAudio/1095-loop-description Clarify non-normative loop description commit 0d556e04deafd32479a4a5aceb24ba04a2be66b7 Author: joeberkovitz <joe@noteflight.com> Date: Wed Jun 21 11:33:15 2017 -0400 Clarify that looped playback applies while loop is set to true, implying that this can change. index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) commit 083762efab60b0125afe57d731a85b6389501539 Author: joeberkovitz <joe@noteflight.com> Date: Wed Jun 21 11:21:17 2017 -0400 Add language on subsample accuracy of loop endpoints. index.html | 7 +++++++ 1 file changed, 7 insertions(+) commit 34df34fa39889ec9af9bdf1af0d7007e29c44f53 Author: joeberkovitz <joe@noteflight.com> Date: Wed Jun 21 11:13:49 2017 -0400 Clarify non-normative loop description index.html | 65 +++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 37 insertions(+), 28 deletions(-) commit f0e311dbd225700dfd72a309cdf37698fe704f60 Author: hoch <hongchan.choi@gmail.com> Date: Wed Jun 21 11:12:17 2017 -0400 Change languages around active source flag and state property index.html | 33 +++++++++++++++++++-------------- 1 file changed, 19 insertions(+), 14 deletions(-) commit 1fed01b9af78dd44b1224217426104dafe329bef Author: hoch <hongchan.choi@gmail.com> Date: Thu Jun 15 15:00:16 2017 -0700 Initial commit index.html | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) commit 8b442013210567a6e606f439470635ee17013c2d Author: Paul Adenot <paul@paul.cx> Date: Wed Jun 21 10:20:29 2017 -0400 Mention that Firefox for Android has a Web Audio API implementation webaudio-CR-transition.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit a26176b529880b3a7030cc9d2b1b8ba75c92ff7c Merge: ad2b83f dae6b07 Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Wed Jun 21 09:35:08 2017 -0400 Merge pull request #1250 from hoch/audio-param-descriptor Fix #1230: Add `required` keyword and default min/max values in `AudioParamDescriptor` commit dae6b07245cfb2605ee8cbfdab2e36dde100be69 Author: hoch <hongchan.choi@gmail.com> Date: Wed Jun 21 09:17:52 2017 -0400 Addressed comments from @rtoy index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit ad2b83f7b032d3005c7d263b29158754df524d88 Merge: fb7bb7e 4c896b0 Author: rtoy <toy.raymond@gmail.com> Date: Tue Jun 20 14:42:02 2017 -0400 Merge pull request #1231 from rtoy/1226-iirfilter-inconsistent-with-biquad Fix #1226: IIRFilter.getFrequency inconsistent with BiquadFilter commit fb7bb7e44b543c578036d140a5949c229ce0a0e9 Merge: bc40f98 d28e11e Author: Joe Berkovitz <joe@noteflight.com> Date: Tue Jun 20 14:25:28 2017 -0400 Merge pull request #1242 from padenot/1199-buffer-set-initialize Initialize the [[buffer set]] boolean slot on ConvolverNode and AudioBufferSourceNode commit bc40f9841b85e7426fd0f2d9e4c31be9dd237c33 Merge: 6adaac7 d9de610 Author: rtoy <toy.raymond@gmail.com> Date: Tue Jun 20 06:17:39 2017 -0700 Merge pull request #1237 from rtoy/1208-clarify-panning-algorithm Fix #1208: Clarify panning algorithms commit b5bc754d9e93230cfd3fc387e891cf7fa47b08a4 Author: hoch <hongchan.choi@gmail.com> Date: Fri Jun 16 08:50:48 2017 -0700 Added required keyword and default min/max values index.html | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) commit 6adaac7567c69d9f9727b2773265f5ad55bd5a5e Merge: 504599f 419ddbb Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Fri Jun 16 08:33:22 2017 -0700 Merge pull request #1248 from hoch/audio-worklet-node-options Fix #1246: Adding record<DOMString, double> commit 504599f46957bbdec3323332072adce0d0e1e52a Author: Paul Adenot <paul@paul.cx> Date: Fri Jun 16 11:06:48 2017 +0200 Replace occurences of JavaScript by script and make adjustments where needed. (#1243) * Replace occurences of JavaScript by script and make adjustments where needed. This fixes #1239. * s/Web Assembly/WebAssembly/ index.html | 65 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 33 insertions(+), 32 deletions(-) commit aed709e466df75191ed829ed999545dd4c16dbf2 Author: Paul Adenot <paul@paul.cx> Date: Fri Jun 16 11:06:26 2017 +0200 Refactor PeriodicWave ctor. (#1245) * Refactor PeriodicWave ctor. This fixes #1244. * Address review comments index.html | 202 +++++++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 129 insertions(+), 73 deletions(-) commit fdba8a43925cd856ecf4a96cc34d0123ac13996f Author: Paul Adenot <paul@paul.cx> Date: Fri Jun 16 10:57:25 2017 +0200 Define the AudioBuffer ctor. (#1241) * Define the AudioBuffer ctor. This fixed issue #1135 * Address review comments. index.html | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 70 insertions(+), 7 deletions(-) commit 419ddbbe605148fbb314dece0f67a538f7d5feb1 Author: hoch <hongchan.choi@gmail.com> Date: Thu Jun 15 11:38:51 2017 -0700 Fix typo index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 8083575423d06d1e9a04af15eac85f7bf6d5f3e2 Author: hoch <hongchan.choi@gmail.com> Date: Wed Jun 14 15:08:15 2017 -0700 Fix #1246: Adding record<DOMString, double> index.html | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) commit a603d07cd8e2b0f86bee219131f4fa5de2e867dc Author: rtoy <toy.raymond@gmail.com> Date: Wed Jun 14 02:26:35 2017 -0700 Fix #1210: exponentialRamp should throw RangeError for 0 (#1228) If the value for exponentialRampToValueAtTime is 0, throw a RangeErrror instead of a NotSupportedError. This is follow-up of #1182. index.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) commit d28e11ecb55c3af8f6e2ea50efd419e0053e222f Author: Paul Adenot <paul@paul.cx> Date: Wed Jun 14 11:18:24 2017 +0200 Initialize the [[buffer set]] boolean slot on ConvolverNode and AudioBufferSourceNode. This fixes #1199. index.html | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) commit 6540f808f33f88b4febf7f9d3fffcf864cd4fa82 Author: Joe Berkovitz <joe@noteflight.com> Date: Fri Jun 9 09:55:32 2017 -0400 Remove reference to dead interface AudioMediaStreamTrack. (#1240) Use MediaStreamTrack instead with condition that its kind equal “audio”. index.html | 56 +++++++++++++++++++++++++++++++++----------------------- 1 file changed, 33 insertions(+), 23 deletions(-) commit 1d3bb802286caecc2df853cde8773acbbad4dbf9 Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Thu Jun 8 05:28:14 2017 -0700 Introduce MessagePort on AudioWorkletNode/Processor (#1233) * Changes AWN/AWP IDLs and examples * Remove redundant line break * Fix typo: removing a period from IDL * Refine the port description, remove EventTarget from AudioWorkletProcessor * Apply tidy * Add additional text explaning the purpose of MessagePort on AWN/AWP index.html | 77 +++++++++++++++++++------------------------------------------- 1 file changed, 23 insertions(+), 54 deletions(-) commit d9de6100328eb3627dc9712158ec313adee510c2 Author: Raymond Toy <toy.raymond@gmail.com> Date: Wed Jun 7 13:59:27 2017 -0700 Fix typos index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 4c896b01dc85ca54d046903bd27fafedc9909cdb Author: Raymond Toy <toy.raymond@gmail.com> Date: Wed Jun 7 13:55:13 2017 -0700 Fix typo index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit f9bce1e3d4169230bb01a8da9da0d0a92ffefca2 Merge: d9254c6 eeba3cb Author: rtoy <toy.raymond@gmail.com> Date: Tue Jun 6 12:48:40 2017 -0700 Merge pull request #1238 from rtoy/1212-spn-not-supported-error-for-invalid-num-channels Fix #1212: Throw NotSupportedError for invalid number of channels commit d9254c6edf195adb9d0fe91a3487dbbe791c23e6 Merge: 52d53de 842e078 Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Fri Jun 2 15:55:09 2017 -0700 Merge pull request #1235 from hoch/context-info-to-interface Change contextInfo attribute to getContextInfo() method commit eeba3cb8224a40e58e4908ac999bd64750cea96f Author: Raymond Toy <rtoy@chromium.org> Date: Fri Jun 2 13:11:44 2017 -0700 Fix #1212: Throw NotSupportedError for invalid number of channels Specify that a NotSupportedError must be thrown if the number of channels specified for a ScriptProcessorNode is not supported by the implementation. index.html | 4 ++++ 1 file changed, 4 insertions(+) commit 3d1375b6f3cb949161e59015f6f15962fe5653f7 Author: Raymond Toy <rtoy@chromium.org> Date: Fri Jun 2 12:55:05 2017 -0700 Fix #1208: Clarify panning algorithms Basically split out the section on equal power panning into two sections. One for PannerNode equalpower panning and one for StereoPannerNode. We don't try to pretend they share some bits; they do, but it's not relevant here. Because of the split, I moved the HRTF section after the equalpower section, and put the StereoPanner section after these. Section titles changed to reflect better the section contents. The algorithm for the PannerNode equalpower panning was taken from Chrome's equalpower panning code. index.html | 102 ++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 60 insertions(+), 42 deletions(-) commit 842e0782c97b36b7ebfb4baa9af8ca918dee3695 Author: hoch <hongchan.choi@gmail.com> Date: Fri Jun 2 10:06:41 2017 -0700 Apply tidy index.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) commit 52d53de44b668801311a6ceb5be4764f53e4e344 Merge: 7d1f044 dacc0e1 Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Fri Jun 2 10:05:29 2017 -0700 Merge pull request #1234 from hoch/rename-import-to-addmodule Rename .import() in examples to addModule() commit 41a23b5fe790fbfe3247326aa042415d7772837c Author: hoch <hongchan.choi@gmail.com> Date: Fri Jun 2 09:57:51 2017 -0700 Change contextInfo attribute to getContextInfo() method index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) commit dacc0e10ad6fd3c9faab40c942c322a82a19c3d7 Author: hoch <hongchan.choi@gmail.com> Date: Fri Jun 2 09:27:25 2017 -0700 Rename .import() in examples to addModule() index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 7d1f044d1544a7b1f92a28ab0b13f41a868e585e Merge: b017706 e915b1a Author: rtoy <toy.raymond@gmail.com> Date: Fri Jun 2 08:58:24 2017 -0700 Merge pull request #1232 from rtoy/1222-clamp-linear-distance-model Fix #1222: Fix typo in clamping of linear distance model commit e915b1a585c8c023cd5f44a0c8bf7aa11279c85e Author: Raymond Toy <rtoy@chromium.org> Date: Fri Jun 2 08:54:19 2017 -0700 Fix #1222: Fix typo in clamping of linear distance model Make the text match what the code says. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 6a7df213e0038208796706bc2e2e716885fa52cf Author: Raymond Toy <rtoy@chromium.org> Date: Fri Jun 2 08:36:21 2017 -0700 Fix #1226: IIRFilter.getFrequency inconsistent with BiquadFilter `IIRFilter.getFrequency` should return NaN for invalid frequencies just like `BiquadFilter.getFrequency` does. Basically just copied the text from biquad to iirfilter. Also took this opportunity to mark the computation as being synchronous just like BiquadFilter. index.html | 41 +++++++++++++++++++++++++++++++---------- 1 file changed, 31 insertions(+), 10 deletions(-) commit b0177062ca566695978a085e3f4cd2c989ba48c5 Merge: 2b99202 ebcb178 Author: rtoy <toy.raymond@gmail.com> Date: Fri May 26 09:23:00 2017 -0700 Merge pull request #1209 from rtoy/1182-use-range-error-instead-of-type-error Fix #1182: Throw RangeError instead of TypeError commit ebcb1782cd982fa394e542c028404ab25ad18b1d Merge: f72473f 4ce80d5 Author: Raymond Toy <toy.raymond@gmail.com> Date: Fri May 26 09:12:50 2017 -0700 Merge branch 'gh-pages' into 1182-use-range-error-instead-of-type-error commit 4ce80d56af89f84c58e90e314d1364c1f07eb521 Merge: b2f1bc5 2b99202 Author: Raymond Toy <toy.raymond@gmail.com> Date: Fri May 26 09:12:18 2017 -0700 Merge branch 'gh-pages' of https://github.com/WebAudio/web-audio-api into gh-pages commit f72473f3f746b6fa3eb155ee9f68e7ad503cd66c Merge: ce82ad5 b2f1bc5 Author: Raymond Toy <toy.raymond@gmail.com> Date: Fri May 26 09:08:59 2017 -0700 Merge branch 'gh-pages' into 1182-use-range-error-instead-of-type-error # Conflicts: # index.html commit b2f1bc5642a0e31f4ef6e2583c3bbd1b2a01c2f1 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Apr 19 11:13:09 2017 -0700 Tidy index.html | 82 +++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 46 insertions(+), 36 deletions(-) commit 83d292cfa3fa9a21fbfd6adb0df9aa3f8af5d548 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Apr 19 11:12:56 2017 -0700 Fix #1211: Add synchronous marker Some places where we specifed that an error was thrown was missing the synchronous marker. Add the marker. index.html | 70 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 35 insertions(+), 35 deletions(-) commit 2b99202f8ccb0510563e38efb2af1b4d9d579482 Merge: 67849c6 4fc7349 Author: rtoy <toy.raymond@gmail.com> Date: Fri May 26 09:04:45 2017 -0700 Merge pull request #1213 from rtoy/1211-add-synchronous-marker Fix #1211: add synchronous marker commit 67849c6b67e14be7eddffb13f9bb63bae6b24fa0 Merge: 752d587 c0285a1 Author: Joe Berkovitz <joe@noteflight.com> Date: Thu Apr 27 12:09:09 2017 -0400 Merge pull request #1170 from WebAudio/1093-render-quantum Simplify occurrences of 128 sample frames to one render quantum commit 752d587e0e2a6d440d880a957dd8c73cec7763d4 Author: Philip Jägenstedt <philip@foolip.org> Date: Thu Apr 20 19:18:43 2017 +0700 Add a link to web-platform-tests to the top of the spec (#1214) A few other specs that have something similar: https://fetch.spec.whatwg.org/ https://w3c.github.io/IndexedDB/ https://notifications.spec.whatwg.org/ https://xhr.spec.whatwg.org/ Using the ReSpec support for this makes it slightly different. index.html | 1 + 1 file changed, 1 insertion(+) commit 4fc73499636d38518e5d1a1506f7fcd295ab62c8 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Apr 19 11:13:09 2017 -0700 Tidy index.html | 82 +++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 46 insertions(+), 36 deletions(-) commit ad0abdde7910bb7e6bb9f0eeecf72913902c4f62 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Apr 19 11:12:56 2017 -0700 Fix #1211: Add synchronous marker Some places where we specifed that an error was thrown was missing the synchronous marker. Add the marker. index.html | 70 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 35 insertions(+), 35 deletions(-) commit ce82ad53a5e7b1abb3a06d495f7be6247f8ed999 Author: Raymond Toy <toy.raymond@gmail.com> Date: Tue Apr 18 10:40:46 2017 -0700 Fix #1182: Threw RangeError instead of TypeError Throw a RangeError instead of a TypeError for cases where a value (such as time or time constants) are outside the allowed range. index.html | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) commit cbd201c88188ff900e4dfc9494a40f3f3b4d23a6 Merge: abec3ae b31b7f7 Author: rtoy <toy.raymond@gmail.com> Date: Tue Apr 18 07:54:05 2017 -0700 Merge pull request #1207 from padenot/1206-remove-doppler Remove references to the doppler effect and speed. Fixes #1206 commit b31b7f755a13ce9a87fb700145607b659393b658 Author: Paul Adenot <paul@paul.cx> Date: Tue Apr 18 12:21:00 2017 +0200 Remove references to the doppler effect and speed. We've removed support for this a while back, but we still had some references in non-normative text. This fixes #1206. index.html | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) commit c0285a1a07d281589acd5de8ecdfc8abd68b414c Author: Chris Lilley <nantonos@epona.net> Date: Thu Apr 13 15:37:32 2017 -0400 fix links index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 77201b6c95cecbdc51b30bf1b24510f66aa197e6 Author: Chris Lilley <nantonos@epona.net> Date: Thu Apr 13 15:31:31 2017 -0400 fix links index.html | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) commit abec3ae1efbcacaa63c95af12e3757501df6688e Merge: 13e65f9 11c5967 Author: Joe Berkovitz <joe@noteflight.com> Date: Thu Apr 13 12:15:12 2017 -0400 Merge pull request #1200 from WebAudio/915-subsample-accurate-start Reword treatment of starting time for AudioScheduledSourceNode commit 13e65f9651614034cd6b3e3a7ece36ebe4ccee2b Merge: 94bf9c3 85bc88a Author: rtoy <toy.raymond@gmail.com> Date: Thu Apr 13 09:13:39 2017 -0700 Merge pull request #1201 from rtoy/1157-add-attributes-again-for-measn Fix #1157: Add attributes to Media{Element,Stream}AudioSourceNode commit 94bf9c311cab662aa44c0e5ac5dafe5bb5fb80d5 Merge: b9b2f45 6c48dca Author: Joe Berkovitz <joe@noteflight.com> Date: Thu Apr 13 12:12:00 2017 -0400 Merge pull request #1204 from WebAudio/1172-no-empty-AWP-names Disallow empty string as AWP registration key. commit 6c48dca2036d4a10f553511582d141bdeab76227 Author: joeberkovitz <joe@noteflight.com> Date: Thu Apr 13 07:52:08 2017 -0400 Disallow empty string as AWP registration key. Fix missing # in link to registerProcessor() definition. index.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 85bc88ae40d970c431e6955eb9a7c87b02eea2dc Author: Raymond Toy <toy.raymond@gmail.com> Date: Wed Apr 12 09:25:18 2017 -0700 Fix #1157: Add attributes to Media{Element,Stream}AudioSourceNode Add readonly attribute to each of these nodes to hold a reference to the media element or stream used to create the node. index.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) commit b9b2f4551d319c6b6cbdb09eea5274f45f637715 Merge: 33ea560 9d85204 Author: Joe Berkovitz <joe@noteflight.com> Date: Tue Apr 11 11:58:41 2017 -0400 Merge pull request #1176 from WebAudio/1159-all-mono-all-the-time ConvolverNode outputs mono when input and response are mono commit 11c5967c4583735ad8591897c7387c502ded58a2 Author: joeberkovitz <joe@noteflight.com> Date: Tue Apr 11 09:29:36 2017 -0400 Reword treatment of starting time for AudioScheduledSourceNode to specify that exact time is to be used for derivation of output signal, no rounding to nearest frame. index.html | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) commit 33ea56040fa8ba74f85f3d3dae7399d5b1665a4a Author: rtoy <toy.raymond@gmail.com> Date: Tue Apr 11 06:08:46 2017 -0700 Fix #1195: createPeriodicWave takes `sequence<float>` arrays (#1197) Instead of using `Float32Array`'s for the real and imaginary coefficients, use `sequence<float>`. This will cause errors to be signaled if non-finite values are used, just like for the `PeriodicWave` constructor. index.html | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) commit c9ea473d0b5c1bb05db0fec70038f973cf46196b Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Tue Apr 11 06:08:25 2017 -0700 Spell out the parameter in AudioBuffer constructor. (#1192) index.html | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) commit 3ada40e0355073bb6ffa997f86a16c08f896ad19 Author: rtoy <toy.raymond@gmail.com> Date: Tue Apr 11 06:08:04 2017 -0700 Fix #1171: setValueCurveAtTime curve is sequence<float> (#1189) Change the type of the curve parameter to sequence<float>. This specifies that only finite floats are allowed for the curve. This is a backward-compatible change since Float32Array is a sequence<float> (if all the values in Float32Array are finite floats). index.html | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) commit e59b7453a9ef29be5bc133727c85d0d94c741236 Author: rtoy <toy.raymond@gmail.com> Date: Tue Apr 11 06:07:56 2017 -0700 Fix #1166: decodeAudioData throws DataCloneError for detached buffer (#1183) Throw DataCloneError instead of TypeError. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 4732b02b6658597bbbd5864bd92e2ab7026546d2 Author: rtoy <toy.raymond@gmail.com> Date: Tue Apr 11 06:07:42 2017 -0700 Fix #1173: periodicWave overrides type setting (#1181) In the OscillatorOptions dictionary, if both type and periodicWave are specified, the actual type is ignored and treated as if it were set to "custom". This implements option three from #1173. index.html | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) commit cb4086171074d5107bb879414c8b5a3ed8ec1dd5 Author: Joe Berkovitz <joe@noteflight.com> Date: Tue Apr 11 09:05:02 2017 -0400 Specify ABSN playback algorithm exactly. (#1143) * Specify ABSN playback algorithm exactly. * Add figures. Clarify wording and remove stray references to sample-frame rounding for start and offset parameters. * Add language and figure to account for possible difference in sample rates between AudioBuffer and AudioContext in ABSN playback. * Clarify content of figures and tidy up * Refactor playhead position description so it can be used across loop and offset parameter descriptions, eliminating legacy language. * Remove incorrect sample rate correction from algorithm. Remove unused and confusing bufferRate quantity from algorithm. Rework confusing wording. * Miscellaneous cleanup in response to @rtoy feedback * Further simplify language to eliminate buffer-resampling * Respond to @rtoy feedback * Add “started” flag in place of using negative value of bufferTime for ABSN algorithm * Handle case in ABSN playback where playhead is outside bounds of buffer content. * Add language to “fold” backwards iterations through the loop, but only when the loop has been entered at least once. * Correct ABSN algorithm to treat loop entry symmetrically from buffer head or tail. Calculate actualLoopStart/End in the algorithm definition, not the preceding textual section. Nest initialization steps into lists in the algorithm for clarity. Remove effectiveBufferTime variable since no longer needed. Remove reversed loop playback diagram since no longer applicable. * Correct details of loop entry detection to handle offset within loop. * Redo ABSN algorithm as JS code * Apply remaining feedback from @rtoy review * Apply @rtoy feedback. * Apply feedback from @padenot. * Add qualifications on normative vs non-normative text as requested by @padenot images/absn-basic.graffle | 4204 +++++++++++++++++++++++++++++ images/absn-basic.png | Bin 0 -> 33811 bytes images/absn-half-sample-rate.graffle | 4410 +++++++++++++++++++++++++++++++ images/absn-half-sample-rate.png | Bin 0 -> 32707 bytes images/absn-offset.graffle | 4287 ++++++++++++++++++++++++++++++ images/absn-offset.png | Bin 0 -> 36591 bytes images/absn-reversed-loop.graffle | 3900 +++++++++++++++++++++++++++ images/absn-reversed-loop.png | Bin 0 -> 31340 bytes images/absn-slow-loop.graffle | 4841 ++++++++++++++++++++++++++++++++++ images/absn-slow-loop.png | Bin 0 -> 43980 bytes images/absn-subsample-loop.graffle | 4719 +++++++++++++++++++++++++++++++++ images/absn-subsample-loop.png | Bin 0 -> 39238 bytes index.html | 504 +++- 13 files changed, 26773 insertions(+), 92 deletions(-) commit 9d85204ce52f4b4342bde604d548fca93b0c57d0 Author: joeberkovitz <joe@noteflight.com> Date: Tue Apr 11 09:03:55 2017 -0400 Apply editorial feedback from @rtoy clarifying mono/mono configuration. Clarify non-normative vs normative descriptions. index.html | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) commit c2c15dfa957d76927861cd6f087a7ff7e4b0e096 Merge: b534cd1 7415c68 Author: rtoy <toy.raymond@gmail.com> Date: Fri Apr 7 12:03:13 2017 -0700 Merge pull request #1198 from rtoy/rtoy-fix-typos Fix some typos commit 7415c680ae5a598095e23e13689bafec4acd6b9b Author: Raymond Toy <toy.raymond@gmail.com> Date: Fri Apr 7 09:59:19 2017 -0700 Fix some typos index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit b534cd13988b17ae5da26c295f93783619c18f56 Merge: f0af217 0bba847 Author: rtoy <toy.raymond@gmail.com> Date: Tue Apr 4 08:09:24 2017 -0700 Merge pull request #1191 from SaschaNaz/patch-1 Fix WebIDL syntax errors commit 0bba84794ba096d15f111a91d2d887b7f2e636e4 Author: Kagami Sascha Rosylight <saschanaz@outlook.com> Date: Sun Apr 2 04:10:57 2017 +0900 remove duplicated semicolon index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit d1dda5c5829868e93116cca727836ee6d0f37169 Author: Kagami Sascha Rosylight <saschanaz@outlook.com> Date: Sun Apr 2 04:04:40 2017 +0900 Remove unmatched parenthesis index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit e45913eab2900bda69f6cab21bfa1f9a8b487320 Author: joeberkovitz <joe@noteflight.com> Date: Sat Apr 1 12:59:46 2017 -0400 Re-tidy for Chris index.html | 45 ++++++++++++++++++++++----------------------- 1 file changed, 22 insertions(+), 23 deletions(-) commit f0af217bf6ca6a760d7b0bb9995ba2f524a9d8e4 Merge: ba35ac1 e629c03 Author: rtoy <toy.raymond@gmail.com> Date: Thu Mar 30 09:16:59 2017 -0700 Merge pull request #1150 from rtoy/1105-allow-refdistance-0 Fix #1105: Allow refDistance to be 0 for PannerNode commit ba35ac1ac62aa4124a39970e270e348f5f47c5c3 Merge: f4cfda9 2859924 Author: Joe Berkovitz <joe@noteflight.com> Date: Thu Mar 30 12:13:01 2017 -0400 Merge pull request #1161 from WebAudio/1079-algorithmic-awn-lifetime Clarify normative aspects of AudioNode lifetime. commit f4cfda973326554d256e03a498147e6d9884a7fe Author: rtoy <toy.raymond@gmail.com> Date: Thu Mar 30 04:03:15 2017 -0700 Fix #300: Configurable sample rate for AudioContext (#1177) * Fix #300: Configurable sample rate for AudioContext Add a new sampleRate attribute to AudioContextOptions to specify the sample rate of the AudioContext. * Address review comments. Slightly tweak some text for better phrasing and remove mention of audio hardware rate. index.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) commit 285992469a97e2e6a603390fab1940a588632660 Author: joeberkovitz <joe@noteflight.com> Date: Mon Mar 27 12:24:32 2017 -0400 Incorporate @padenot feedback index.html | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) commit 2aff25792069b2e7bbe8e740efdcac4cbd451a16 Author: Paul Adenot <paul@paul.cx> Date: Mon Mar 27 09:10:57 2017 -0700 Revert "Fix #1157: Add attributes to Media{Element,Stream}AudioSourceNode (#1178)" (#1179) This reverts commit 8008968772958d131e39380848c1ac8b6854bc97. index.html | 18 ------------------ 1 file changed, 18 deletions(-) commit 8008968772958d131e39380848c1ac8b6854bc97 Author: rtoy <toy.raymond@gmail.com> Date: Mon Mar 27 09:07:53 2017 -0700 Fix #1157: Add attributes to Media{Element,Stream}AudioSourceNode (#1178) Add readonly attribute to each of these nodes to hold a reference to the media element or stream used to create these nodes. index.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) commit 6f9b969deca1bc057935ad633ac1be24a69a10ab Author: rtoy <toy.raymond@gmail.com> Date: Mon Mar 27 08:54:28 2017 -0700 Fix #1120: Specify PeriodicWave constructor better (#1174) * Fix #1120: Specify PeriodicWave constructor better If both the `real` and `imag` members of the `PeriodicWaveOptions` dictionary are specified, they must have the same length. Otherwise a NotSupportedError is thrown. (Not sure if NotSupportedError is the right one, though.) * Tidy index.html | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) commit 39df73ec029ad8408ca2acb8453d19d0f7de52a3 Author: joeberkovitz <joe@noteflight.com> Date: Thu Mar 23 15:08:38 2017 -0400 Define ConvolverNode to output mono when there is a mono input and mono response. images/convolver-diagram.graffle | Bin 3686 -> 3671 bytes images/convolver-diagram.png | Bin 109920 -> 106503 bytes index.html | 28 ++++++++++++++-------------- 3 files changed, 14 insertions(+), 14 deletions(-) commit a58db0f5fd636893edc45440aedd3a85b2fa679d Merge: e6eea8a def01e5 Author: rtoy <toy.raymond@gmail.com> Date: Thu Mar 23 11:55:06 2017 -0700 Merge pull request #1158 from rtoy/1004-clarify-copy-to-from-channel Fix #1004: Specify copyFrom/To channel behavior commit e6eea8a7a69d4090160af46e413aba47fcb3ab55 Author: Paul Adenot <paul@paul.cx> Date: Tue Mar 21 08:21:12 2017 -0700 Define the constructor for AudioNodes (#1117) (#1144) * Define precisely how constructors and factory method work. This fixes #1117. * Fix the ctor descriptions * The first argument of a factory method is not a BaseAudioContext * Define the ctor of all the AudioNodes. * Address rtoy comments. * Run tidy * Add a ctor for MediaStreamTrackAudioSourceNode * Put the section about AudioNode creation in its own section so we can link to it * Link the terme assocatiated properly to their definitions * Rename the section about initializing the common part of a node * Remove 'optional' keyboards in some ctors, and fix the double-ctor-definition issue. * Run tidy * Address rtoy comments and re-run tidy. index.html | 843 +++++++++++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 709 insertions(+), 134 deletions(-) commit d7f39ec835fe9406ebf5c9bc51bb3b4feb683e55 Author: Chris Lilley <nantonos@epona.net> Date: Thu Mar 16 18:06:45 2017 -0400 Simplify occurrences of 128 sample frames to one render quantum index.html | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) commit ec0bee1dd74bc8435c6ff217f13389f1b9031ca7 Author: Chris Lilley <nantonos@epona.net> Date: Thu Mar 16 17:15:44 2017 -0400 Simplify occurrences of 128 sample frames to one render quantum index.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) commit 23a1dba0911a53b5de1b9d635c1700a25caa3ee1 Merge: be4dd3d 25bd42f Author: rtoy <toy.raymond@gmail.com> Date: Thu Mar 16 14:02:19 2017 -0700 Merge pull request #1169 from rtoy/1167-remove-stray-audiocontext-constructor Fix #1167: WebIDL for AudioContext in a funny place commit 25bd42fedaea5b7180ab9dba6f4c3a67f80e8456 Author: Raymond Toy <toy.raymond@gmail.com> Date: Thu Mar 16 14:00:16 2017 -0700 Fix #1167: WebIDL for AudioContext in a funny place This was a stray declaration AudioContext constructor. Remove it. index.html | 2 -- 1 file changed, 2 deletions(-) commit be4dd3d4a212700f98a64683dc766415f128b9ad Merge: 4977e6c d440f06 Author: Joe Berkovitz <joe@noteflight.com> Date: Thu Mar 16 12:15:59 2017 -0400 Merge pull request #1141 from WebAudio/1100-resume-closed-ctx Clarify language around resuming closed AudioContexts. commit 4977e6c9d6dec1c5ff2b0f46c53abf0783ca0d06 Merge: b77740e a28c946 Author: rtoy <toy.raymond@gmail.com> Date: Thu Mar 16 09:09:00 2017 -0700 Merge pull request #1154 from rtoy/1116-fix-periodicwave-constructor Fix #1116: Make PeriodicWaveOptions optional commit da51af0a9593377c03bf3a5013abe9e69fb0536a Author: joeberkovitz <joe@noteflight.com> Date: Tue Mar 7 10:24:14 2017 -0500 Remove sentence about “Additionally, implementations may apply other methods…” which seems not to say anything useful. index.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) commit d440f063aa2a305282737d8ab55bff49c25dee5e Author: joeberkovitz <joe@noteflight.com> Date: Tue Mar 7 10:22:26 2017 -0500 Fix typo. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 5004661a8913881f768f05a0db01db45d70137eb Author: joeberkovitz <joe@noteflight.com> Date: Mon Mar 6 14:07:34 2017 -0500 Address feedback from @rtoy on mention of threads, and concept of context “readiness” index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) commit c63a89e7accd08f9f89570af4992e5b7c9c63580 Author: joeberkovitz <joe@noteflight.com> Date: Fri Mar 3 12:54:31 2017 -0500 Clarify normative aspects of AudioNode lifetime. index.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) commit fbb631d2a8c23ff84ffed9e29bf9c666bc50122c Author: joeberkovitz <joe@noteflight.com> Date: Fri Mar 3 12:29:17 2017 -0500 Respond to @padenot review feedback. index.html | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) commit 2a9d1ff81a343deba6503b57829862a5b38a6808 Merge: 6faae40 b77740e Author: joeberkovitz <joe@noteflight.com> Date: Fri Mar 3 12:26:55 2017 -0500 Merge branch 'gh-pages' into 1100-resume-closed-ctx commit def01e5ab60b700de9ee4b5a78c39726ab4d96c7 Author: Raymond Toy <toy.raymond@gmail.com> Date: Wed Mar 1 13:27:56 2017 -0800 Tidy index.html | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) commit 5904efada36d44f797d389fa55c990bb21eefbe5 Author: Raymond Toy <toy.raymond@gmail.com> Date: Wed Mar 1 13:26:59 2017 -0800 Fix #1004: Specify copyFrom/To channel behavior Basically specify that copying is done until we run out of frames in the source or run out of space in the destination. In either case, the remaining elements are not modified, so only a part of the array is modified. index.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) commit a28c94697c2186f203269759183102145ecd115c Author: Raymond Toy <toy.raymond@gmail.com> Date: Wed Feb 22 15:40:38 2017 -0800 Fix #1116: Make PeriodicWaveOptions optional Make the PeriodicwaveOptions options actually optional and specify that if neither the real or imag members of the PeriodicWaveOptions dictionary is specified, a PeriodicWave is created that would produce the same output as an Oscillator of type "sine". index.html | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) commit e629c0342076e4350c5dbab7a526142d404a19b5 Author: Raymond Toy <toy.raymond@gmail.com> Date: Wed Feb 15 11:52:49 2017 -0800 Fix #1105: Allow refDistance to be 0 for PannerNode If refDistance is 0, define the inverse and exponential models to take the value 0 independent of the values of d and f. The limit as d and dref go to zero aren't well defined and depends on the direction of approach. So I took the lazy way and set the value to be always be 0. index.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) commit b77740ec5c2bc5b8c128603a0e22454486cec4cf Author: Tobie Langel <tobie@codespeaks.com> Date: Wed Feb 15 15:52:20 2017 +0100 Meta: add support for PR preview. .pr-preview.json | 4 ++++ 1 file changed, 4 insertions(+) commit 3ee9b01bc2180b82ec6c02a322e2936f26110b1e Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Feb 9 11:31:20 2017 -0800 Added new diagram and OmniGraffle file images/audioProcessorInstantiation.graffle | Bin 4348 -> 0 bytes images/audioProcessorInstantiation.png | Bin 120739 -> 0 bytes images/audioworklet-instantiation-sequence.png | Bin 0 -> 55569 bytes images/audioworklet.graffle | Bin 3114 -> 6615 bytes index.html | 3 ++- 5 files changed, 2 insertions(+), 1 deletion(-) commit bb952b650486a74da559ae9725853061e0bae7a7 Author: Paul Adenot <paul@paul.cx> Date: Thu Feb 9 17:16:06 2017 +0100 Prevent using the tidy from Apple, it's from 2006 and does not understand HTML5 Makefile | 7 +++++++ 1 file changed, 7 insertions(+) commit d57d467caf221b8f05365f749ff17da6b1b0765b Author: Christopher Alcock <christopher.alcock@gmail.com> Date: Wed Jan 25 13:48:14 2017 +0000 removed a line of space seemed unnecessary style.css | 1 - 1 file changed, 1 deletion(-) commit 6faae4060862ad8d609164eaebc29d80b53c2567 Author: joeberkovitz <joe@noteflight.com> Date: Thu Jan 19 17:08:54 2017 -0500 Clarify language around resuming closed AudioContexts. Also clean up fuzzy assumptions about the AudioContext class being the subject of the section in question (it applies to offline contexts to some extent). index.html | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) commit b881214298bf37d65982faf52bab1f0d4b1d9b4d Merge: 2e6900e e0ad4e3 Author: Joe Berkovitz <joe@noteflight.com> Date: Thu Jan 19 16:20:33 2017 -0500 Merge pull request #1140 from WebAudio/1050-mono-4chan-diagram Add diagram describing mono-input-to-matrixed-stereo case. commit e0ad4e3f48bf6d2887d42bfe29bba3268a676561 Author: joeberkovitz <joe@noteflight.com> Date: Thu Jan 19 12:33:46 2017 -0500 fix image size and reference in spec images/convolver-diagram.png | Bin 769600 -> 109920 bytes index.html | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) commit bf9e30f4f8208bb26542bd040b478a91a7f9d872 Author: joeberkovitz <joe@noteflight.com> Date: Thu Jan 19 10:18:40 2017 -0500 Add diagram describing mono-input-to-matrixed-stereo case. images/convolver-diagram.graffle | Bin 3327 -> 3686 bytes images/convolver-diagram.png | Bin 0 -> 769600 bytes images/convolver-diagram.svg | 3 --- 3 files changed, 3 deletions(-) commit 2e6900ee8ff9c5a82aef0b2dbaf2fb79e8e7538c Merge: 414edac 3cda195 Author: Paul Adenot <paul@paul.cx> Date: Wed Jan 11 13:52:31 2017 +0100 Merge pull request #1128 from padenot/1126-audioparam-connect-throw Prevent connecting an AudioNode to an AudioParam of a different AudioContext commit 414edac2f3c4e3626eb73e37c5f4b2a2122c3557 Merge: d0a0c82 1f337c0 Author: Paul Adenot <paul@paul.cx> Date: Wed Jan 11 13:51:57 2017 +0100 Merge pull request #1137 from rtoy/1129-analyser-attr-are-double Fix #1129: AnalyserNode attribute inconsistencies commit d0a0c8218119a395ba80b5e8e6dd8036ff641ebc Merge: b9c5512 6c9f11f Author: rtoy <toy.raymond@gmail.com> Date: Tue Jan 10 13:03:05 2017 -0800 Merge pull request #1107 from rtoy/1097-baselatency-in-audiocontext-take2 Fix #1097: Move AudioContextLatencyCategory and baseLatency to AudioC… commit 1f337c0e96556257deec20432611197fd7230782 Merge: 0824bb3 b9c5512 Author: Raymond Toy <toy.raymond@gmail.com> Date: Tue Jan 10 10:14:31 2017 -0800 Merge branch 'gh-pages' into 1129-analyser-attr-are-double commit 0824bb3e5a8cc533288e05fa9f58f7540f9d511e Author: Raymond Toy <toy.raymond@gmail.com> Date: Tue Jan 10 10:12:28 2017 -0800 Fix #1129: AnalyserNode attribute inconsistencies Make the attributes for the AnalyserNode be double instead of float. Implementations actually use double for these attributes so align the spec with the implementations. index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) commit b9c5512347f661dd59c3c93b68b46b06a71e675a Merge: 2fbc812 680d529 Author: Paul Adenot <paul@paul.cx> Date: Tue Jan 10 16:59:42 2017 +0100 Merge pull request #1136 from WebAudio/1134-linkify-types-ctor Linkify the types in constructors commit 680d52972db74be76939e29b132fcca65dbd7681 Author: Paul Adenot <paul@paul.cx> Date: Tue Jan 10 11:33:28 2017 +0100 Tweak tidyconf.txt so that we can put HTML in attributes. tidyconf.txt | 1 + 1 file changed, 1 insertion(+) commit 29fd6510302403c7f1fe1969428df79ad9995326 Author: Paul Adenot <paul@paul.cx> Date: Tue Jan 10 11:28:52 2017 +0100 Link types in constructors This fixes #1134. index.html | 50 +++++++++++++++++++++++++------------------------- 1 file changed, 25 insertions(+), 25 deletions(-) commit 3cda1959e871eb8ee71922cd4ebb3713a2f52cb3 Author: Paul Adenot <paul@paul.cx> Date: Wed Dec 21 14:06:06 2016 +0100 Prevent connecting an AudioNode to an AudioParam of a different BaseAudioContext. This fixes #1126. index.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) commit 2fbc812ea0a302f2bc5d18f1767bbf0644097324 Merge: c7d557a 455b0a0 Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Thu Jan 5 13:26:31 2017 -0800 Merge pull request #1133 from hoch/1132-remove-void-function Removed voidFunction definition commit 455b0a06c6114a300de9212aed9ae4d65c284c4f Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Jan 5 10:17:01 2017 -0800 removed voidfunction definition index.html | 1 - 1 file changed, 1 deletion(-) commit c7d557a1d2cbb8ddba58e1fca6c1d6a5ee050d1a Merge: 5995e76 044b57f Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Wed Jan 4 14:32:58 2017 -0800 Merge pull request #1102 from hoch/990-maplike-senddata AudioWorklet: `maplike` and sendData/ondata commit 5995e76da815be56dbe47f7adaf3b73a488cdd03 Merge: d21f20e f1be60c Author: rtoy <toy.raymond@gmail.com> Date: Wed Jan 4 13:40:33 2017 -0800 Merge pull request #1131 from mark-buer/patch-1 Fix tranform typo commit f1be60c1b1365e261f933e2356e1377b71ce77ca Author: Mark Buer <mark.buer+github@gmail.com> Date: Thu Jan 5 07:31:33 2017 +1030 fix-tranform-typo index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit d21f20eb1e14cbf643bb3b288c5669ac911c8080 Merge: 8abc9f5 4a7176d Author: Joe Berkovitz <joe@noteflight.com> Date: Wed Jan 4 11:48:33 2017 -0500 Merge pull request #1020 from WebAudio/966-clarify-awgs-relationships Clarify relationships between AudioWorkletGlobalScope and AudioContext. commit 4a7176d8242570c6e1d229a3b5488350698f9dcd Author: joeberkovitz <joe@noteflight.com> Date: Wed Jan 4 10:20:42 2017 -0500 Tidy index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 8abc9f57e3d294b75d7b1deab9048855ad079822 Merge: 01b7bee 828ea49 Author: Joe Berkovitz <joe@noteflight.com> Date: Wed Jan 4 10:19:18 2017 -0500 Merge pull request #1130 from WebAudio/370-audio-buff-no-ctx Remove unnecessary AudioContext arg from AudioBuffer constructor. commit 044b57fb19dd0ffca2a204f28b505fe89c9e4f9c Author: Hongchan Choi <hongchan@chromium.org> Date: Tue Jan 3 15:23:05 2017 -0800 Addressing feedback index.html | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) commit 828ea49a37835da4bb169dcac9b1d1da66be12e6 Author: joeberkovitz <joe@noteflight.com> Date: Tue Jan 3 12:55:46 2017 -0500 Make sampleRate a required AudioBufferOptions member. index.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) commit 9848d70384d087ad0a3c6a41a95e85d1ceb118c1 Author: joeberkovitz <joe@noteflight.com> Date: Tue Jan 3 12:50:58 2017 -0500 Remove unnecessary AudioContext arg from AudioBuffer constructor. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 4193252ee4fded3e784b108a81694e9276e6fef6 Author: joeberkovitz <joe@noteflight.com> Date: Tue Jan 3 11:26:38 2017 -0500 Respond to @hoch's review comments. index.html | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) commit 8e2487bea424427a3ffa25fd7cf17dc0d54d35f0 Merge: aeb7e31 01b7bee Author: joeberkovitz <joe@noteflight.com> Date: Tue Jan 3 11:19:56 2017 -0500 Merge branch 'gh-pages' into 966-clarify-awgs-relationships commit 01b7bee4893307064917b6a155d5ce07414c0c9d Merge: b95f00d 5ae4d45 Author: rtoy <toy.raymond@gmail.com> Date: Tue Dec 20 07:06:59 2016 -0800 Merge pull request #1125 from padenot/1121-createMediaStreamTrackSource-rv Fix typo, createMediaStreamTrackSource returns a MediaStreamTrackAudioSourceNode and not a MediaStreamAudioSourceNode Fixes #1121 commit b95f00df0f77bbdd966f863422d969a368599295 Merge: 93b9ab3 8caecdf Author: rtoy <toy.raymond@gmail.com> Date: Tue Dec 20 07:05:49 2016 -0800 Merge pull request #1124 from padenot/1122-createDelay-opt-arg Restore maxDelayTime default value removed by mistake in 3554a8. Fixes #1122 commit 5ae4d45671012cb7ab2c690ea221edb0e7dc90c0 Author: Paul Adenot <paul@paul.cx> Date: Tue Dec 20 11:48:54 2016 +0100 Fix typo, createMediaStreamTrackSource returns a MediaStreamTrackAudioSourceNode and not a MediaStreamAudioSourceNode. This fixes #1121. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 8caecdf425e5ae00091f61c1ad575d207a86b472 Author: Paul Adenot <paul@paul.cx> Date: Tue Dec 20 11:43:18 2016 +0100 Restore maxDelayTime default value removed by mistake in 3554a8. This fixes #1122. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 93b9ab32a959c711a3cac99df6a5f516e976ef3f Merge: cf847a8 2820fa2 Author: rtoy <toy.raymond@gmail.com> Date: Mon Dec 19 10:22:54 2016 -0800 Merge pull request #1119 from rtoy/1118-add-missing-space Fix #1118: Add missing space between words commit 2820fa221d128ea1be6d34af0f847f07ae618592 Author: Raymond Toy <toy.raymond@gmail.com> Date: Mon Dec 19 10:20:58 2016 -0800 Fix #1118: Add missing space between words index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit cf847a81f26d57b35a9b686e2b2bfefbd73a6aa2 Author: Chris Lilley <chris@w3.org> Date: Wed Dec 14 17:03:19 2016 -0500 Update webaudio-CR-transition.md webaudio-CR-transition.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 65ca36d3cca533f2bdd104757d6d7be059f2b82a Author: Chris Lilley <chris@w3.org> Date: Wed Dec 14 17:02:34 2016 -0500 Update webaudio-CR-transition.md webaudio-CR-transition.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 8d0233d934dd0732589108e2a75667cdc650dc8f Author: Chris Lilley <chris@w3.org> Date: Wed Dec 14 17:01:32 2016 -0500 Update webaudio-CR-transition.md haha copy paste error webaudio-CR-transition.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 94874e876990a74ccd754fb8bc602a6361e527b3 Author: Chris Lilley <chris@w3.org> Date: Wed Dec 14 16:59:05 2016 -0500 Update webaudio-CR-transition.md more on requirements. webaudio-CR-transition.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit bd203587b786d78bc94583b40dff884aacd3a75b Author: Chris Lilley <chris@w3.org> Date: Wed Dec 14 15:53:29 2016 -0500 Update webaudio-CR-transition.md webaudio-CR-transition.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit 8b95994f16995477940b5a9c5f1211e101e47bca Author: Chris Lilley <chris@w3.org> Date: Wed Dec 14 15:51:57 2016 -0500 Update webaudio-CR-transition.md better link to non-V1 features webaudio-CR-transition.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) commit 8ecd5da9dded116cd8b92bc86e4b25e95f3ac099 Author: Chris Lilley <chris@w3.org> Date: Wed Dec 14 15:46:34 2016 -0500 Create webaudio-CR-transition.md first draft webaudio-CR-transition.md | 156 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 156 insertions(+) commit 580318796ca6e00773daa6c9f2c4afe5362c9d23 Merge: ed8aec2 1b7d29a Author: rtoy <toy.raymond@gmail.com> Date: Wed Dec 14 11:31:29 2016 -0800 Merge pull request #1114 from rtoy/1110-absn-needs-parameter-name Fix #1110: AudioBufferSource constructor needs parameter name commit 1b7d29a9ea9456862d4d076acec631b7c61845b6 Author: Raymond Toy <toy.raymond@gmail.com> Date: Wed Dec 14 11:28:40 2016 -0800 Fix #1110: AudioBufferSource constructor needs parameter name The definition of the constructor for an AudioBufferSourceNode was missing the parameter name for the AudioBufferSourceOptions argument. Add one. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit ed8aec2b7c2de145c0dde7169acd92c3d6d5c836 Merge: 46ab8b7 91c0f12 Author: rtoy <toy.raymond@gmail.com> Date: Wed Dec 14 11:21:46 2016 -0800 Merge pull request #1113 from rtoy/1111-use-correct-merger-args Fix #1111: Use correct type for ChannelMerger options arg commit 91c0f12a432c8be2da723ad50a2797d481335f4c Author: Raymond Toy <toy.raymond@gmail.com> Date: Wed Dec 14 11:07:41 2016 -0800 Fix #1111: Use correct type for ChannelMerger options arg The constructor for ChannelMergerNode used ChannelSplitterOptions as the type of the options arg. It should have been ChannelMergerOptions. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 46ab8b7d641992deb2ab3aa28fab76090b4b35ba Merge: fc20a59 8bb6830 Author: rtoy <toy.raymond@gmail.com> Date: Tue Dec 13 14:15:19 2016 -0800 Merge pull request #1090 from SebastianZimmer/Clarify-behaviour-of-AudioParam.cancelScheduledValues() Clarify behaviour of AudioParam.cancelScheduledValues() commit fc20a59ec8f4ad061a0c093a11b0e06125f13737 Author: Chris Lilley <chris@w3.org> Date: Tue Dec 13 15:31:19 2016 -0500 Update implementation-report.html worklet implementation status implementation-report.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit 6c9f11f39ae4095a86fcb79d11adeba27e82fe8d Author: Raymond Toy <toy.raymond@gmail.com> Date: Wed Dec 7 13:46:49 2016 -0800 Fix #1097: Move AudioContextLatencyCategory and baseLatency to AudioContext Move the definition of AudioContextLatencyCategory and baseLatency from BaseAudioContext to AudioContext because these really only make sense for an AudioContext. These don't apply to an OfflineAudioContext. Just moved the sections; no other changes. index.html | 86 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 43 insertions(+), 43 deletions(-) commit 15ea99ec19467074b74b3286ceb6826c32c21077 Merge: f956b11 eb526d1 Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Sun Dec 4 17:39:34 2016 -0800 Merge pull request #1096 from hoch/1060-baseaudiocontext Rearranging suspend() for AudioContext classes commit f956b1104be26d8ddd7d8d515d69e1725cfa4f5e Merge: 0896ca1 6c5ebbc Author: rtoy <toy.raymond@gmail.com> Date: Fri Dec 2 07:39:34 2016 -0800 Merge pull request #1101 from jdsmith3000/issue-442 Fix #442: Add playing reference to MediaElementAudioSourceNodes and MediaStreamAudioSourceNotes commit 8bb68308e8dbedf88ec50a174d263774f029241a Author: Sebastian Zimmer <sebastian.zimmer@uni-koeln.de> Date: Tue Nov 29 00:16:20 2016 +0100 Clarify behaviour of AudioParam.cancelScheduledValues() index.html | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) commit 6c5ebbca33048579a5ec28190ddd9d5c799d08f8 Author: jdsmith3000 <jdsmith@microsoft.com> Date: Thu Dec 1 14:22:52 2016 -0800 Remove spaces from ends of lines to confirm with tidy html check index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit a4bf075d8e5ee79e28ba75ad9dce8c0eeb42dc74 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Dec 1 14:06:33 2016 -0800 initial commit index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) commit 916c482d933bbaa62917a1ce2f2645a62cd23c39 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Dec 1 14:06:24 2016 -0800 initial commit index.html | 74 ++++++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 46 insertions(+), 28 deletions(-) commit 6d7f3191f1c068a8d2a96f5e64e2b1f00e3fa24d Author: jdsmith3000 <jdsmith@microsoft.com> Date: Thu Dec 1 10:10:16 2016 -0800 Fix #442: Add playing reference to MediaElementAudioSourceNodes and MediaStreamAudioSourceNotes index.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) commit eb526d1fba81df1b2f6be79e3acec947aa2c18c6 Merge: 3d0803f 0896ca1 Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Nov 30 09:32:46 2016 -0800 Merge remote-tracking branch 'upstream/gh-pages' into 1060-baseaudiocontext commit 0896ca17ea468a680e99aa04ed3fc12832cc4022 Merge: 68eabd9 c7dc816 Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Mon Nov 28 14:13:25 2016 -0800 Merge pull request #1087 from hoch/955-vumeternode-example Fixing disconnected input checking commit 68eabd9aaf27f79ac2a90209fd8c37a333945995 Merge: e087928 f7a964e Author: rtoy <toy.raymond@gmail.com> Date: Mon Nov 28 11:24:08 2016 -0800 Merge pull request #1088 from rtoy/1082-fix-audionode-context-attr Fix #1082: AudioNode context is a BaseAudioContext commit aeb7e310f6e36f90f93560e98ea055395524d6c6 Author: joeberkovitz <joe@noteflight.com> Date: Mon Nov 21 15:07:12 2016 -0500 Respond to Hongchan's review comments. index.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) commit 040a4e17d0f7df355751c91c5e98cb86ed58945f Merge: f73101f e087928 Author: joeberkovitz <joe@noteflight.com> Date: Mon Nov 21 13:16:07 2016 -0500 Merge branch 'gh-pages' into 966-clarify-awgs-relationships commit f7a964e10bf7fbcc9e854f8b526d2bc69b2f4214 Author: Raymond Toy <rtoy@chromium.org> Date: Fri Nov 18 09:55:51 2016 -0800 Fix #1082: AudioNode context is a BaseAudioContext Fix typo. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit c7dc816404ea86f9d81f9485f46c880a041d5209 Author: Hongchan Choi <hongchan@chromium.org> Date: Fri Nov 18 09:24:10 2016 -0800 Fixing disconnected input checking index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit e08792836f96612013ddc7c839c141d28c28a36f Merge: 5092ac1 8a04bf8 Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Thu Nov 17 15:14:00 2016 -0800 Merge pull request #1078 from hoch/955-vumeternode-example Fix #955: Refining AudioWorklet examples. At the teleconference on 11/17/2016, @joeberkovitz agreed to the change proposed in the last [PR](8a04bf8). commit 5092ac1f09fdbdfb2db6f1c74bd77cac64582b78 Merge: 99ec493 ea2cfed Author: rtoy <toy.raymond@gmail.com> Date: Thu Nov 17 10:36:38 2016 -0800 Merge pull request #1085 from rtoy/1083-use-range-error Fix #1083: Use RangeError instead of TypeError For the PannerNode maxDistance and refDistance, use RangeError instead of TypeError on attempts to set them to invalid values. This is a minor update to #611. commit ea2cfed80803071c9d05049a65b71c4c9e1927ea Author: Raymond Toy <toy.raymond@gmail.com> Date: Thu Nov 17 10:33:48 2016 -0800 Run tidy index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit b65aca5406c4f7a825bbc127304d33c50102e736 Author: Raymond Toy <toy.raymond@gmail.com> Date: Thu Nov 17 10:30:52 2016 -0800 Fix #1083: Use RangeError instead of TypeError For the PannerNode maxDistance and refDistance, use RangeError instead of TypeError on attempts to set them to invalid values. This is a minor update to #611. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 99ec493311646b756d23bca745411ecd13855b3d Merge: 6b5340c 25f902b Author: rtoy <toy.raymond@gmail.com> Date: Thu Nov 17 08:28:46 2016 -0800 Merge pull request #1025 from WebAudio/1000-maxChannelCount Make `maxChannelCount` always be the number of output channels, and error out when setting `channelCount` with an invalid value. commit 6b5340c649a531826f72ec55a0a7c6eaf8d497ed Author: Raymond Toy <toy.raymond@gmail.com> Date: Mon Nov 14 16:19:11 2016 -0800 Make tidy index.html | 162 ++++++++++++++++++++++++++++++------------------------------- 1 file changed, 81 insertions(+), 81 deletions(-) commit b8e86f774940979da03e4c2c4763947cd1d9d1a2 Author: Raymond Toy <toy.raymond@gmail.com> Date: Mon Nov 14 16:18:36 2016 -0800 Fix #1073: Move AudioProcessingEvent section into ScriptProcessorNode Move the section for AudioProcessingEvent into the ScriptProcessorNode section since the AudioProcessingEvent is for ScriptProcessorNode. This makes this section match the style for OfflineAudioCompletionEvent and OfflineAudioContext. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 25f902ba0f33a18645369a8bd53aa8c5d96ca220 Author: Paul Adenot <paul@paul.cx> Date: Thu Nov 17 14:14:12 2016 +0100 Simplify the prose, always allowing setting channelCount in [1, maxChannelCount]. index.html | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) commit a2f29a5d9e758bdde0062672ebdcf0d882f7e261 Author: Paul Adenot <paul@paul.cx> Date: Wed Oct 5 17:51:32 2016 +0200 Thrown an exception when attempting to change the channel count on an implementation that does not support it. index.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit a8d1c0fc64e1487b30650ccfbd67ec474396d4bc Author: Paul Adenot <paul@paul.cx> Date: Wed Oct 5 17:47:37 2016 +0200 Don't set `maxChannelCount' to zero if it's not changeable. This fixes #1000. index.html | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) commit 95b96d377902a460e457c270f391379817c41c88 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Nov 8 09:28:54 2016 -0800 Fix #611: Clamp maxDistance and refDistance For the linear distance model, make d'max = max(dref, dmax) and d'ref = min(dref,dmax). And specify the value of the model is 1-f if d'ref=d'max. This makes the model well-defined for all values of dref and dmax. Note that this change allows a user to set dref > dmax, but the behavior is well-defined in this case (by reversing the order). Not sure if we want that or not. Also, specify that setting refDistance and maxDistance to a non-positive value throws a TypeError. index.html | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) commit e15c95372b1ec10fe79d6af17e47ddfb08bdf89c Author: Paul Adenot <paul@paul.cx> Date: Tue Oct 4 17:48:29 2016 +0200 Rename the factory method for MediaStreamTrackAudioSourceNode. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 59734de1310d623e02c0f818b7e24d1266036d5a Author: Paul Adenot <paul@paul.cx> Date: Mon Sep 19 17:31:30 2016 +0100 Introduce MediaStreamTrackAudioSourceNode. index.html | 77 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 71 insertions(+), 6 deletions(-) commit 63dd7c31b8e18f42e0291e8ee145f15d688c3a13 Author: Paul Adenot <paul@paul.cx> Date: Mon Sep 19 17:19:42 2016 +0100 Spec which track to use when using MediaStreamAudioSourceNode. index.html | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) commit 8a04bf8d14a441c114ee3f076cbe025779851d4e Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Nov 16 13:35:37 2016 -0800 Addressing feedback from @joeberkovitz: inputs[0][0].length > 0 index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit bf20a9d464eec69eec6f2ee95f86abc9ff8747d6 Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Nov 16 13:24:49 2016 -0800 Addressing feedback from @joeberkovitz: inputs[0].length > 0 index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit a8b4c0fa8f153d7837ef3521423d015a94188121 Merge: f393136 76aba9a Author: rtoy <toy.raymond@gmail.com> Date: Wed Nov 16 13:24:34 2016 -0800 Merge pull request #1069 from rtoy/1068-constant-source-behavior Fix #1068: ConstantSourceNode output behavior commit f393136db3bcd7ffc12cdc18692eb628a295b66b Merge: 28e160e d3b78ff Author: rtoy <toy.raymond@gmail.com> Date: Wed Nov 16 13:24:06 2016 -0800 Merge pull request #1072 from rtoy/1047-simplify-audionode-dict-section Fix #1047: Simplify AudioNode dictionary section commit 28e160e771683c92c94e0c7c8dfa7c5758db8a1f Merge: aa42ba2 49474b8 Author: rtoy <toy.raymond@gmail.com> Date: Wed Nov 16 13:24:02 2016 -0800 Merge pull request #1071 from rtoy/1070-absn-start-args-optional Fix #1070: ABSN.start arguments should all be optional commit ed448a7c04f0282072267a2e166f7b4289e6d232 Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Nov 16 13:08:58 2016 -0800 Addressing feedback from @joeberkovitz: registerProcessor() index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 5d68874c507bd618069464455fd792918d9821de Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Nov 16 13:07:46 2016 -0800 Addressing feedback from @joeberkovitz index.html | 42 +++++++++++++++++++++++------------------- 1 file changed, 23 insertions(+), 19 deletions(-) commit 1fc05e66e8dca1d78c2a92644204c58a8f1a6a35 Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Nov 16 11:41:59 2016 -0800 Applying Tidy index.html | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) commit 25decaa06268c070f77f9db29f9b0b081d5cdff5 Merge: 4323e02 aa42ba2 Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Nov 16 11:38:54 2016 -0800 Fixed conflicts commit aa42ba229051c2ddd75c8c1fd878a29c3f185972 Merge: 1562104 4198802 Author: Joe Berkovitz <joe@noteflight.com> Date: Wed Nov 16 13:34:23 2016 -0500 Merge pull request #959 from WebAudio/475-dynamic-audioworklet-lifetime Dynamic audioworklet lifetime commit 4323e02792e8215bf301a4ce0f984e36a65d8370 Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Nov 16 10:11:05 2016 -0800 Addresing feedback from @rtoy: typo index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 15621047c0fdcfa383a5f8abfc756c8fa748c105 Merge: a75004a 33b3a2e Author: rtoy <toy.raymond@gmail.com> Date: Wed Nov 16 09:51:27 2016 -0800 Merge pull request #1077 from hoch/984-audioworkletnodeoptions Fix #984: Patching AudioWorkletNodeOptions commit 33b3a2e64508bad2ada5f21885f59d4acf235da3 Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Nov 16 09:48:01 2016 -0800 Addressing feedback from @rtoy index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) commit 1d708986e12d0df91d9a08dc24f1b60fc8c02a4a Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Nov 16 09:43:15 2016 -0800 Applying Tidy index.html | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) commit 6aa0de1e6535741ce834171a26b7f00708079199 Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Nov 16 09:41:35 2016 -0800 Fix #955: Refining AudioWorklet examples index.html | 140 ++++++++++++++++++++++++++++--------------------------------- 1 file changed, 64 insertions(+), 76 deletions(-) commit 4198802871b07332a0db8f90793cf55f693e6bdf Author: joeberkovitz <joe@noteflight.com> Date: Wed Nov 16 12:41:07 2016 -0500 Clarify effect of silent rendering when process() is not invoked. index.html | 6 ++++++ 1 file changed, 6 insertions(+) commit d8380a67bb2ca88804eb672f037fb54b456cd680 Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Nov 16 08:52:40 2016 -0800 Applying Tidy index.html | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) commit 630b2b09e7fb0c3cfdd659e6161ab5ad5d3d5d40 Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Nov 16 08:47:33 2016 -0800 Fix #984: Patching AudioWorkletNodeOptions index.html | 28 ++++------------------------ 1 file changed, 4 insertions(+), 24 deletions(-) commit 1fb9f588852b0d943a673fce8130619bfdf92130 Author: joeberkovitz <joe@noteflight.com> Date: Wed Nov 16 11:43:02 2016 -0500 Make editorial changes from rtoy review. index.html | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) commit c05e8e46258afff0e0e367f9ec6eb05467492001 Author: joeberkovitz <joe@noteflight.com> Date: Tue Nov 15 14:22:15 2016 -0500 Clarify common node behavior cases supported by active source lifetime policy. index.html | 44 ++++++++++++++++++++++++++++++++++---------- 1 file changed, 34 insertions(+), 10 deletions(-) commit 0b6b070634d1d5b5d9403bddb74b9174283bf235 Merge: 74f8f60 a75004a Author: joeberkovitz <joe@noteflight.com> Date: Tue Nov 15 12:38:23 2016 -0500 Merge branch 'gh-pages' into 475-dynamic-audioworklet-lifetime commit a75004aceb1eb489332b9671272ab61180fcb998 Merge: a9f028f ed5a4a7 Author: rtoy <toy.raymond@gmail.com> Date: Mon Nov 14 16:06:33 2016 -0800 Merge pull request #1074 from rtoy/1067-event-constructor-args Fix #1067: Add arguments to event constructors commit ed5a4a77673a68a5c1f1dd9a6a477d5c05ded2cc Author: Raymond Toy <toy.raymond@gmail.com> Date: Mon Nov 14 08:47:53 2016 -0800 Fix #1067: Add arguments to event constructors To be useful, the event constructors needs arguments. Add them and also define the needed dictionaries. index.html | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 53 insertions(+), 4 deletions(-) commit d3b78ff195b431a9f2294b1abe13514b63c3935a Author: Raymond Toy <toy.raymond@gmail.com> Date: Fri Nov 11 10:40:46 2016 -0800 Fix #1047: Simplify AudioNode dictionary section Basically rename the section from "Dictionaries" to "AudioNodeOptions" to match how other nodes handle their dictionaries. Also add a bit of text saying the members are optional, and that the specific default values depend on the actual node. index.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) commit 49474b84f8f670d7a41237280067171850f9846a Author: Raymond Toy <toy.raymond@gmail.com> Date: Fri Nov 11 10:26:36 2016 -0800 Fix #1070: ABSN.start arguments should all be optional Previously, not all arguments were optional so ABSN.start() would throw an error that not enough arguments were passed. This is incorrect; we want ABSN.start() to start, as it used to before AudioScheduledSourceNode was added. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 76aba9ae72b9a38abbde5bed10262b93c2ba441e Author: Raymond Toy <rtoy@chromium.org> Date: Fri Nov 11 08:47:35 2016 -0800 Fix #1068: ConstantSourceNode output behavior Specify that all source nodes produce silence before the node has started and produces silence after the node has stopped. index.html | 8 ++++++++ 1 file changed, 8 insertions(+) commit a9f028fa229e2babb72bf19e978440e24daeddc1 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Oct 18 14:10:03 2016 -0700 Fix #713: Specify clamping of automation times. Specify clamping of the automation time for all automation methods. Some were missed in #849. index.html | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) commit 49ab5458ebcad618f14ed48e948b1686925e9cd9 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Nov 8 08:37:10 2016 -0800 Refer to render quantum State that getFloatFrequencyData and getByteFrequencyData return the sames values if the call happens in the same render quantum as a previous call. index.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) commit 35efc26cb68613cbd5579ccfceea681b7d58073f Author: Raymond Toy <rtoy@chromium.org> Date: Fri May 13 14:49:03 2016 -0700 Fix typo. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 3f094dc99fd1d1aaeb2b1f95fda34f7bb46e70c0 Author: Raymond Toy <rtoy@chromium.org> Date: Mon May 2 15:22:27 2016 -0700 Run tidy. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 4293378c9ff0ab466311910c1738e3777c1028b2 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Feb 25 14:19:15 2016 -0800 Specify how multiple calls to get{Float,Byte}FrequencyData works If a call to getFloatFrequencyData occurs in the same rendering quantum as a previous call, return the existing data. This is useful in getting consistent data if getByteFrequencyData and getFloatFrequencyData are called in the same rendering quantum. Fix #729 index.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) commit 02415430fa96c70c90a7c90996abe618536b3ce1 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Nov 3 14:34:43 2016 -0700 Fix #1062: Specify correct values for channel count and mode for Convolver Specify that channelCount = 2 and channelCountMode = "explicit" and that they cannot be changed. index.html | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) commit 04f2ebc660d4bbb4984838bc406e75c99d7ba567 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Nov 3 14:23:26 2016 -0700 Fix #1049: DynamicsCompressor AudioParams are k-rate Mark all AudioParams as being k-rate. index.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) commit 3d0803f5f5d6a918b4856e812b53071d955c42ee Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Nov 9 15:32:39 2016 -0800 initial commit index.html | 252 ++++++++++++++++++++++++++++--------------------------------- 1 file changed, 116 insertions(+), 136 deletions(-) commit 785f0d8707dab55a4e6377f540a49e93071cca76 Merge: 83f1573 8799c08 Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Wed Nov 9 14:31:40 2016 -0800 Merge pull request #1066 from hoch/969-audiocontextinfo-fix Fixing "playbackTime" to "currentTime" and the definition of "sampleRate". commit 8799c08fae45dc9509e4d43efa0883149c7ba1cc Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Nov 9 14:02:04 2016 -0800 initial commit index.html | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) commit 83f1573345b1dc6bbb61a593ac85b6cbf1363381 Merge: 819e249 d9173f0 Author: rtoy <toy.raymond@gmail.com> Date: Wed Nov 9 10:12:37 2016 -0800 Merge pull request #1017 from rtoy/960-add-audio-source-node-class Fix #960: Add AudioScheduledSourceNode base class for source nodes commit 819e249b96ef9f9d6991e913182fee57404eab4c Merge: 87c6767 a3e5a49 Author: Joe Berkovitz <joe@noteflight.com> Date: Thu Nov 3 18:07:45 2016 -0400 Merge pull request #1057 from WebAudio/566-event-constructors Add constructors for event classes commit 87c6767f7aa53dbb92ba9c6f903d43c2c0ef105f Merge: 28b1d52 56d8b86 Author: Joe Berkovitz <joe@noteflight.com> Date: Tue Nov 1 16:42:34 2016 -0400 Merge pull request #1055 from WebAudio/667-null-convolver-buffer Propagate settable-once behavior of ABSN.buffer to Convolver, WaveShaper commit 28b1d52100e8c02e726a9a73e12026ca3b865205 Merge: bf26117 0d5dee1 Author: Joe Berkovitz <joe@noteflight.com> Date: Tue Nov 1 16:41:20 2016 -0400 Merge pull request #1058 from WebAudio/469-intrinsic-latency Note the existence of audio processing latency. commit d9173f0329465233915164c0a2a4161e66dca8ee Author: Raymond Toy <rtoy@chromium.org> Date: Tue Nov 1 10:07:08 2016 -0700 Add AudioScheduledSourceNode index.html | 307 ++++++++++++++++++++++--------------------------------------- 1 file changed, 112 insertions(+), 195 deletions(-) commit 8a8d4d71116949f73a1510635e6c2667caf997fd Merge: 7127660 bf26117 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Nov 1 09:47:00 2016 -0700 Merge branch 'gh-pages' into 960-add-audio-source-node-class commit 0d5dee1129d9ea33093e8ad35480e9ef13c5ad43 Author: joeberkovitz <joe@noteflight.com> Date: Fri Oct 28 15:41:54 2016 -0400 Note the existence of audio processing latency. DelayNode and WaveShaperNode with oversampling are covered. index.html | 10 ++++++++++ 1 file changed, 10 insertions(+) commit a3e5a49beff9787bacae7d7bc7fdf2c4f39162d0 Author: joeberkovitz <joe@noteflight.com> Date: Fri Oct 28 15:30:20 2016 -0400 Add constructors for event classes index.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) commit 74f8f60aa827f5c48dd360d1c2ee0e9cffd0d43e Author: joeberkovitz <joe@noteflight.com> Date: Thu Oct 27 17:46:19 2016 -0400 Revise to reflect new "active source" flag for AWN. index.html | 45 ++++++++++++++++++++++++++++++++------------- 1 file changed, 32 insertions(+), 13 deletions(-) commit bf26117e0a7a62223ba335bba2a46f7d98c2a04a Merge: 8279126 127086b Author: Joe Berkovitz <joe@noteflight.com> Date: Thu Oct 27 08:22:04 2016 -0400 Merge pull request #1056 from WebAudio/944-clarify-connection-lifetime Clarify meaning of connection lifetime. commit 8279126704c84c383d38f00b4528a1c74bb6dc3b Merge: 6ccf61a f24afd2 Author: Joe Berkovitz <joe@noteflight.com> Date: Wed Oct 26 17:32:46 2016 -0400 Merge pull request #1054 from WebAudio/573-automation-interaction Apply changes and clarifications regarding event scheduling and interaction. commit f73101f335460a81594fc2b78abc9752d08de0b5 Author: joeberkovitz <joe@noteflight.com> Date: Wed Oct 26 17:31:32 2016 -0400 fix typo index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 127086b5cc8b39764f3a9c68e9d1cabc4ddc9079 Author: joeberkovitz <joe@noteflight.com> Date: Wed Oct 26 17:22:34 2016 -0400 Add explicit clarification re: AudioParams not causing a connection reference. index.html | 2 ++ 1 file changed, 2 insertions(+) commit ce9c2fbf77701cedbbb19df8babd3d35eb204806 Author: joeberkovitz <joe@noteflight.com> Date: Wed Oct 26 17:19:44 2016 -0400 Remove reference to AudioParam connectedness. index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) commit bc74ce8e8fb15c81126abce0079dfc7f9b18ba5d Author: joeberkovitz <joe@noteflight.com> Date: Wed Oct 26 15:12:51 2016 -0400 Clarify meaning of connection lifetime. index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 56d8b86ffefee95c518d240a9537a30823efae3c Author: joeberkovitz <joe@noteflight.com> Date: Wed Oct 26 15:01:24 2016 -0400 Propagate settable-once behavior of ABSN.buffer to ConvolverNode.buffer and WaveShaperNode.curve. index.html | 50 ++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 48 insertions(+), 2 deletions(-) commit f24afd21973bde3cafc3b9edd621eb767379aecb Author: joeberkovitz <joe@noteflight.com> Date: Wed Oct 26 14:36:00 2016 -0400 Apply changes and clarifications regarding event scheduling and interaction. index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) commit 9efa73f22e98492fbc94a75b57a84aab8f261e89 Author: joeberkovitz <joe@noteflight.com> Date: Wed Oct 26 14:16:12 2016 -0400 Update with simpler model for ending the life of AudioWorkletNodes. index.html | 40 +++++++++++++--------------------------- 1 file changed, 13 insertions(+), 27 deletions(-) commit 64b7681065b699ff56c9282dbac2f3b827ad1a62 Merge: cb6d087 6ccf61a Author: joeberkovitz <joe@noteflight.com> Date: Wed Oct 26 13:37:28 2016 -0400 Merge branch 'gh-pages' into 475-dynamic-audioworklet-lifetime Conflicts: index.html commit 6ccf61a0f3f0b59c5da47b7d5e11588620769726 Merge: b4ed70d cb384d1 Author: rtoy <toy.raymond@gmail.com> Date: Thu Oct 20 14:48:34 2016 -0700 Merge pull request #1053 from rtoy/1052-add-panner-back-to-overview Fix #1052: Add PannerNode and AudioListener back to API Overview commit cb384d1b89f99e117a10b8a72953b44807e332b5 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Oct 20 14:46:10 2016 -0700 Run tidy. index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 80300f6cca5e740a02df90b97dddbd416bd87e76 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Oct 20 14:44:31 2016 -0700 Fix #1052: Add PannerNode and AudioListener back to API Overview The PannerNode and AudioListener interfaces were accidentally deleted in #749. Put these entries back in sorted alphabetically. index.html | 7 +++++++ 1 file changed, 7 insertions(+) commit b4ed70d85f47cb92e0a602e4995b7074243e7fc5 Author: Chris Lilley <nantonos@epona.net> Date: Wed Oct 12 13:52:44 2016 -0400 Update implementation-report.html implementation-report.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 6fe7796255059e304ff238e50c89f67db8a46f41 Author: Chris Lilley <nantonos@epona.net> Date: Wed Oct 12 13:51:51 2016 -0400 update moz test link implementation-report.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 4fb3897825ae60c8375e7fbc39dd91e68bc6b683 Merge: 9fb6746 b1acb7b Author: rtoy <toy.raymond@gmail.com> Date: Mon Oct 10 09:28:06 2016 -0700 Merge pull request #1046 from rtoy/1039-spell-synchronous-correctly Fix #1039: spell synchronous correctly commit b1acb7b0014a7f30027ec31b7793be971455f04a Merge: 21bf788 9fb6746 Author: Raymond Toy <rtoy@chromium.org> Date: Mon Oct 10 08:51:03 2016 -0700 Merge branch 'gh-pages' into 1039-spell-synchronous-correctly commit 9fb6746aed48e7682e6e5a6ffe7bfe4e738cef4e Merge: 9a22654 8301925 Author: rtoy <toy.raymond@gmail.com> Date: Mon Oct 10 08:46:56 2016 -0700 Merge pull request #1045 from rtoy/1042-add-periodicwave-to-api-overview Fix #1042: Add PeriodicWave to API Overview section commit 8301925691ead46b1158d075d62a28aecd4a0c69 Author: Raymond Toy <rtoy@chromium.org> Date: Mon Oct 10 08:44:31 2016 -0700 Fix #1042: Add PeriodicWave to API Overview section Also took the opportunity to fix a couple of typos, replace "A" with "An". index.html | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) commit 9a22654a39870552d4cccbc431a8487b99aa6a6e Author: Raymond Toy <rtoy@chromium.org> Date: Fri Oct 7 09:59:28 2016 -0700 Run tidy index.html | 143 +++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 78 insertions(+), 65 deletions(-) commit 39cb458b5518fcd457909f17a70b440d9d02ad9b Author: Raymond Toy <rtoy@chromium.org> Date: Fri Oct 7 09:58:58 2016 -0700 Manually add more markup Exception that occur at the beginning or end of line are missed by the scripts. Manually find them and add markup. index.html | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) commit d9ee47cdefbef8fc0ceff72931de97aa76576fc9 Author: Raymond Toy <rtoy@chromium.org> Date: Fri Oct 7 09:52:13 2016 -0700 Fix #1011: Add more markup missed in #1026 #1026 missed a few places and this PR fixes some of the using the following script. ``` PATTERN="\(IndexSizeError\|HierarchyRequestError\|WrongDocumentError\|InvalidCharacterError\|NoModificationAllowedError\|NotFoundError\|NotSupportedError\|InUseAttributeError\|InvalidStateError\|SyntaxError\|InvalidModificationError\|NamespaceError\|InvalidAccessError\|SecurityError\|NetworkError\|AbortError\|URLMismatchError\|QuotaExceededError\|TimeoutError\|InvalidNodeTypeError\|DataCloneError\|EncodingError\|NotReadableError\|UnknownError\|ConstraintError\|DataError\|TransactionInactiveError\|ReadOnlyError\|VersionError\|OperationError\|NotAllowedError\)" sed -i 's;'"$PATTERN"'\(</[^c]\);<code>\1</code>\2;g' index.html sed -i 's;\([^e]>\)'"$PATTERN"';\1<code>\2</code>;g' index.html ``` This still misses the cases where the exception type is at the beginning or end of a line. index.html | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) commit 0e688326d0d60c5b3f8a4d2b8c1df9a869ed8471 Author: Raymond Toy <rtoy@chromium.org> Date: Fri Oct 7 10:15:14 2016 -0700 Fix #989: Sort API overview list alphabetically The list of defined interfaces is sorted alphabetically, except that AudioContext and AudioNode are first. Everything after that is alphabetical. index.html | 102 ++++++++++++++++++++++++++++++------------------------------- 1 file changed, 51 insertions(+), 51 deletions(-) commit 21bf788e2334e4e7ee892353c24141dca7cb1387 Author: Raymond Toy <rtoy@chromium.org> Date: Fri Oct 7 10:03:48 2016 -0700 Fix #1039: spell synchronous correctly Many places say "syncrhonous" instead of 'synchronous". Fix them. index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) commit 21c371dbfdf35a1add160acc22c081bc07d21371 Merge: 6bed1fe a34b4e3 Author: rtoy <toy.raymond@gmail.com> Date: Fri Oct 7 09:05:31 2016 -0700 Merge pull request #1036 from rtoy/1030-channel-splitter-default-count Fix #1030: Define value for ChannelSplitterNode.channelCount commit a34b4e3a9f94cad211746738982c6c026331c489 Merge: a801807 6bed1fe Author: Raymond Toy <rtoy@chromium.org> Date: Fri Oct 7 08:59:27 2016 -0700 Merge branch 'gh-pages' into 1030-channel-splitter-default-count commit a801807941f0f6daa332589326837aa6091fc5c9 Author: Raymond Toy <rtoy@chromium.org> Date: Fri Oct 7 08:56:29 2016 -0700 Tidy index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) commit 6bed1fe0564db90707d652a33504626217b06fc9 Merge: fef5cbe ec42636 Author: rtoy <toy.raymond@gmail.com> Date: Fri Oct 7 08:29:13 2016 -0700 Merge pull request #1035 from alvov/small-typo-fix Small typo fix in `rolloffFactor` description commit fef5cbe9f5f18488329a561ea3867051b397a55b Author: chrisguttandin <chrisguttandin@media-codings.com> Date: Fri Oct 7 15:13:53 2016 +0200 reject a TypeError from decodeAudioData index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) commit ec42636652086d1702b8c961f6e45630a57ae98c Author: Artyom Lvov <alvov@avito.ru> Date: Fri Oct 7 13:39:08 2016 +0300 Tidy fixes index.html | 62 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) commit e48dcb040b1dc31e662ce3d32eaf5a544cb060ae Author: Raymond Toy <rtoy@chromium.org> Date: Thu Oct 6 15:25:24 2016 -0700 Fix #1030: Define value for ChannelSplitterNode.channelCount The text never said that channelCount should be set to be the same as the number of outputs. Make it so, and add a note that there are channelCount and channelCountMode constraints. index.html | 5 +++++ 1 file changed, 5 insertions(+) commit e7a233c4b3b5a09daf94754b20efacc7f5820ff7 Author: Artyom Lvov <alvov@avito.ru> Date: Thu Oct 6 21:46:50 2016 +0300 Change panningModel to distanceModel in rolloffFactor property description index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit e81fc6db30c3db3576a42db90d9ed71fd56e7325 Merge: a842cdf 0b2a646 Author: rtoy <toy.raymond@gmail.com> Date: Thu Oct 6 08:25:13 2016 -0700 Merge pull request #1034 from rtoy/1032-forwardZ-correction Fix #1032: forwardZ should be -1 commit 0b2a646c6848f358b71727af6d5aea7250f07123 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Oct 6 08:17:15 2016 -0700 Fix #1032: forwardZ should be -1 index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit a842cdf8633b6f3926797f6a09ae550b2b2eca23 Author: Chris Needham <chris.needham@bbc.co.uk> Date: Thu Oct 6 09:22:27 2016 +0100 Fixed markup index.html | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) commit 1a3f089f092f9bb129438dcc8a265fd4bb1d350b Author: Chris Needham <chris.needham@bbc.co.uk> Date: Fri Sep 30 14:44:31 2016 +0100 Corrected fftSize index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 1782cfcb8a274befa2cab7a6985b07edec991ca9 Author: Chris Needham <chris.needham@bbc.co.uk> Date: Fri Sep 30 14:39:00 2016 +0100 Corrected kHz index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit fe7685e1e9726158399c6f3187b97c0cfafc5a7d Author: Chris Needham <chris.needham@bbc.co.uk> Date: Thu Sep 29 13:58:32 2016 +0100 Minor wording and punctuation fixes index.html | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) commit 3f2c0fcd3c36ef6d85d9d86be54ab983b214a8ab Author: Paul Adenot <paul@paul.cx> Date: Wed Oct 5 19:04:40 2016 +0200 Fix typos index.html | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) commit 3b35f5da08ae51402969a6370a6164c2e47cf704 Author: Paul Adenot <paul@paul.cx> Date: Wed Oct 5 18:27:13 2016 +0200 Make the ChannelSplitterNode have constant channel* attributes. This fixes #975. index.html | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) commit 5b6acf18c3e58f290113fc78f8f6dc567eec61c6 Merge: ae68ee6 bf34073 Author: rtoy <toy.raymond@gmail.com> Date: Wed Oct 5 09:56:56 2016 -0700 Merge pull request #1026 from WebAudio/1011-exception-markup Add markup around exception name. Fixes #1011 commit ae68ee6ae15e150ca76d17cfaf3114b45ad3da86 Author: Paul Adenot <paul@paul.cx> Date: Wed Oct 5 18:32:10 2016 +0200 Add `alt` attribute in the new img tags. index.html | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) commit bf340735126b0c7a57c6b7716a9e1f4cf4417846 Author: Paul Adenot <paul@paul.cx> Date: Wed Oct 5 18:11:31 2016 +0200 Add markup around exception name. This fixes #1011. index.html | 106 ++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 56 insertions(+), 50 deletions(-) commit 3e31227243dfecd161f67f06c4f18fe03b434191 Merge: 224241c 5820ede Author: Paul Adenot <paul@paul.cx> Date: Wed Oct 5 11:06:15 2016 +0200 Merge pull request #964 from rtoy/344-cancel-scheduled-values-and-hold Fix #344: cancelScheduledValues and hold commit 224241c819d463310bb21c12921d0063f7872123 Author: Raymond Toy <rtoy@chromium.org> Date: Mon Oct 3 11:27:50 2016 -0700 Replace Helvetica Nueue font with Arial images/convolver-diagram.graffle | Bin 3304 -> 3327 bytes images/convolver-diagram.svg | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) commit 250cce62bc6ed14ffac2ef70114bed026bf4ca7c Author: Raymond Toy <rtoy@chromium.org> Date: Fri Sep 30 16:00:14 2016 -0700 Add new convolver diagram images/convolver-diagram.graffle | Bin 0 -> 3304 bytes images/convolver-diagram.svg | 3 +++ index.html | 3 +-- 3 files changed, 4 insertions(+), 2 deletions(-) commit 7a504211bb8152d3935c32eb4a4618bf4e242415 Author: Raymond Toy <rtoy@chromium.org> Date: Fri Sep 30 13:11:36 2016 -0700 Fix #942: Clarify behavior of convolver node This specifies how the impulse response works with in various configurations. The constraints on channelCount and channelCountMode were applied in #968. index.html | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) commit 3c34d31d891f3cade64526e88d4a4c9251052471 Author: Raymond Toy <rtoy@chromium.org> Date: Mon Oct 3 14:40:31 2016 -0700 Run tidy index.html | 52 ++++++++++++++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) commit 8c93fbf2a6cd4a08850ce8ee18152da6e35d8b75 Author: Raymond Toy <rtoy@chromium.org> Date: Mon Oct 3 14:01:34 2016 -0700 Fix #606: Specify nominal range for rolloffFactor index.html | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) commit 8b5820e83d62375b94b0481ede7fa7b1182d41f4 Author: Matthew Paradis <matthew.paradis@bbc.co.uk> Date: Tue Oct 4 11:53:30 2016 +0100 Update to FIX #640 including AudioListener changes index.html | 45 ++++++++++++++++++++++++++++++--------------- 1 file changed, 30 insertions(+), 15 deletions(-) commit c6e53de4bef04fa0b41f3db185f1c327099cad88 Author: Matthew Paradis <matthew.paradis@bbc.co.uk> Date: Wed Sep 28 09:46:52 2016 +0100 Specifying nominal range for SpatialPanner nodes Audio Param #640 index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) commit 5820ede6e53ce04645095e5f0f93ad06ad6f97c3 Author: Raymond Toy <rtoy@chromium.org> Date: Mon Oct 3 11:40:18 2016 -0700 Use Arial font instead of Helvetica Nueue images/cancel-linear.graffle | Bin 2117 -> 2140 bytes images/cancel-linear.svg | 2 +- images/cancel-setTarget.graffle | Bin 2154 -> 2178 bytes images/cancel-setTarget.svg | 2 +- images/cancel-setValueCurve.graffle | Bin 2172 -> 2187 bytes images/cancel-setValueCurve.svg | 2 +- 6 files changed, 3 insertions(+), 3 deletions(-) commit 64cf277f447f4f5c1f656810cdf202bf6942ff65 Author: Raymond Toy <rtoy@chromium.org> Date: Mon Oct 3 10:44:46 2016 -0700 Revert incorrect commit Accidentally included convolver diagram. images/convolver-diagram.graffle | Bin 3304 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) commit daddb2ba43e671b22231e58fbf99cbb439487ac6 Author: Raymond Toy <rtoy@chromium.org> Date: Mon Oct 3 10:43:56 2016 -0700 Revert incorrect commit Accidentally included convolver diagram. images/convolver-diagram.svg | 3 --- index.html | 3 ++- 2 files changed, 2 insertions(+), 4 deletions(-) commit 881f149462cef5e4cde487039927c0d2f935dad2 Merge: 2ce599d 86763e4 Author: rtoy <toy.raymond@gmail.com> Date: Mon Oct 3 10:10:59 2016 -0700 Merge pull request #1008 from WebAudio/353-clamp-offset Spec what happens when the offset of the start() method is greater than the buffer.duration commit 86763e45d19c8a2105aaccd368c108f954d38351 Author: Paul Adenot <paul@paul.cx> Date: Mon Oct 3 18:34:13 2016 +0200 Fix typo index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 2ce599d7a6a36b89b164e41d9c90524e9cf98812 Author: Paul Adenot <paul@paul.cx> Date: Mon Oct 3 18:29:23 2016 +0200 Remove the decimal part when it's unnecessary. index.html | 58 +++++++++++++++++++++++++++++----------------------------- 1 file changed, 29 insertions(+), 29 deletions(-) commit 7466c758e9996b17fa3e0b7f5d67ed71396167e1 Author: Paul Adenot <paul@paul.cx> Date: Mon Oct 3 11:22:47 2016 +0200 Tidy up the document. index.html | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) commit 2e81acb107e3ed0f1cc2d5a044de6ad2b3da756b Author: Paul Adenot <paul@paul.cx> Date: Mon Oct 3 11:21:50 2016 +0200 Add the textual description of default values back. index.html | 235 +++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 135 insertions(+), 100 deletions(-) commit 5d6b346fb1c4f7441cb3360f30a8c93fbe92c2f1 Author: Paul Adenot <paul@paul.cx> Date: Mon Oct 3 11:19:34 2016 +0200 Address review comments. index.html | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) commit 3554a8b1fa769ddb50befbebb8976adbe264dd34 Author: Paul Adenot <paul@paul.cx> Date: Fri Sep 30 12:34:35 2016 +0200 Put all the default values in the NodeOption dicts. index.html | 314 +++++++++++++++++++++++++++---------------------------------- 1 file changed, 139 insertions(+), 175 deletions(-) commit d329ecef9e3efb7e1b5f7313da7acf0dfa37256b Author: Paul Adenot <paul@paul.cx> Date: Fri Sep 30 12:15:05 2016 +0200 Clarify that disableNormalization is the opposite of the associated attribute. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 456aee7f37bd6cf33cb6c7d5f989f77ad679fceb Author: Paul Adenot <paul@paul.cx> Date: Fri Sep 30 12:13:17 2016 +0200 Use `disableNormalization` in the AudioNode construction text. index.html | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) commit 0739f92cc9f377304c9ccc5507151a07e18c6db2 Author: Paul Adenot <paul@paul.cx> Date: Thu Sep 29 17:36:46 2016 +0200 Spec what happens when you call the AudioNode ctors This fixes #986. index.html | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 58 insertions(+), 1 deletion(-) commit b1b972e740af818f25dc45889e7d80a3c25779f2 Author: joeberkovitz <joe@noteflight.com> Date: Fri Sep 30 14:47:55 2016 -0400 Fix #452 by defining circular routing lifetime correctly. index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) commit 052c73b53547672b3bfd0563eb5a3b190c34ea9e Merge: 5c52f0c 831355b Author: Joe Berkovitz <joe@noteflight.com> Date: Sat Oct 1 10:08:37 2016 -0400 Merge pull request #1018 from WebAudio/421-playback-time-and-looping Fixes #421 commit 8000620e1d84b6150ec7915b94f50704d0cb1fce Author: Raymond Toy <rtoy@chromium.org> Date: Fri Sep 30 15:24:30 2016 -0700 Add new convolver diagram Including source and svg image. images/convolver-diagram.graffle | Bin 0 -> 3304 bytes images/convolver-diagram.svg | 3 +++ index.html | 3 +-- 3 files changed, 4 insertions(+), 2 deletions(-) commit 831355b6d3d24d58766d8cd63b1454e43045d64c Author: joeberkovitz <joe@noteflight.com> Date: Fri Sep 30 16:25:08 2016 -0400 Fix redundant language. index.html | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) commit c8645ea156620e15a7765be688b0890fa744d1a4 Author: joeberkovitz <joe@noteflight.com> Date: Fri Sep 30 16:13:36 2016 -0400 Tidy index.html | 81 +++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 49 insertions(+), 32 deletions(-) commit 4223caeb1f000629e2d52fa61b414937df3dd7ee Author: joeberkovitz <joe@noteflight.com> Date: Fri Sep 30 16:10:37 2016 -0400 Clarify relationships between AudioWorkletGlobalScope and AudioContext. images/audioProcessorInstantiation.graffle | Bin 0 -> 4348 bytes images/audioProcessorInstantiation.png | Bin 0 -> 120739 bytes index.html | 76 +++++++++++++++++++++++------ 3 files changed, 62 insertions(+), 14 deletions(-) commit 3238bbbdded81a39b8b8cc6da94e9dec187c3631 Author: Raymond Toy <rtoy@chromium.org> Date: Fri Sep 30 12:04:16 2016 -0700 Run tidy index.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) commit 86166ec39b9b291bab8f52ffdf0c116f78f8ab91 Author: Raymond Toy <rtoy@chromium.org> Date: Fri Sep 30 12:00:20 2016 -0700 Add graphs for cancel and hold. Include the Omnigraffle source and the svg image too. images/cancel-linear.graffle | Bin 0 -> 2117 bytes images/cancel-linear.svg | 3 +++ images/cancel-setTarget.graffle | Bin 0 -> 2154 bytes images/cancel-setTarget.svg | 3 +++ images/cancel-setValueCurve.graffle | Bin 0 -> 2172 bytes images/cancel-setValueCurve.svg | 3 +++ index.html | 6 ++++++ 7 files changed, 15 insertions(+) commit 662e4946f4c5944f22e2c84a1bdda1bead1314ea Author: joeberkovitz <joe@noteflight.com> Date: Fri Sep 30 14:14:16 2016 -0400 Clarify that the duration arg to ABSN::start is equivalent to an immediate call to stop(when+duration). index.html | 39 +++++++++++++++++++++++++-------------- 1 file changed, 25 insertions(+), 14 deletions(-) commit 71276608a748e00d026a23d951b74c42f16a3234 Author: Raymond Toy <rtoy@chromium.org> Date: Fri Sep 30 10:53:42 2016 -0700 ABSN start when and offset shouldn't be optional. I think. This makes it distinguishable from AudioSchedledSourceNode's start with optional when. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 882fe9377e84ca1634544bb2354f8a6580a536df Author: Raymond Toy <rtoy@chromium.org> Date: Fri Sep 30 10:17:18 2016 -0700 Run tidy index.html | 35 +++++++++++++++++++---------------- 1 file changed, 19 insertions(+), 16 deletions(-) commit 2842b1efb48bd2f7f9fc45580a067edb54758c5b Author: Raymond Toy <rtoy@chromium.org> Date: Fri Sep 30 10:14:48 2016 -0700 Fix #960: Add AudioScheduledSourceNode base class for source nodes The AudioScheduledSourceNode is a base class for AudioBufferSourceNode, ConstantSourceNode, and OscillatorNode. This class provides the basic start() and stop() methods as well as the onended attribute that these source nodes support. index.html | 290 +++++++++++++++++++++++-------------------------------------- 1 file changed, 108 insertions(+), 182 deletions(-) commit cb6d0878c6baf3fe3cb19ba6dd52c02804cf131d Merge: 5b215d1 5c52f0c Author: joeberkovitz <joe@noteflight.com> Date: Fri Sep 30 12:42:34 2016 -0400 Merge branch 'gh-pages' into 475-dynamic-audioworklet-lifetime Conflicts: index.html commit 5b215d10eaf8c4cbd2fc7b10dce015445a87a3da Author: joeberkovitz <joe@noteflight.com> Date: Fri Sep 30 12:22:26 2016 -0400 Remove material that relates to #970 rather than dynamic lifetime index.html | 17 ----------------- 1 file changed, 17 deletions(-) commit 5c52f0cbbc6855a8b10038b6d97324bd7063fa09 Merge: 25a5b2c 85a1c03 Author: Joe Berkovitz <joe@noteflight.com> Date: Fri Sep 30 10:30:42 2016 -0400 Merge pull request #1009 from WebAudio/970-detect-input-connected Fixes #970 commit 5941c06001cf3dd235dadaf0896e6d109d758ae2 Author: Paul Adenot <paul@paul.cx> Date: Fri Sep 30 15:01:06 2016 +0200 Make it so that the clamping happens at the time of start. index.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) commit 1247f5498693f79adc74d62dfe44d1d0cb7271f5 Author: Paul Adenot <paul@paul.cx> Date: Wed Sep 28 19:04:59 2016 +0200 Spec what happens when the offset of the start() method is greater than the buffer.duration index.html | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) commit 25a5b2c69c591a21325b90c728e08e647fab24ad Merge: 3c7637f 1313ecd Author: rtoy <toy.raymond@gmail.com> Date: Thu Sep 29 13:31:09 2016 -0700 Merge pull request #1015 from rtoy/1014-use-correct-range-for-offset Fix #1014: Use correct nominal range for ConstantSourceNode.offset commit 1313ecdf50d6a3705e62042c3adc71426c268ae2 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Sep 29 13:25:23 2016 -0700 Fix #1014: Use correct nominal range for ConstantSourceNode.offset The correct range is (-infty, infty); infinity is not allowed as a value for the offset. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 3c7637f726015ea60963f210bc3d03d871829503 Merge: 57f8f7b ea6e80a Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Thu Sep 29 12:57:28 2016 -0700 Merge pull request #1012 from hoch/gh-pages Small improvement on Travis CI build. commit ea6e80af92909be3f05914aa343d944dec865f74 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 29 11:39:18 2016 -0700 apt-get does not work, reverting to cmake .travis.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) commit ef9e297fea24709a8b24eb6ed52e851e4b252d79 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 29 11:21:10 2016 -0700 testing .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 776da524bf8658b7b2ef6e2c864a7d79249f739f Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 29 11:18:34 2016 -0700 testing .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit 0800bd7bc1bed319658d68d39aa5a9b247150f29 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 29 11:16:27 2016 -0700 remove make out of yaml .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 3a39059262c15357739a5ca52b80b7ee4330937c Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 29 11:14:20 2016 -0700 testing out tidy-html5 .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 0aaeffd9ed82586f50d08551a4e7ab75184589db Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 29 10:53:25 2016 -0700 put CMAKE to addon packages .travis.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) commit 57f8f7b8b0ae220c6d62ff6682ff2b5c1835773f Author: Raymond Toy <rtoy@chromium.org> Date: Thu Sep 29 09:44:20 2016 -0700 Add note that timeConstant=0 jumps instantly. index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit d2294b98208544131310005a73f69c11bd85c337 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Sep 28 13:33:33 2016 -0700 Fix #850: Allow a setTargetAtTiem TimeConstant to be 0 Change the text to say that it must be non-negative instead of strictly positive. The formula when the time constant is pretty well-defined if the limit is taken, so no text is added to indicate what happens. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 4726cd5b90b641e8b1f206556ad2a1caed426d28 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 29 09:51:42 2016 -0700 Fixes #1006 .travis.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) commit c90e87a69904752035fea54930c4c6b007209e6b Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 29 09:50:07 2016 -0700 fixes #1006 .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) commit f6578363f4bbdd19e4261b7c36077a11daf8baed Author: Paul Adenot <paul@paul.cx> Date: Wed Sep 28 11:58:32 2016 +0200 Clarify the prose a bit. index.html | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) commit 62968ec81bec1b2dfd388927c2fbfb372018f1d0 Author: Paul Adenot <paul@paul.cx> Date: Tue Sep 27 14:22:56 2016 +0200 Explain how suspend and resume work in the processing model. This is for the real time part, another commit will explain how it works with offline contexts. index.html | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) commit 219399b1b62df7516bf5713fd40aed24e1eacb50 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Sep 28 15:52:15 2016 -0700 Spec what cancelScheduledValues does to cancelAndHold cancelScheduledValues removes any holds if the hold time is in the future. index.html | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) commit ce038315f74709e5cd56cdd82a9525029758b1c1 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Sep 28 15:44:50 2016 -0700 Replace cancelScheduledValues with the cancelAndHoldAtTime In a few places cancelScheduledValues was really referring to cancelAndHoldAtTime. Update them to the new name. index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) commit 85a1c03e0926a0e16703771b5b19d7d65f59982c Author: joeberkovitz <joe@noteflight.com> Date: Wed Sep 28 15:30:16 2016 -0400 Add language describing the no-connected-inputs condition observable by an AWP. index.html | 36 +++++++++++++++++++++++++++--------- 1 file changed, 27 insertions(+), 9 deletions(-) commit f8ba327e143d43d1805e387fbd31b282b037f4d6 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Sep 28 09:57:55 2016 -0700 Tidy. index.html | 47 +++++++++++++++++++++++++++-------------------- 1 file changed, 27 insertions(+), 20 deletions(-) commit c6c1cfa56643648e0b954008eaf8a0387f54008f Author: Raymond Toy <rtoy@chromium.org> Date: Wed Sep 28 09:57:25 2016 -0700 Fix #1005: bad linkless elements Add correct links for the linkless elements or remove the a tag completely. index.html | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) commit da8b78d6855fe87b78b8ab34a10a2cfd9357c6c7 Merge: debd414 ec15804 Author: rtoy <toy.raymond@gmail.com> Date: Wed Sep 28 09:47:26 2016 -0700 Merge pull request #999 from rtoy/968-special-cases-for-channelcount Fix #968: special cases for channelCount and channelCountMode commit debd414d48d0fc31600e3308c3fd03cbfd516b59 Author: Paul Adenot <paul@paul.cx> Date: Tue Sep 27 15:12:17 2016 +0200 Remove the section about JavaScript processing. index.html | 40 ---------------------------------------- 1 file changed, 40 deletions(-) commit ec15804c9c0916bd81560e01a957c2bcaed88c47 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Sep 28 09:34:26 2016 -0700 Tidy again. index.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) commit d04ede69a19060f187e685eebf2e5db180086b83 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Sep 27 12:13:17 2016 -0700 Fix #929: Remove sentence on mixing the input Not needed because inputs are always mixed according to the mixing rules. index.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) commit b146f6573d545e57d47423c3d4765e2adb77fe07 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Sep 27 11:04:12 2016 -0700 Forgot MediaElementAudioSourceOptions and MediaStreamAudioSourceOptions. The dictionary members are required. index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit 0e988916556d0473ee10d50dce6b9fb0e79f65b4 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Sep 27 10:55:09 2016 -0700 Fix #981: Use required syntax for required dictionary members I think only only AudioBufferOptions and IIRFilterOptions have required members. PeriodicWaveOptions requires one of real and/or imag to be specified, but I don't think that can be specified via IDL, so I'm leaving that out. index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 9f2d5badcdb5398cf8400838f9b9fbc8d1be6681 Author: Mounir Lamouri <mounir@lamouri.fr> Date: Sat Sep 24 16:35:57 2016 +0100 Add a concept of 'allowed to start' and use it when creating an AudioContext and resuming it from resume() (closes #836). index.html | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) commit cc1da7342b4b6d0a7a48c4fcc343c082ec71e324 Author: Paul Adenot <paul@paul.cx> Date: Tue Sep 27 10:55:09 2016 +0200 Allow collecting MediaStreamAudioSourceNode or MediaElementAudioSourceNode when they won't play ever again. index.html | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) commit 6bdd980da085ee2297eda3157ec5b17607821825 Author: Paul Adenot <paul@paul.cx> Date: Tue Sep 27 11:59:52 2016 +0200 Make the WaveShaperNode have a tail time, depending on the oversampling level. index.html | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) commit 084fc447bc99e15cd428a129348aacdccc5690f0 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Sep 15 16:13:03 2016 -0700 Run tidy index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 04e040f2d5f6d0eafa20c2b4e1d43859a7797a8a Author: Raymond Toy <rtoy@chromium.org> Date: Wed Jun 22 13:58:20 2016 -0700 Run tidy and fix typo in tags. index.html | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) commit 2d3920c158c4f75de47f09531c6893d856f009f5 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Jun 22 13:56:41 2016 -0700 Fix #330: Specify the most recent samples for the Analyser data The Analyser node uses the most recent fftSize frames in computing the expected results. index.html | 32 ++++++++++++++++++++------------ 1 file changed, 20 insertions(+), 12 deletions(-) commit d03aece2bf8d16528b844119525de1728bcfb576 Merge: 5a13466 7d1fc93 Author: rtoy <toy.raymond@gmail.com> Date: Wed Sep 28 09:18:27 2016 -0700 Merge pull request #1001 from rtoy/977-cleanup-destination-node-max-channel-count Fix #977: clean up description of maxChannelCount commit 5a134662b24b803f4549be0e32e809fa35d5ce7c Author: Raymond Toy <rtoy@chromium.org> Date: Tue Sep 27 12:13:17 2016 -0700 Fix #929: Remove sentence on mixing the input Not needed because inputs are always mixed according to the mixing rules. index.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) commit f2dd3071bb4b80960c28b7dddf3ece8b39e0c481 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Sep 27 11:04:12 2016 -0700 Forgot MediaElementAudioSourceOptions and MediaStreamAudioSourceOptions. The dictionary members are required. index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit aae342d457e4ab7249dbb5bff9be1670e9621910 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Sep 27 10:55:09 2016 -0700 Fix #981: Use required syntax for required dictionary members I think only only AudioBufferOptions and IIRFilterOptions have required members. PeriodicWaveOptions requires one of real and/or imag to be specified, but I don't think that can be specified via IDL, so I'm leaving that out. index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 71facf007cc3bca5055a372f7998db3c40f9f829 Author: Mounir Lamouri <mounir@lamouri.fr> Date: Sat Sep 24 16:35:57 2016 +0100 Add a concept of 'allowed to start' and use it when creating an AudioContext and resuming it from resume() (closes #836). index.html | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) commit 765fd09e138ebb89be2548ddb27f76591a68074d Author: Paul Adenot <paul@paul.cx> Date: Tue Sep 27 10:55:09 2016 +0200 Allow collecting MediaStreamAudioSourceNode or MediaElementAudioSourceNode when they won't play ever again. index.html | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) commit 74d0d8a7073b791be597307c146ae5d7dc8faf2c Author: Paul Adenot <paul@paul.cx> Date: Tue Sep 27 11:59:52 2016 +0200 Make the WaveShaperNode have a tail time, depending on the oversampling level. index.html | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) commit a760799ce1606db964f93fa5113ca30b321aa9eb Author: Raymond Toy <rtoy@chromium.org> Date: Tue Sep 27 15:15:39 2016 -0700 Rename to cancelAndHoldAtTime and keep old method. index.html | 36 ++++++++++++++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) commit 6f70f223a61ed8296e1ee5d5a6e7d5972be1833c Merge: ec95c8d b39c552 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Sep 27 15:04:10 2016 -0700 Merge branch 'gh-pages' into 344-cancel-scheduled-values-and-hold commit 0efd08db72dc95f57ef77f8912e66cb77df507af Merge: b39c552 e67521d Author: rtoy <toy.raymond@gmail.com> Date: Tue Sep 27 13:39:08 2016 -0700 Merge pull request #851 from rtoy/330-analyser-uses-most-recent-samples Fix #330: analyser uses most recent samples commit 7d1fc931589a36f5985e2e405d4bc8f0024d600b Author: Raymond Toy <rtoy@chromium.org> Date: Tue Sep 27 12:05:23 2016 -0700 Fix #977: clean up description of maxChannelCount Move the description of the channelCount mode to a different section. index.html | 62 ++++++++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 40 insertions(+), 22 deletions(-) commit 26c85320fccd323debbe42150540a41cb99a9113 Author: joeberkovitz <joe@noteflight.com> Date: Tue Sep 27 15:01:19 2016 -0400 Tidy. index.html | 66 ++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 32 insertions(+), 34 deletions(-) commit c54e72b42546f4a4211114f1232853518659f9a6 Author: joeberkovitz <joe@noteflight.com> Date: Tue Sep 27 14:58:56 2016 -0400 Check for input connection status in VUMeter node. Apply registerAudioWorkletProcessor() name change to examples. index.html | 43 +++++++++++++++++++++++-------------------- 1 file changed, 23 insertions(+), 20 deletions(-) commit 23bcb3aeb560606ff960aee369fac50723acab42 Merge: 96fb6d4 b39c552 Author: joeberkovitz <joe@noteflight.com> Date: Tue Sep 27 14:51:49 2016 -0400 Merge branch 'gh-pages' into 475-dynamic-audioworklet-lifetime and resolve conflicts. Rework to not depend any more on process() IDL. commit 715fce9e0fc0945543d241a6c968f9da6e9edf78 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Sep 27 11:34:02 2016 -0700 Tidy and fix a bad link. index.html | 103 ++++++++++++++++++++++++++++++++++++++++--------------------- 1 file changed, 67 insertions(+), 36 deletions(-) commit 13e9faa33d9002a0aaad53307e240409fa916259 Merge: 404be0b b39c552 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Sep 27 11:06:17 2016 -0700 Merge branch 'gh-pages' into 968-special-cases-for-channelcount commit b39c552e7ee40081adf86dabcc07446e373da5b1 Merge: cb67f8b 58a0f5a Author: rtoy <toy.raymond@gmail.com> Date: Tue Sep 27 10:38:33 2016 -0700 Merge pull request #902 from rtoy/367-constant-source-node Fix #367: Define ConstantSourceNode commit 58a0f5ada3dad70f79d67b69869c60a05fec6064 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Sep 27 10:28:41 2016 -0700 Run tidy. index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit 5401f8162f15816290ab0779b1ae78422d59fb77 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Sep 27 10:27:16 2016 -0700 Replace sourceValue with offset; some rephrasing. index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit cb67f8b3b6fb729e7034b978c24ce7cf5fe52644 Author: Paul Adenot <paul@paul.cx> Date: Tue Sep 27 10:52:58 2016 +0200 Use HTTPS links in README.md. README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 89d0e2a0c728f009690bfc51f65c95b8bc6d93c0 Merge: a90e930 894da33 Author: Raymond Toy <rtoy@chromium.org> Date: Fri Sep 23 15:01:14 2016 +0100 Merge branch 'gh-pages' into 367-constant-source-node commit a90e930273570329aae672a6fc25c1e625a0b490 Author: Raymond Toy <rtoy@chromium.org> Date: Fri Sep 23 14:59:42 2016 +0100 Remove old AudioWorker stuff that was deleted index.html | 21 --------------------- 1 file changed, 21 deletions(-) commit 704033334aeea9ca6dc4d444ab8c6a63fe8b6c48 Author: Raymond Toy <rtoy@chromium.org> Date: Fri Sep 23 14:56:14 2016 +0100 Add ConstantSourceNode to API Overview section index.html | 4 ++++ 1 file changed, 4 insertions(+) commit aa21420aa495d364f44e98e80d8f441c83a6406e Author: Raymond Toy <rtoy@chromium.org> Date: Fri Sep 23 14:36:58 2016 +0100 Address review comments Rename sourceValue to offset. Default value is 1 not 0. (Keep factory method.) index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit 894da33aee7257c17892d2e745378474faf1f71b Merge: 152cd94 3ba5bd3 Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Tue Sep 20 09:08:52 2016 -0700 Merge pull request #976 from hoch/gh-pages Adding normative description of instantiation process commit 3ba5bd3676bf1b4afc4d66d098d3ac80c20dc049 Author: Hongchan Choi <hongchan@chromium.org> Date: Tue Sep 20 07:34:25 2016 -0700 Addressing @padenot`s feedback index.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) commit 152cd9471a36857515d8635a09f0d03e10291312 Merge: 8af15bc a8283e3 Author: Paul Adenot <paul@paul.cx> Date: Tue Sep 20 11:10:16 2016 +0100 Merge pull request #983 from rtoy/980-nullable-buffer-in-constructors Fix #980: buffer in constructors is nullable commit a8283e37cd90a0455e5aad6f73c1d900c65924c1 Author: Raymond Toy <rtoy@chromium.org> Date: Mon Sep 19 11:03:42 2016 -0700 Fix #980: buffer in constructors is nullable AudioBufferSourceOptions.buffer and ConvolverOptions.buffer can null when used to construct the corresponding nodes. Make it explicit. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 8af15bc85b1ad7876178123cd874d3a3f4f6e320 Merge: 1289ba1 c6097b8 Author: Paul Adenot <paul@paul.cx> Date: Mon Sep 19 16:44:29 2016 +0100 Merge pull request #972 from rtoy/962-audio-buffer-defaults Fix #962: Default values for AudioBufferOptions commit c6097b86b5c88ec3a8f9b4a5c3c615e671474dfb Author: Raymond Toy <rtoy@chromium.org> Date: Mon Sep 19 08:41:30 2016 -0700 Use WebIDL to specify the default number of channels. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 1289ba14d93250005dd6015e088e611cc83d8ced Merge: ba33d5f f89bfac Author: rtoy <toy.raymond@gmail.com> Date: Mon Sep 19 08:25:48 2016 -0700 Merge pull request #978 from rtoy/924-setting-fftSize-flushes-state Fix #924: Changing fftSize of Analyser commit ba33d5f6b288fc2004ac241f680564064c15a052 Merge: 4d8f604 e5f3205 Author: rtoy <toy.raymond@gmail.com> Date: Mon Sep 19 08:22:18 2016 -0700 Merge pull request #979 from WebAudio/687-use-webidl-detach Consistently use IsDetachedBuffer and link to the spec when referencing a detach operation. commit f89bfac04afb7935db9e967f97f55023d40fc2c9 Author: Raymond Toy <rtoy@chromium.org> Date: Mon Sep 19 08:18:46 2016 -0700 Explicitly state what state is reset. index.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) commit e5f3205b985f1d663f92b3eef6d98493cce62d2e Author: Paul Adenot <paul@paul.cx> Date: Mon Sep 19 15:12:47 2016 +0100 Consistently use IsDetachedBuffer and link to the spec when referencing a detach operation. This fixes #687. index.html | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) commit b73ec18793c153edd5a8fb7a8e76beeb7dbf8967 Author: Hongchan Choi <hongchan@chromium.org> Date: Fri Sep 16 15:06:05 2016 -0700 Addressing @rtoy`s feedback index.html | 48 +++++++++++++++++++++++++----------------------- 1 file changed, 25 insertions(+), 23 deletions(-) commit 3022164d6737be2e043e4730c12459d37ec7c915 Author: Raymond Toy <rtoy@chromium.org> Date: Fri Sep 16 09:27:04 2016 -0700 Resetting happens only if fftSize changes value, not on setting. index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) commit 0c10565706704cef7ca7f02b07c555c3c21ef95c Author: Raymond Toy <rtoy@chromium.org> Date: Fri Sep 16 09:17:40 2016 -0700 Fix #924: Changing fftSize of Analyser If the fftSize is changed, reset the internal state for the FFT computations as if a new AnalyserNode were created. index.html | 9 +++++++++ 1 file changed, 9 insertions(+) commit 28a85567a6ba4d25ff0392778d28f8fe73e2d845 Author: Hongchan Choi <hongchan@chromium.org> Date: Fri Sep 16 08:57:00 2016 -0700 Minor edits and adding structured clone reference index.html | 65 +++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 35 insertions(+), 30 deletions(-) commit d6e40532409f0cf5fdf43fdba58aa5a71e5d6788 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 15 16:23:58 2016 -0700 workaround for tidy pre tag bug index.html | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) commit f64cc99d6891658c33101d1375c306f05e285d83 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 15 15:53:01 2016 -0700 tidy up, code example bug index.html | 2 ++ 1 file changed, 2 insertions(+) commit b3931a6a29ba8c9a26b278494df1ce9ddf297822 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 15 15:49:20 2016 -0700 tidy up, code example bug index.html | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) commit 89d58ba19eec8d27a70a78282b86470053c6dee3 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 15 15:46:23 2016 -0700 tidy up index.html | 2 ++ 1 file changed, 2 insertions(+) commit 030780431ce23c2d895a5c56571d4615fa2357f2 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 15 15:37:44 2016 -0700 tidy up index.html | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) commit f824c20a9d1a659c1c42cacf6bd232c1c2ac93df Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 15 15:31:51 2016 -0700 Addressing comments from @domenic and @joeberkovitz .Fix up the concept section. index.html | 304 ++++++++++++++++++++++++------------------------------------- 1 file changed, 118 insertions(+), 186 deletions(-) commit 404be0bb3b60579cbf54987fdda34af9ded12858 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Sep 15 15:01:35 2016 -0700 More fixes o Split out AudioDestination for offline and realtime context. o Order special nodes alphabetically. o Add dfn for the constraints. (More specific links/dfn's needed?) o Put back links from the nodes to this audio node section. index.html | 139 +++++++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 89 insertions(+), 50 deletions(-) commit 29a077c95a2b68915dcdfea1962c6711caa24d86 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 15 11:43:21 2016 -0700 Adding the normative explanation on instantiation index.html | 137 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 137 insertions(+) commit 07326289606a48e1b99cb94deee0d2bf44d1bf11 Merge: 21a607e 4d8f604 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 15 11:41:35 2016 -0700 Merge remote-tracking branch 'upstream/gh-pages' into gh-pages commit 21a607ec21f2c081240ca5a1b45ecb7c43a497bd Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 15 11:41:25 2016 -0700 adding anchor to AudioWorkletProcessor index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 4d8f604fd841e9c6a7a3c44df40c9b8a46cf8e81 Merge: 7fa9398 8126826 Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Thu Sep 15 11:39:20 2016 -0700 Merge pull request #963 from hoch/gh-pages Refining AudioWorkletProcessor section commit 81268260239f842699721359e0d17f43d77c314a Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 15 11:25:11 2016 -0700 Removing non-normative label index.html | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) commit 0136d6c843adc346056ad7836823ed2536cfb713 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 15 09:58:38 2016 -0700 Making the informative section more normative. index.html | 57 ++++++++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 42 insertions(+), 15 deletions(-) commit 6c2fa340824c8c96471d6375706926ce565ab931 Merge: c4b91ae 7fa9398 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Sep 15 09:52:43 2016 -0700 Merge branch 'gh-pages' into 968-special-cases-for-channelcount commit c4b91ae2bd2b39367f83b5bc3f1265515e1d44d0 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Sep 15 09:51:58 2016 -0700 Fix #968: Add special cases for AudioNode.channelCoutn and friends Add text describing all of the special cases for channelCount, channelCountMode, and channelInterpretation that need to be handled when setting these values for particular nodes. index.html | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) commit 7fa939849579652c28bd44cba9255a78c56cfb32 Merge: 315e5cf c80325e Author: Paul Adenot <paul@paul.cx> Date: Thu Sep 15 11:28:00 2016 +0200 Merge pull request #974 from rtoy/948-remove-base-context-close Fix #948: Move close() to AudioContext commit c80325e680fe9f818e4cf2d81ee6414f4e7455b5 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Sep 14 11:44:57 2016 -0700 Fix #948: Move close() to AudioContext Having close() be in BaseAudioContext is a little confusing because you can't close an OfflineAudioContext. Move close() to the AudioContext instead. index.html | 149 +++++++++++++++++++++++++++++-------------------------------- 1 file changed, 72 insertions(+), 77 deletions(-) commit c3b4ff30a4fec38e34829ea6ac514e021406d0d1 Merge: 570fdb7 315e5cf Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Sep 14 11:29:59 2016 -0700 Merge remote-tracking branch 'upstream/gh-pages' into gh-pages commit d0fc6e9c6e0da99370f535e28fc1aa06114bd783 Author: Raymond Toy <rtoy@chromium.org> Date: Mon Sep 12 14:02:22 2016 -0700 Fix #962: Default values for AudioBufferOptions Specify that the numberOfChannels and sampleRate are optional with the default being 1 and the context sample rate, respectively. Thus, only the length is required. This is a handy shortcut. index.html | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) commit 315e5cfad13dd5eeaa146b03d6fd93a140691a0a Merge: 540ccf0 3b6f15a Author: rtoy <toy.raymond@gmail.com> Date: Mon Sep 12 10:23:39 2016 -0700 Merge pull request #971 from rtoy/961-add-markup-audiobuffersource Fix #961: add markup for AudioBufferSourceNode commit 570fdb723db24e4f42d9324a0140e55ee88e389c Author: Hongchan Choi <hongchan@chromium.org> Date: Mon Sep 12 09:59:33 2016 -0700 EventTarget to AudioWorkletProcessor index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 84d1716fb982ed02b95d478d25440400c66b388e Author: Hongchan Choi <hongchan@chromium.org> Date: Mon Sep 12 09:58:56 2016 -0700 EventTarget to AudioWorkletProcessor index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 5bc19963a79ee8e94b312a1c9f1dc44c37dd91c6 Author: Hongchan Choi <hongchan@chromium.org> Date: Mon Sep 12 09:39:34 2016 -0700 Replacing <strong> with <code> index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 3b6f15a4c1a8bc1a5941a928f67aee40fcf309dd Author: Raymond Toy <rtoy@chromium.org> Date: Mon Sep 12 09:33:17 2016 -0700 Fix #961: add markup for AudioBufferSourceNode Add some markup for the functions and attributes in the initial description of AudioBufferSourceNode. index.html | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) commit db85ee753123948de38d3572116ffe7f5ed122fd Author: Hongchan Choi <hongchan@chromium.org> Date: Mon Sep 12 09:22:19 2016 -0700 Addressing rtoy`s feedback index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit ec95c8d171c9009f018d632a8bf508a147cba738 Author: Raymond Toy <rtoy@chromium.org> Date: Fri Sep 9 11:52:23 2016 -0700 Fix #344: cancelScheduledValues and hold Specify the algorithm (mentioned in #344) for how cancelScheduledValues should behave to hold the value. index.html | 102 +++++++++++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 90 insertions(+), 12 deletions(-) commit 938ff1052b129c8e48f667e0955bc5c3865fa6f2 Author: Hongchan Choi <hongchan@chromium.org> Date: Fri Sep 9 10:49:24 2016 -0700 tidy up index.html | 92 +++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 49 insertions(+), 43 deletions(-) commit 59c818e09312bb39e41d2d720c99e7034b855326 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 8 17:50:14 2016 -0700 initial commit index.html | 113 ++++++++++++++++++++++++++----------------------------------- 1 file changed, 48 insertions(+), 65 deletions(-) commit 540ccf0357b8a619796a23330e6d59db67431334 Merge: 1c3ff09 c8ba6ad Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Thu Sep 8 15:56:47 2016 -0700 Merge pull request #945 from hoch/gh-pages Polishing AudioWorkletGlobalScope section commit bbc4118e5e39db88045cf87ddd2f73dd90404b8e Merge: 00caad1 c8ba6ad Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 8 15:22:22 2016 -0700 Merge branch 'gh-pages' into 954-audioworklet commit c8ba6adab8304a77750c99338f932a826ff5e704 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 8 11:27:19 2016 -0700 addressing feedback from rtoy index.html | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) commit 00caad1661f748f3b1c35a8b5dabbf65cd27b070 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 8 10:37:19 2016 -0700 initial commit index.html | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) commit 1c3ff09b679ee0ac255476547e88aca7547f09a7 Merge: aeb25dc dd52802 Author: rtoy <toy.raymond@gmail.com> Date: Thu Sep 8 09:07:19 2016 -0700 Merge pull request #843 from WebAudio/837-pannernode-a-rate Make HRTF panning k-rate Fix #837. commit 7f7cf9027c9534e40a282a292db918e04074f00c Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 8 08:23:34 2016 -0700 applying tidy index.html | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) commit 7a13754287f8356e14018031b567e71b066d70d6 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Sep 8 08:22:44 2016 -0700 addressing feedback from rtoy index.html | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) commit dd528026ca6f2c2f5ca2bf0885f04db04ecbfd7f Author: Paul Adenot <paul@paul.cx> Date: Fri Sep 2 17:11:15 2016 +0200 Tidy index.html | 357 +++++++++++++++++++++++++++++-------------------------------- 1 file changed, 172 insertions(+), 185 deletions(-) commit 6907f985b6318da6f82f3e7fd71c73d39ace495c Author: Raymond Toy <rtoy@chromium.org> Date: Wed Sep 7 10:14:31 2016 -0700 Minor editorial clarification. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 602405bddbd563bd704765f1819bd44249d8e502 Merge: 22bb382 aeb25dc Author: Raymond Toy <rtoy@chromium.org> Date: Wed Sep 7 10:05:10 2016 -0700 Merge branch 'gh-pages' into 367-constant-source-node commit 96fb6d4746fb69a77ef229bfe894c5d401c3395d Author: joeberkovitz <joe@noteflight.com> Date: Wed Sep 7 08:25:15 2016 -0400 clarify timeframe of updating of connected attribute index.html | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) commit db2869d8219ecc0d0bb00a6544862847fafadd72 Merge: 7eb4241 aeb25dc Author: joeberkovitz <joe@noteflight.com> Date: Tue Sep 6 18:16:34 2016 -0400 Merge branch 'gh-pages' into 475-dynamic-audioworklet-lifetime commit 7eb4241676d2f8ce87e9a5fc98598f4585966ebf Author: joeberkovitz <joe@noteflight.com> Date: Tue Sep 6 18:16:17 2016 -0400 Add ability to control AudioWorkletNode lifetime dynamically. index.html | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 54 insertions(+), 1 deletion(-) commit aeb25dc0106b83a12aa77c34aa89e2bfb4022cc0 Merge: 5ee9771 414197f Author: rtoy <toy.raymond@gmail.com> Date: Tue Sep 6 13:15:36 2016 -0700 Merge pull request #957 from WebAudio/956-remove-audio-worker Remove AudioWorker from spec Fixes #949 commit 414197f40cc6b2390383713ccc0045350cdd9f37 Author: joeberkovitz <joe@noteflight.com> Date: Tue Sep 6 14:01:07 2016 -0400 Remove AudioWorker from spec. index.html | 959 ++++--------------------------------------------------------- 1 file changed, 57 insertions(+), 902 deletions(-) commit 4b8eac9becbd9521f7ab88756956b3c277ed7ff2 Author: Paul Adenot <paul@paul.cx> Date: Tue Jun 21 10:53:58 2016 +0200 Fix algorithms so that the AudioParam for the listener are computed, and the equal-power is a-rate. This fixes #837. index.html | 170 ++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 89 insertions(+), 81 deletions(-) commit cc27443a8079490197ba48eebe8adc0bc947296f Author: Paul Adenot <paul@paul.cx> Date: Tue Jun 21 10:53:08 2016 +0200 Mention that AudioParam on PannerNode that uses HRTF should be k-rate. This fixes #837. index.html | 166 ++++++++++++++++++++++++++++++++++++++++--------------------- 1 file changed, 109 insertions(+), 57 deletions(-) commit 5ee9771c993b912dcf636ca0da8d93f12553469c Merge: efe159d 05aac24 Author: rtoy <toy.raymond@gmail.com> Date: Fri Sep 2 07:27:25 2016 -0700 Merge pull request #947 from rtoy/946-min-max-attr-of-audio-param Fix #946: Use minValue and maxValue commit 05aac24f7696b22ca4d732e448b509904bc59c3e Author: Raymond Toy <rtoy@chromium.org> Date: Thu Sep 1 10:59:56 2016 -0700 Fix #946: Use minValue and maxValue Replaces "min" and "max" with "minValue" and "maxValue", respectively. index.html | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) commit efe159dd4f1cd16c7ddfb11eb9439de89398b234 Merge: 3d08795 d3fbfc3 Author: rtoy <toy.raymond@gmail.com> Date: Thu Sep 1 10:32:14 2016 -0700 Merge pull request #927 from rtoy/926-highlight-nominal-range Fix #926: Link to nominal range, and rephrase other uses commit d3fbfc38308bcc862634c1a99ea0048001314f88 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Sep 1 10:29:21 2016 -0700 Run tidy. index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) commit 3d087958bc125c787d9cb52e5d17858653069888 Merge: 28ab588 6a21293 Author: rtoy <toy.raymond@gmail.com> Date: Thu Sep 1 10:26:52 2016 -0700 Merge pull request #899 from rtoy/883-construct-media-stream-audio-source Fix #883: Construct MediaStreamAudioSource commit c2905de036e168d95428153c3998af1baf6d3561 Merge: f801fd3 33d9298 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Sep 1 10:23:13 2016 -0700 Rebase and fix conflicts. commit f801fd31148c2f2e05a45b36021ce3a94880b1db Author: Raymond Toy <rtoy@chromium.org> Date: Thu Sep 1 10:20:44 2016 -0700 Fix typo: double period. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 28ab588d16312d2c8bcb8bb0f99767fd946dd297 Merge: 33d9298 389b08b Author: rtoy <toy.raymond@gmail.com> Date: Thu Sep 1 10:19:09 2016 -0700 Merge pull request #922 from rtoy/872-construct-audiobuffersource Fix #872: Construct AudioBufferSourceNode commit 6a21293456ebba6c957ebb3dde56e76f12ab7df6 Merge: 381d1d5 33d9298 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Sep 1 10:16:45 2016 -0700 Rebase and fix merge conflicts. commit 389b08b6726a311628bcc9972b7788d01922ac48 Merge: f7ff468 33d9298 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Sep 1 10:13:33 2016 -0700 Rebase and fix merge conflicts. commit 33d92986c9bf4ea0ce0aba1a9836ec70b4bff2d3 Merge: 774dd5e f6dd885 Author: rtoy <toy.raymond@gmail.com> Date: Thu Sep 1 10:09:23 2016 -0700 Merge pull request #941 from marcoscaceres/perf_improvements chore: performance improvements commit 6e0ad13c5a9577a0580ce65005caa1baaec2e1ca Author: Hongchan Choi <hongchan@chromium.org> Date: Mon Aug 29 14:23:48 2016 -0700 Addressing Joe`s feedback index.html | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) commit 774dd5ec748535ab06b31d5a506613658e0aebcb Merge: f90c36e 53364ac Author: Joe Berkovitz <joe@noteflight.com> Date: Mon Aug 29 15:47:02 2016 -0400 Merge pull request #928 from rtoy/925-nominal-range-graph Fix #925: Add graph for nominal range clipping commit f90c36e2d223aacb0d896ced733b905f0d86619e Merge: 98390fe 8ac6a29 Author: Joe Berkovitz <joe@noteflight.com> Date: Mon Aug 29 15:37:06 2016 -0400 Merge pull request #921 from rtoy/870-construct-audiobuffer Fix #870: Construct AudioBuffer commit 98390fefbe88d217c6876192fb51dafee73767de Merge: 4bccc20 2e06d5f Author: Joe Berkovitz <joe@noteflight.com> Date: Mon Aug 29 15:34:02 2016 -0400 Merge pull request #935 from rtoy/414-add-tail-time-ref Fix #414: Add tail-time note for each node. commit f6dd885a0f8e47a46ad7376bb826a54747575d58 Author: Marcos Caceres <marcos@marcosc.com> Date: Fri Aug 26 18:28:03 2016 +1000 chore(index): tidy up index.html | 70 ++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 36 insertions(+), 34 deletions(-) commit 2a1584b5065566dd0405d48e895f0feb0316af40 Author: Marcos Caceres <marcos@marcosc.com> Date: Tue Aug 23 17:47:56 2016 +1000 chore: preload mathjax deps index.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) commit 18a4028e19669a0df6d2d466bbaddceddd8472f0 Author: Marcos Caceres <marcos@marcosc.com> Date: Tue Aug 23 17:38:27 2016 +1000 chore: preload MathJax as script for perf index.html | 4 ++++ 1 file changed, 4 insertions(+) commit 60ec70145d93a28a330e9b3ef4c0d9cead5f0a91 Author: Marcos Caceres <marcos@marcosc.com> Date: Tue Aug 23 17:31:01 2016 +1000 chore: add width/height to img tags index.html | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) commit 26cf95bbe68dceafaaeb05728576ca1c99d84a59 Author: Marcos Caceres <marcos@marcosc.com> Date: Tue Aug 23 17:19:13 2016 +1000 chore: compress images images/HRTF_panner.png | Bin 39207 -> 16473 bytes images/audioparam-automation1.png | Bin 55775 -> 22792 bytes images/channel-merger.png | Bin 22912 -> 9507 bytes images/channel-splitter.png | Bin 29877 -> 13441 bytes images/dj.png | Bin 8707 -> 3530 bytes images/drum-machine.png | Bin 29378 -> 8612 bytes images/dynamic-allocation.png | Bin 29086 -> 13941 bytes images/fft-convolver.png | Bin 51995 -> 23541 bytes images/impulse-response.png | Bin 63181 -> 30982 bytes images/latency.png | Bin 43501 -> 24855 bytes images/mixer-architecture-new.png | Bin 13992 -> 5436 bytes images/mixer-architecture-old.png | Bin 18575 -> 6735 bytes images/mixer-gain-structure.png | Bin 50753 -> 22966 bytes images/modular-routing1.png | Bin 7417 -> 3259 bytes images/modular-routing2.png | Bin 44599 -> 15903 bytes images/modular-routing3.png | Bin 18639 -> 5878 bytes images/reverb-convolver.png | Bin 107008 -> 55467 bytes images/reverb-matrixing.png | Bin 68867 -> 29249 bytes images/unity-gain-summing-junction.png | Bin 12015 -> 4540 bytes images/visualizer-gl-old.png | Bin 42273 -> 23568 bytes images/visualizer2-gl.png | Bin 206820 -> 101259 bytes 21 files changed, 0 insertions(+), 0 deletions(-) commit 403c66a40eee9511ff69ca8a5aa820b5262e5685 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Aug 25 10:44:21 2016 -0700 adding ECMA style algorithm for AWGS index.html | 130 ++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 69 insertions(+), 61 deletions(-) commit 17dcecb156ce4e71bdfc4ad889e29faf79cc5412 Merge: 06737ca 4bccc20 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Aug 25 10:08:09 2016 -0700 Bringing ToT. commit 4bccc20dc05f0334006695be50652ac24abda342 Merge: f1f68c8 2c9efc5 Author: rtoy <toy.raymond@gmail.com> Date: Thu Aug 25 08:16:37 2016 -0700 Merge pull request #943 from dontcallmedom/webild-typo2 Fix typo in interface name commit f1f68c898eb6979a324d38b05816b6daeb61a6fb Merge: f328003 3e4b4f3 Author: Joe Berkovitz <joe@noteflight.com> Date: Thu Aug 25 10:02:45 2016 -0400 Merge pull request #940 from hoch/gh-pages Refining AudioWorklet introduction commit 2c9efc53c8a62ffa1df969a4bb3c094ca2a0e4d5 Author: Dominique Hazael-Massieux <dom@w3.org> Date: Thu Aug 25 15:01:13 2016 +0200 Fix "Object" into "object" in WebIDL declaration index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit c5d67b14406af0b6544ad929579a08e766d385b9 Author: Dominique Hazael-Massieux <dom@w3.org> Date: Thu Aug 25 14:58:33 2016 +0200 Fix another type in WebIDL interface name index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit c2d219485ddc74e0bb720b1101bad67ab4bd4927 Author: Dominique Hazael-Massieux <dom@w3.org> Date: Thu Aug 25 14:55:47 2016 +0200 Fix typo in interface name index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 3e4b4f3410b63eed0e805bb6cd769c1520fcf738 Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Aug 24 13:34:53 2016 -0700 Update the concept diagram per Joe`s comment images/audioworklet-concept.png | Bin 21738 -> 22401 bytes images/audioworklet.graffle | Bin 3135 -> 3114 bytes index.html | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) commit 7154ff478dd7b871ae47aafacd8f255e9b966337 Author: Hongchan Choi <hongchan@chromium.org> Date: Tue Aug 23 13:47:19 2016 -0700 Adding the original project file for the diagram images/audioworklet.graffle | Bin 0 -> 3135 bytes 1 file changed, 0 insertions(+), 0 deletions(-) commit b90bc6712f76fa4c2a7c95e4b26909c38db9a7c1 Author: Hongchan Choi <hongchan@chromium.org> Date: Tue Aug 23 13:46:58 2016 -0700 Addressing feedback from rtoy and joe images/audioworklet-concept.png | Bin 17274 -> 21738 bytes index.html | 61 ++++++++++++++++++++++------------------ 2 files changed, 34 insertions(+), 27 deletions(-) commit 2434bc5cdb6154e2d6be5f656bcc66e82da85bcd Merge: 0300ac1 bf1b798 Author: Hongchan Choi <hongchan@chromium.org> Date: Tue Aug 23 11:47:18 2016 -0700 Merge branch 'worklet-intro' into gh-pages commit bf1b798e2d6b9202f1ebd8620ccbe6cdb28da904 Author: Hongchan Choi <hongchan@chromium.org> Date: Tue Aug 23 11:47:00 2016 -0700 addressing joe`s feedback: typo fixed index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 06737cadb2170906c6e84ddf640428b8dbeaf1df Author: Hongchan Choi <hongchan@chromium.org> Date: Tue Aug 23 11:28:29 2016 -0700 initial commit: rearranged awgs section, added a detailed algorithm for the regestiration process index.html | 150 ++++++++++++++++++++++++++++++++++++++++--------------------- 1 file changed, 100 insertions(+), 50 deletions(-) commit 0300ac19ca92b718e123d60f7c2b31c496f22264 Author: Hongchan Choi <hongchan@chromium.org> Date: Mon Aug 22 11:42:14 2016 -0700 Applyied the new version of Tidy index.html | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) commit 051b6e1ddde90cea1cbe34942a9046a84ad5de17 Author: Hongchan Choi <hongchan@chromium.org> Date: Mon Aug 22 11:26:43 2016 -0700 Added an informative diagram images/audioworklet-concept.png | Bin 0 -> 17274 bytes 1 file changed, 0 insertions(+), 0 deletions(-) commit e77c98b8db97108c9b3e547b7e564b12767927dd Author: Hongchan Choi <hongchan@chromium.org> Date: Mon Aug 22 11:24:54 2016 -0700 Refining the AudioWorklet introduction index.html | 103 ++++++++++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 74 insertions(+), 29 deletions(-) commit f32800396d8b4c5a31e1f3c77b3333458a0fe571 Merge: 5cadcb2 f68a449 Author: rtoy <toy.raymond@gmail.com> Date: Mon Aug 22 08:02:48 2016 -0700 Merge pull request #939 from dontcallmedom/webidl-typo Fix name of Constructor extended attribute for DelayNode commit f68a449472d5bd88ddacb1f0fb7847aa49f61cd3 Author: Dominique Hazael-Massieux <dom@w3.org> Date: Mon Aug 22 14:27:35 2016 +0200 Fix name of Constructor extended attribute for DelayNode index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 5cadcb22e169146f20b9bce9c66daf6ed5cff645 Merge: ca1a380 75ca59f Author: Hongchan Choi <hongchan.choi@gmail.com> Date: Fri Aug 19 10:50:14 2016 -0700 Merge pull request #869 from hoch/gh-pages Add AudioWorklet section commit 2e06d5fa38ce254d150927736893fbb05dd10b8f Author: Raymond Toy <rtoy@chromium.org> Date: Mon Aug 15 10:34:15 2016 -0700 Run tidy. index.html | 127 +++++++++++++++++++++++++++++++------------------------------ 1 file changed, 64 insertions(+), 63 deletions(-) commit 25e4ad0fc40ff0ef6c5517cfa13082bd93b06bdb Author: Raymond Toy <rtoy@chromium.org> Date: Mon Aug 15 10:32:03 2016 -0700 Add tail-time note for each node. For each node, make a note if the node has a tail-time reference if the node produces non-zero output for silent input. index.html | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 64 insertions(+), 1 deletion(-) commit ca1a380209481f7c7f929014b2d8cb9ab99a58cf Merge: d513d6b 86fad4c Author: rtoy <toy.raymond@gmail.com> Date: Mon Aug 15 09:59:12 2016 -0700 Merge pull request #934 from rtoy/fix-spelling-errors Fix a few spelling mistakes. commit 86fad4c4ad4d49710cc77d1ecd5e7641907e5f59 Author: Raymond Toy <rtoy@chromium.org> Date: Mon Aug 15 09:40:17 2016 -0700 Run tidy. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 8b8d4e08fd9cd0a08dadfc73a5232193c0bdf5cb Author: Raymond Toy <rtoy@chromium.org> Date: Mon Aug 15 09:30:46 2016 -0700 Fix a few spelling mistakes. index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit d513d6befbf5e9b8d973e9ddc6ee3311c5e2163b Merge: 48f541b a9a69c9 Author: rtoy <toy.raymond@gmail.com> Date: Wed Aug 10 10:19:58 2016 -0700 Merge pull request #933 from rtoy/932-specify-default-biquad-type Fix #932: specify default type for BiquadFilter commit a9a69c9055384208566b0961b8c28d893bb4d2a4 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Aug 10 10:13:22 2016 -0700 Run tidy. index.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) commit 55a735ad67db3d51549be971905ae3091fcb58df Author: Raymond Toy <rtoy@chromium.org> Date: Wed Aug 10 10:09:16 2016 -0700 Fix #932: specify default type for BiquadFilter Specify the default type for a BiquadFilter in the description of the type attribute. index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 48f541bafbf9bf5be1f3a5fecaf54a7ae327d7b7 Merge: e30b9b2 3314d43 Author: rtoy <toy.raymond@gmail.com> Date: Wed Aug 10 09:56:55 2016 -0700 Merge pull request #897 from rtoy/881-construct-media-element-audio-source Fix #881: Construct MediaElementAudioSource commit 75ca59fc82e3fca5530e0a17eb81c98fc5ab2afa Author: Hongchan Choi <hongchan@chromium.org> Date: Fri Aug 5 14:56:57 2016 -0700 addressing feedback from domenic - part 1 index.html | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) commit 53364ac1e6fb07b1cdf7affb0df86c6cc6d494ca Author: Raymond Toy <rtoy@chromium.org> Date: Fri Aug 5 08:23:12 2016 -0700 Run tidy. index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) commit d66ffdd2f7d45568fe1e3d91fe97df72866976fb Merge: 4f19379 e30b9b2 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Aug 4 16:19:04 2016 -0700 merging with upstream commit 4f193791e77d6c13794129825519a044f6738226 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Aug 4 16:16:20 2016 -0700 addressing feedback from Paul (part 1) index.html | 91 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 45 insertions(+), 46 deletions(-) commit f78e0639c8099564402720336a0b8e8490aa0781 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Aug 4 15:52:51 2016 -0700 Fix #925: Add graph for nominal range clipping Add a graph illustrating how clipping to nominal range works for AudioParams. images/audioparam-automation-clipping.png | Bin 0 -> 24146 bytes index.html | 20 +++++++++++++++++--- 2 files changed, 17 insertions(+), 3 deletions(-) commit e30b9b21163f75453a195724aab0501d8d8de835 Merge: 84b88b0 e482984 Author: rtoy <toy.raymond@gmail.com> Date: Thu Aug 4 10:09:53 2016 -0700 Merge pull request #889 from rtoy/874-construct-convolver Fix #874: Construct ConvolverNode. commit 649214cb0bd79febedcee6a3058ab8dfb725f154 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Aug 4 10:08:30 2016 -0700 Fix #926: Link to nominal range, and rephrase other uses Some parts where missing links to nominal range, so add them. In some places the use of nominal range could be confused with the defined term, so rephrase it to make it less confusing. index.html | 45 +++++++++++++++++++++++---------------------- 1 file changed, 23 insertions(+), 22 deletions(-) commit 84b88b08a5293909dab13ee88d8a89b98d8fc2f0 Merge: 1112fcb 5115f06 Author: rtoy <toy.raymond@gmail.com> Date: Wed Aug 3 11:46:52 2016 -0700 Merge pull request #890 from rtoy/875-construct-delay Fix #875: Construct DelayNode commit 5115f06eb120105b739841dbf0747237bc6335d4 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Aug 3 11:40:30 2016 -0700 Update according to review, with some editorial changes. Set maxDelayTime to default to 1. The DelayOptions section should be a subsection of the DelayNode interface. Add a mention of the maxDelayTime member of the attribute to the description of the delayTime attribute of the node. This description mentioned the parameter for the factory method, so we should a one for the constructor dictionary. index.html | 54 ++++++++++++++++++++++++++++-------------------------- 1 file changed, 28 insertions(+), 26 deletions(-) commit e482984be37e3c409e5a6d018fbf5cd9290a7971 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Aug 3 11:28:21 2016 -0700 Rename AudioNodeChannelOptions and add link. It's AudioNodeOptions now, and added a link to the normalize attribute. index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) commit 1112fcbea87563137adfc2cc7da3458014a3290a Merge: 760c459 ab41805 Author: rtoy <toy.raymond@gmail.com> Date: Wed Aug 3 08:48:09 2016 -0700 Merge pull request #898 from rtoy/882-construct-media-stream-audio-destination Fix #882: Construct MediaStreamAudioDestination commit ab41805c0986b9005cc8adeaebe6f92b6b636275 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Aug 3 08:43:56 2016 -0700 Rename AudioNodeChannelOptions to AudioNodeOptions. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit f7ff4685e7cdf410dbc5b2ef4ce84037f8490f55 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 14:56:04 2016 -0700 Fix #872: Construct AudioBufferSourceNode Add constructor for AudioBufferSourceNode and an optional dictionary for specifying the constructor options. index.html | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 65 insertions(+), 1 deletion(-) commit 8ac6a2911289406f6b34ea6b1b4a9006f8cef11b Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 14:38:37 2016 -0700 Run tidy. index.html | 65 ++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 34 insertions(+), 31 deletions(-) commit ee0823c7d289b9d4721890e35a37371c1527bd98 Merge: e9f77e9 760c459 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 14:37:55 2016 -0700 Merge branch 'gh-pages' into 870-construct-audiobuffer commit 760c459d3578e28f4a16864ae27e0270c367fa8b Merge: 0e45143 ba655be Author: rtoy <toy.raymond@gmail.com> Date: Tue Aug 2 14:36:55 2016 -0700 Merge pull request #920 from rtoy/918-fix-typo-state-changed Fix #918: fix typo in statechange commit ba655be744c312393bc3fd0a31e499782f959cc0 Merge: 42c5963 0e45143 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 14:30:18 2016 -0700 Merge branch 'gh-pages' into 918-fix-typo-state-changed commit e9f77e9cacf766e2c6fddee3b516c55d257c38a6 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 14:14:34 2016 -0700 Fix #870: Construct AudioBuffer Construct an AudioBuffer, defining an appropriate AudioBufferOptions dictionary. This dictionary is required. index.html | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) commit 42c596318e15fde6d39b89046cb07c5b250d0e52 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 13:53:35 2016 -0700 Fix #918: Fix typo in "statechange". "statechanged" -> "statechange". index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 4eac2655cbd73f0cb5c9a942d9482cb0eb86c5fb Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 09:32:40 2016 -0700 Rename AudioNodeChannelOptions to AudioNodeOptions. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 91f27a1424800271660c6b00008644ae2d9ecfb7 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 09:25:48 2016 -0700 Rename AudioNodeChannelOptions to AudioNodeOptions. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit c45d6a292cb5613af212bfd41de1921f2e27ef87 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 09:23:29 2016 -0700 Rename AudioNodeChannelOptions to AudioNodeOptions. index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) commit 2c734cf1514d10af81ad1e7104c3abc0f43f1435 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 09:20:20 2016 -0700 Rename AudioNodeChannelOptions to AudioNodeOptions. index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) commit 08ebf70c4bfa187877f1017271a41ec5ae3804bd Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jul 7 11:27:28 2016 -0700 Fix #880: Construct WaveShaper Add constructor and define dictionary of options. index.html | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) commit 33169f32f322e1d2f1a6e8a4730117eee5f9bd33 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jul 7 11:20:24 2016 -0700 Fix #879: Construct StereoPanner Add constructor and define dictionary of options. index.html | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) commit 997a7bca1b4c921a48d9f9b26be367a2b2d6fdda Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jul 7 11:14:18 2016 -0700 Fix #878: Construct PannerNode Add constructor and define dictionary of options. index.html | 126 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 124 insertions(+), 2 deletions(-) commit b5c617d1d9e99a5896e6cb8610c56ade2ba3b9b9 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jul 7 11:00:21 2016 -0700 Fix #877: Construct GainNode Add constructor and define dictionary of options. index.html | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) commit 0e45143134ff842d55dae85d4b42c00b61492827 Merge: e32b3b1 3a04ca3 Author: rtoy <toy.raymond@gmail.com> Date: Tue Aug 2 09:38:49 2016 -0700 Merge pull request #896 from rtoy/880-construct-waveshaper Fix #880: Construct WaveShaper commit 3a04ca3af6bdbbcf0b232dd233f3e0f7c085207c Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 09:32:40 2016 -0700 Rename AudioNodeChannelOptions to AudioNodeOptions. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit e32b3b1eaf021dfa5cf884edff2a57cd28086755 Merge: 6fc2275 1a986d0 Author: rtoy <toy.raymond@gmail.com> Date: Tue Aug 2 09:30:46 2016 -0700 Merge pull request #895 from rtoy/879-construct-stereopanner Fix #879: Construct StereoPanner commit 6fc2275738d4b0cbb39b47280c20573f5c6c9adf Merge: 86f2c14 6ed7485 Author: rtoy <toy.raymond@gmail.com> Date: Tue Aug 2 09:30:32 2016 -0700 Merge pull request #894 from rtoy/878-construct-panner Fix #878: Construct PannerNode commit 1a986d0ab2974bf2ae90630c8ae4866014de02be Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 09:25:48 2016 -0700 Rename AudioNodeChannelOptions to AudioNodeOptions. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 6ed7485ecadb28cd728f1070afd3064603dfe7ad Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 09:23:29 2016 -0700 Rename AudioNodeChannelOptions to AudioNodeOptions. index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) commit 86f2c14409ac2e6b5f9d2e4c386340b69bed2975 Merge: c6def97 dbd28a8 Author: rtoy <toy.raymond@gmail.com> Date: Tue Aug 2 09:22:56 2016 -0700 Merge pull request #893 from rtoy/877-construct-gain Fix #877: Construct GainNode commit dbd28a8293eb09ca36bf0d563c2d70234d9f666c Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 09:20:20 2016 -0700 Rename AudioNodeChannelOptions to AudioNodeOptions. index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) commit c6def979ba34eab64ef5c2ccb351c5cefa26c361 Merge: 8e75e9f 46fdf6b Author: rtoy <toy.raymond@gmail.com> Date: Tue Aug 2 08:43:49 2016 -0700 Merge pull request #891 from rtoy/876-construct-dynamicscompressor Fix #876: Construct DynamicsCompressorNode commit 8e75e9fd884fc5870cd8ef2363998c45a8204d18 Merge: 5710511 8bd28fc Author: rtoy <toy.raymond@gmail.com> Date: Tue Aug 2 08:36:08 2016 -0700 Merge pull request #888 from rtoy/873-construct-biquad Fix #873: Construct BiquadFilterNode commit 46fdf6b3e26d827051b91a10a6afda32c64e5b66 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 08:35:47 2016 -0700 Run tidy. index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) commit 67c753b5971faa5f9dde787333da7e1ce2d18851 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 08:35:21 2016 -0700 Rename AudioNodeChannelOptions to AudioNodeOptions. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 8bd28fcdde2ed864312b9ef8182468947912c657 Merge: 91a7566 5710511 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 08:31:58 2016 -0700 Merge branch 'gh-pages' into 873-construct-biquad commit 5710511fbc2aa7a32754993837c67d49dc56337f Merge: 30fb76a 9ec3bc2 Author: rtoy <toy.raymond@gmail.com> Date: Tue Aug 2 08:30:58 2016 -0700 Merge pull request #885 from rtoy/871-construct-analyser Fix #871: Constructor for AnalyserNode commit 91a75664e246b4c7940fdfd7bc7f7a5274b6b14e Merge: 8da004f 30fb76a Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 08:27:57 2016 -0700 Merge branch 'gh-pages' into 873-construct-biquad commit 9ec3bc2dbeadf63db83a63527db100cb8c9f1bd7 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 08:27:09 2016 -0700 Merge and run tidy. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 3ea5d6deef6f0b711c1a7afd6cf6d325bca15684 Merge: e16afb5 30fb76a Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 08:26:47 2016 -0700 Merge branch 'gh-pages' into 871-construct-analyser commit e16afb527107dd1da45b366abe03c734d35d798a Merge: 10ed19d c16c817 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 08:25:52 2016 -0700 Merge branch 'gh-pages' into 871-construct-analyser commit 8da004f7d083702d23ec59f4f6bdeb93dde79e36 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 08:23:12 2016 -0700 Run tidy. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit df13577309934396d73a5dacb42c098a5ff01f2f Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 08:22:52 2016 -0700 Rename AudioNodeChannelOptions to AudioNodeOptions. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 10ed19dc4cdc6c91498f0bb8611057ccef6af5be Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 08:20:43 2016 -0700 Run tidy. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 1feda1e15c977225a62c5c58d9d3edf6f6b484aa Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 08:11:29 2016 -0700 Rename AudioNodeChannelOptions to AudioNodeOptions. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 30fb76ab1f335b2c60a08c32f2e74ed0c061f758 Merge: 6fde083 4b0d850 Author: rtoy <toy.raymond@gmail.com> Date: Tue Aug 2 08:09:45 2016 -0700 Merge pull request #868 from rtoy/703-construct-periodicwave Fix #703: Add constructor for PeriodicWave. commit 6fde083b46203f56cd3e2c6572a4abe34c3afc90 Merge: 3e04879 9bf5f31 Author: rtoy <toy.raymond@gmail.com> Date: Tue Aug 2 08:06:43 2016 -0700 Merge pull request #867 from rtoy/702-contruct-oscillator Fix #702: Add constructor for OscillatorNode. commit 9bf5f314d18bea2386af541702a7678bc1ccbc53 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 08:04:44 2016 -0700 Run tidy. index.html | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) commit 85f06cf574c475c0883359517c462f77fcdcb9a6 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 08:04:16 2016 -0700 Fix typo in dicitionary. The dictionary key named "type" was erroneously declared to be of type Oscillator. It should be OscillatorType. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit ce9a6338a26dc9c81ff04ca5555c25fcc10fcb1e Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 08:02:55 2016 -0700 Rename AudioNodeChannelOptions to AudioNodeOptions. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 3e04879b5a5895fd8fd68ba8cdbc5ba5a832698c Merge: c16c817 0dfcfd5 Author: rtoy <toy.raymond@gmail.com> Date: Tue Aug 2 08:01:14 2016 -0700 Merge pull request #866 from rtoy/701-construct-iirfilter Fix #701: Add constructor for IIRFilterNode commit 0dfcfd514dda648d24739881eb39d467e49be4e9 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 08:00:42 2016 -0700 Rename AudioNodeChannelOptions to AudioNodeOptions. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 752454df37084313a9deb80fc8bb94e8b4d414c3 Merge: 563c64b c16c817 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 07:58:52 2016 -0700 Merge branch 'gh-pages' into 701-construct-iirfilter Fix conflicts too. commit c16c8178594603f9c82fcf5c0745d34c59d2894b Merge: 01039bc 1a9b19a Author: rtoy <toy.raymond@gmail.com> Date: Tue Aug 2 07:55:38 2016 -0700 Merge pull request #865 from rtoy/700-construct-channel-merger/splitter Fix #700: Add constructor for ChannelMergerNode and ChannelSplitterNode commit 1a9b19a928f8bb76f4340ec3a5fe9bce36be813f Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 07:46:24 2016 -0700 Nest the dictionary sections into the sections. Minor editorial fix. The sections for the dictionaries should be sub-sections of the node interface section. index.html | 58 ++++++++++++++++++++++++++++++---------------------------- 1 file changed, 30 insertions(+), 28 deletions(-) commit e3abb2a6c602c6ab181e420fd30fef560f05267f Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 07:32:00 2016 -0700 Rename AudioNodeChannelOptions to AudioNodeOptions. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 1eba1d47591c8c35579ddd8df83f8e059edd5956 Merge: 9f0cf3b 01039bc Author: Raymond Toy <rtoy@chromium.org> Date: Tue Aug 2 07:30:41 2016 -0700 Merge branch 'gh-pages' into 700-construct-channel-merger/splitter commit 01039bcd7c28fc80ae9197f70927f01019217c9d Merge: 3b87c5f ad86d8e Author: rtoy <toy.raymond@gmail.com> Date: Mon Aug 1 08:08:10 2016 -0700 Merge pull request #917 from rtoy/901-remove-incorrect-value-setter-clause Fix #901: Remove incorrect value setter clause. commit 3b87c5fedacca5539c2747c3d004a7915f46d7d2 Merge: d793556 d3c9557 Author: rtoy <toy.raymond@gmail.com> Date: Mon Aug 1 08:05:11 2016 -0700 Merge pull request #863 from rtoy/697-audio-node-channel-options Fix #697: AudioNode channel options dictionary commit ad86d8e8cc56ad87a308d1f0928b1da361a634b2 Author: Raymond Toy <rtoy@chromium.org> Date: Mon Aug 1 08:04:37 2016 -0700 Run tidy. index.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) commit d3c9557ef3e98e498e997809d2f052a094776ee5 Author: Raymond Toy <rtoy@chromium.org> Date: Mon Aug 1 08:00:37 2016 -0700 Rename AudioNodeChannelOptions to AudioNodeOptions. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 22bb382551600d00825bf9a99cf152d4c2753e81 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jul 28 14:38:00 2016 -0700 Run tidy. index.html | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) commit 29db53f4ae45b936c58709153ea0e52490a4e2de Merge: daf4df8 d793556 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jul 28 14:34:05 2016 -0700 Merge branch 'gh-pages' into 367-constant-source-node # Conflicts: # index.html commit 8895c99a9bd2029fb2d87f3570015ed20c1f47e1 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jul 28 13:19:56 2016 -0700 Fix #901: Remove incorrect value setter clause. Setting the value attribute shouldn't remove events from the timeline; nobody does that and this conflicts with the idea that the setter is the same as calling setValueAtTime(). index.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) commit d793556fb4e1a714b172dcb1033ba30928fd5441 Merge: f7591cc 5f3523f Author: Paul Adenot <paul@paul.cx> Date: Wed Jul 27 14:29:50 2016 +0200 Merge pull request #910 from rtoy/907-correct-up-and-forward-values Fix #907: Define initial up and forward vectors correctly. commit f7591ccd92cd302213d972157710a615fa89884e Merge: bc54b71 3e9ff1c Author: Paul Adenot <paul@paul.cx> Date: Wed Jul 27 12:19:44 2016 +0200 Merge pull request #914 from rtoy/903-osc-start-clarification Fix #903: Clarify Oscillator.start()/stop() commit bc54b71a312f2659827581686abad88a4f6eb7ae Merge: a0b739d d484764 Author: Paul Adenot <paul@paul.cx> Date: Wed Jul 27 12:19:39 2016 +0200 Merge pull request #913 from rtoy/912-fix-text-for-absn-stop Fix #912: Fix text for stop() for AudioBufferSourceNode commit a0b739d9da30174069798269fcd4ffa09b6283bf Merge: d31a873 030b93e Author: Paul Adenot <paul@paul.cx> Date: Wed Jul 27 12:12:25 2016 +0200 Merge pull request #911 from rtoy/909-clarify-setposition/orientation Fix #909: Clarify setPosition/setOrientation text commit 3e9ff1c0e163a5c6d091ad7a953b781b0be26398 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Jul 26 11:45:13 2016 -0700 Reference AudioBufferSourceNode more. index.html | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) commit d4847649fed508d3917d2bd43f913619335ed8a3 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Jul 26 11:31:07 2016 -0700 Fix #912: Fix text for stop() for AudioBufferSourceNode The description of the when parameter described what happens with multiple calls to stop(). This is wrong. Move this text to the paragraph describing the stop() method. index.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) commit ef88fd6897d917031df68eca207e6198425df0b4 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Jul 26 11:24:44 2016 -0700 Fix #903: Clarify Oscillator.start() Clarify the text for start and stop methods along with the description of the parameters for these methods. Mostly just reference the corresponding methods/parameters from AudioBufferSource. index.html | 30 ++++++++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) commit 030b93e97b6db1fd31eba3008b46903356d3604b Author: Raymond Toy <rtoy@chromium.org> Date: Tue Jul 26 10:22:37 2016 -0700 Fix #909: Clarify setPosition/setOrientation text Clarify the text for setPosition/setOrientation to say that we're setting the values of the corresponding AudioParam's, not the AudioParam itself. index.html | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) commit 5f3523fd6db5bf60a5421eb472e2f8536162cde9 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Jul 26 10:15:11 2016 -0700 Fix #907: Define initial up and forward vectors correctly. Set the initial values for the up and forward vectors correctly. This was a mistake introduced in adding the up and forward AudioParams. Also took the opportunity to move some of the descriptive text out of forwardX and upX to the introduction paragraph to describe forward and up vectors better. They didn't really belong there anyway. And this makes the description of each component uniform so it's easier to read and find the default values. Finally, add a dfn entry for the Spatialization/Panning section so that it's easier to refer to. Updated links in the listener section appropriately. index.html | 59 ++++++++++++++++++++++++++--------------------------------- 1 file changed, 26 insertions(+), 33 deletions(-) commit b90832134ec0ca31b591dc5af332a76912a799de Author: Hongchan Choi <hongchan@chromium.org> Date: Mon Jul 18 13:26:42 2016 -0700 wating for feedback from joe index.html | 84 +++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 48 insertions(+), 36 deletions(-) commit 5cea8613978b993ab1a08260c961309d4f75c81c Author: Hongchan Choi <hongchan@chromium.org> Date: Tue Jul 12 09:09:30 2016 -0700 addressed feedback from rtoy index.html | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) commit daf4df81611f5996d1fd0be3c791b4e6d8987a80 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jul 7 14:41:18 2016 -0700 Add methods start() and stop() and onended attribute. This makes it look like a normal source node like AudioBufferSource and Oscillator. index.html | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 57 insertions(+), 2 deletions(-) commit 85a813813f38ea5a65045ec9003b3ed8928f4b9a Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jul 7 14:19:30 2016 -0700 Fix #367: Define ConstantSourceNode Defines a constant source node with one audio param defining the output value of the source node. This node can be used in place of a constructible AudioParam. index.html | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) commit 4f479a239e8bef0063db488ebc94066d48f25722 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Jul 7 14:02:32 2016 -0700 fixing typos index.html | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) commit d31a873469bd5c3b6006c00f398b8c99eaaf4f82 Merge: b3c914b efa3372 Author: rtoy <toy.raymond@gmail.com> Date: Thu Jul 7 12:49:01 2016 -0700 Merge pull request #846 from WebAudio/737-render-quantum Define the term "render quantum" and link back to the definition. Fix #737. commit b3c914b52c283fb96d3f98720d22bdb780af0ce6 Merge: 34d94cc 8449641 Author: rtoy <toy.raymond@gmail.com> Date: Thu Jul 7 12:45:21 2016 -0700 Merge pull request #900 from rtoy/892-update-tidy-version Fix #892: Update tidy version to 5.2.0. commit 8449641e53c84e17b11abf833ad4df39cab664bb Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jul 7 11:49:49 2016 -0700 Update tidy version to 5.2.0. Check the repo using the tag 5.2.0. Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 381d1d5ca33e06232afa516d068c6fe0da860cf2 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jul 7 11:47:04 2016 -0700 Fix #883: Construct MediaStreamAudioSource Add constructor and dictionary. index.html | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) commit feb33228ec9c4d02f901c17036c4869530dcbe04 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jul 7 11:41:11 2016 -0700 Fix #882: Construct MediaStreamAudioDestination Add constructor. index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 3314d43c88bc21903194e82a691f47b9c3307ad7 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jul 7 11:35:49 2016 -0700 Fix #881: Construct MediaElementAudioSource Add constructor and define dictionary of options. index.html | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) commit e1b5b7cd33a84914580603d504070ed25ff9471a Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jul 7 11:27:28 2016 -0700 Fix #880: Construct WaveShaper Add constructor and define dictionary of options. index.html | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) commit 6fbfada199cf6b4697b4dc6da9c55ccda24b1d44 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jul 7 11:20:24 2016 -0700 Fix #879: Construct StereoPanner Add constructor and define dictionary of options. index.html | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) commit 550f9e4f3b8440724035d22a0b6995189fed64e3 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jul 7 11:14:18 2016 -0700 Fix #878: Construct PannerNode Add constructor and define dictionary of options. index.html | 126 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 124 insertions(+), 2 deletions(-) commit aa51a966e5247ba20e4cb24a6366fd82f291771b Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Jul 7 11:06:21 2016 -0700 remove redundant header index.html | 3 --- 1 file changed, 3 deletions(-) commit 721064f2eecffdd1ef883faa08f63561b26fb9e9 Author: Hongchan Choi <hongchan@chromium.org> Date: Thu Jul 7 11:02:44 2016 -0700 addressing feedback from the first pass review index.html | 190 ++++++++++++++++++++++++++++++------------------------------- 1 file changed, 95 insertions(+), 95 deletions(-) commit 92421bb7a30ecb60fa126bbbcf24bb78f50fc072 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jul 7 11:00:21 2016 -0700 Fix #877: Construct GainNode Add constructor and define dictionary of options. index.html | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) commit a9d92b75839fc2f096ca6211ed43a04e898c0f21 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jul 7 10:36:32 2016 -0700 Fix #876: Construct DynamicsCompressorNode Add constructor and define dictionary of options. index.html | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 58 insertions(+), 1 deletion(-) commit c5d539687c660e21b7b1edb2a0e635d5c1f228b8 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Jul 6 09:17:45 2016 -0700 Run tidy. index.html | 50 ++++++++++++++++++++++++++------------------------ 1 file changed, 26 insertions(+), 24 deletions(-) commit f37dcdd13ceefda114c84efa8118b9e77235a820 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Jul 6 09:16:44 2016 -0700 Fix #875: Construct DelayNode Add constructor and define the options dictionary. index.html | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) commit 8e37c9ba259b6f02301f970c1323a9f686ee617e Author: Raymond Toy <rtoy@chromium.org> Date: Wed Jul 6 09:10:43 2016 -0700 Run tidy. index.html | 63 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 32 insertions(+), 31 deletions(-) commit 0dc24219d311ffd982eaea599ce7449229b4a54f Author: Raymond Toy <rtoy@chromium.org> Date: Wed Jul 6 08:46:22 2016 -0700 Run tidy. index.html | 93 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 47 insertions(+), 46 deletions(-) commit 9d2a1b99a156835f04173d37f40412fa096cc093 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Jul 6 08:43:27 2016 -0700 Fix #874: Construct ConvolverNode. Add constructor and define the options dictionary. index.html | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) commit f401a5f0b7875b1f8e78c97115675450f7f608cb Author: Raymond Toy <rtoy@chromium.org> Date: Wed Jul 6 08:26:56 2016 -0700 Fix #873: Construct BiquadFilterNode Add constructor and define the options dictionary. index.html | 47 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) commit 34d94cc2d685009512008169330b8ca42b1f4355 Merge: 2b827f2 b59f1e6 Author: rtoy <toy.raymond@gmail.com> Date: Wed Jul 6 08:01:35 2016 -0700 Merge pull request #887 from rtoy/tidy-after-2b827f2 Run tidy after commit 2b827f2 commit b59f1e62022eb2300df7f244aa418b6e5fbe7a3b Author: Raymond Toy <rtoy@chromium.org> Date: Wed Jul 6 07:35:25 2016 -0700 Run tidy after commit 2b827f2 index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 2b827f23cf6daeadea3c85a99335fa5b2a12e025 Merge: 2c51672 c8f25a8 Author: rtoy <toy.raymond@gmail.com> Date: Wed Jul 6 07:33:51 2016 -0700 Merge pull request #886 from mark-buer/patch-1 Fix minor grammatical error commit c8f25a8df69067a7c7543c0d9a065cc9916e137e Author: Mark Buer <mark.buer+github@gmail.com> Date: Wed Jul 6 15:37:40 2016 +0930 Fix minor grammatical error Replace "Because Web Audio can allows one to inspect the content ..." with "Because Web Audio allows inspection of the content ...". index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 2c51672867740f081b8dcc8fa16b7d10531ed6dd Merge: a25fe37 3225f5d Author: Paul Adenot <paul@paul.cx> Date: Fri Jul 1 14:47:22 2016 +0200 Merge pull request #859 from rtoy/823-define-baselatency-better Fix #823: Refine definition of baseLatency commit efa3372788dd96900cedb7d9bc58b6942e5530d6 Author: Paul Adenot <paul@paul.cx> Date: Tue Jun 21 11:31:56 2016 +0200 Define the term "render quantum" and link back to the definition. This fixes #737. index.html | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) commit 97f6464ea5e308773d99278a069df690ec6f22a8 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jun 30 11:41:20 2016 -0700 Tidy. index.html | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) commit a59a22a19bd279ca22733dc892e890ebdaebb107 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jun 30 11:40:12 2016 -0700 Fix #871: Constructor for AnalyserNode index.html | 39 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) commit afd34a4f84f50235e7813dab9307e87873c16c08 Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Jun 29 22:49:39 2016 -0700 tidy fix again... index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit cc6beeb9e6dd45f739f46f673e90e5c47912266c Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Jun 29 22:44:24 2016 -0700 tidy fix again index.html | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) commit fff16a99640b1803d84f0bd6310f183d5e02ddbe Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Jun 29 22:35:59 2016 -0700 tidy fix index.html | 119 +++++++++++++++++++++++++++++++------------------------------ 1 file changed, 60 insertions(+), 59 deletions(-) commit fdd47784b129f134ff9fd11db521f8ee0dcc2554 Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Jun 29 22:26:32 2016 -0700 addressing feedback from rtoy index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) commit 77015588ff33dbedb1c6e448b53467725f5d157b Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Jun 29 22:24:04 2016 -0700 addressing feedback from rtoy index.html | 315 ++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 165 insertions(+), 150 deletions(-) commit d0181c16e5b5e1421c4845635597406dd65bddfe Author: Hongchan Choi <hongchan@chromium.org> Date: Wed Jun 29 08:51:21 2016 -0700 initial commit index.html | 615 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 615 insertions(+) commit 4b0d850d9ce42bab216bafa4b59316e7192ce571 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Jun 28 15:57:53 2016 -0700 Tidy index.html | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) commit 031a2641bed8a874578f0f7d403b029c3eea2935 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Jun 28 15:56:52 2016 -0700 Fix #703: Add constructor for PeriodicWave. Define the dictionary too. index.html | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) commit 7b45ed1a5ff80b8e94cfb8cfef1d51849a444261 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Jun 28 14:41:38 2016 -0700 Fix #702: Add constructor for OscillatorNode. The appropriate dictionary for the constructor is also defined. index.html | 47 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) commit 563c64b14c97248605948339e2363d5fbc35667e Author: Raymond Toy <rtoy@chromium.org> Date: Tue Jun 28 14:20:32 2016 -0700 Remove the channelmerger/splitter changes These aren't part of the PR and are removed now. index.html | 36 ++---------------------------------- 1 file changed, 2 insertions(+), 34 deletions(-) commit e5b03821545ca5961265b720fb4452aa8d548385 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Jun 28 14:10:11 2016 -0700 Tidy index.html | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) commit ec0b7a2c277606ee42011a018306dbd8f056b633 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Jun 28 14:09:38 2016 -0700 Fix #701: Add constructor for IIRFilterNode. Add constructor and define the options dictionary. index.html | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) commit 9f0cf3b16968bf7193f972ca0e5850ff6a232269 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Jun 28 14:01:02 2016 -0700 Tidy index.html | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) commit 8d7259209ba79c1ab09525003392962230117b2f Author: Raymond Toy <rtoy@chromium.org> Date: Tue Jun 28 13:57:39 2016 -0700 Fix #698: Add constructor for ChannelMergerNode and ChannelSplitterNode Add constructors and define the options dictionary for each constructor. index.html | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) commit bd6833821a68872803ea04d6f92fda432273ad65 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Jun 28 12:54:32 2016 -0700 Tidy index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit 886ebb57c3d098c8e3d694db2052ba25e3f1738a Author: Raymond Toy <rtoy@chromium.org> Date: Tue Jun 28 11:09:48 2016 -0700 Fix #697: AudioNode channel options dictionary Add the AudioNodeChannelOptions dictionary that can be inherited by most dictionaries for the AudioNode constructors. index.html | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) commit 3225f5d53ed8e28acb8537f3a4044a4acf3f6484 Author: Raymond Toy <rtoy@chromium.org> Date: Fri Jun 24 09:15:28 2016 -0700 Fix #823: Refine definition of baseLatency Clarify what baseLatency is. In particular it is not the audio graph latency. index.html | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) commit a25fe372107c1f30c7b5cb11afabfbc0dd337ac9 Merge: a4aeddd f144078 Author: rtoy <toy.raymond@gmail.com> Date: Fri Jun 24 09:08:41 2016 -0700 Merge pull request #858 from rtoy/857-add-currenttime-link Fix #857: add currenttime link Some links were missing the actual url for the ilnk. There's no dfn for currentTime, so a url is required. commit f1440785c137f63bcef31773a264cc177951bdc4 Author: Raymond Toy <rtoy@chromium.org> Date: Fri Jun 24 09:04:38 2016 -0700 Fix #857: Fix up warnings about currentTime missing link Update all references to currentTime to include the appropriate link. (There is no dfn for currentTime.) index.html | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) commit ae5c288e4433ef7ec7b57b12b5e5c8dc985a4fc0 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jun 23 10:50:46 2016 -0700 Fix #852: Add new sections for AudioContextOptions and AudioTimestamp Not sure if this is the best solution, but by adding new sections for each of these dictionaries, the WebIDL fragment shows up in the correct section next to the dictionary instead of being placed in the preceeding section. index.html | 92 ++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 54 insertions(+), 38 deletions(-) commit 8142aff0a476fe48cf8b4b0a9ab1c85df8142096 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jun 23 10:35:31 2016 -0700 Remove ReSpec 3.2.97. respec-w3c-common-3.2.97.js | 16 ---------------- 1 file changed, 16 deletions(-) commit a2e1fd0cb276b3f2ecdfddc34ca44ea42f258855 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Jun 22 18:24:18 2016 -0700 Tidy. index.html | 1574 ++++++++++++++++++++++++++++++------------------------------ 1 file changed, 797 insertions(+), 777 deletions(-) commit 51ada3f5b2ae4989fffebbc7a5c1651e4ccd6f7a Author: Raymond Toy <rtoy@chromium.org> Date: Wed Jun 22 17:26:20 2016 -0700 Fix #840 in a different way ReSpec 3.2.97 is missing too much stuff that makes the spec look right like automatically generating the IDL for dictionaries. Thus, grab a copy of version 3.3.2 and fixup everything to put back the missing text. This basically means putting <p> tags around most <dd> tags. I didn't do this for every <dd> tag; only the ones that needed it. index.html | 281 +++++++++++++++++++++++++++++++++++++++++++-- respec-w3c-common-3.3.2.js | 31 +++++ 2 files changed, 301 insertions(+), 11 deletions(-) commit a4aeddd8be212257ad9507f78a536b014dc1a335 Merge: e4483db 90da518 Author: Paul Adenot <paul@paul.cx> Date: Fri Jun 24 15:41:10 2016 +0200 Merge pull request #854 from rtoy/852-add-sections-for-audiocontextoptions-and-audiotimestamp Fix #852: Add new sections for AudioContextOptions and AudioTimestamp commit e4483dbf84ba42737900a41e8d7c63384b976dc4 Merge: 0bbc9b0 e084235 Author: rtoy <toy.raymond@gmail.com> Date: Thu Jun 23 11:00:48 2016 -0700 Merge pull request #853 from rtoy/840-add-missing-p-tags Fix #840: add missing p tags Instead of using 3.2.97 (which is missing some features), use 3.3.2 and fix up all of the missing sections by adding <p> tags to <dd> tags as needed. Visually compared the two versions and it looks like all the missing sections are back. commit 90da51893d8ca854c61663c50dc5673db913d0f1 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jun 23 10:50:46 2016 -0700 Fix #852: Add new sections for AudioContextOptions and AudioTimestamp Not sure if this is the best solution, but by adding new sections for each of these dictionaries, the WebIDL fragment shows up in the correct section next to the dictionary instead of being placed in the preceeding section. index.html | 92 ++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 54 insertions(+), 38 deletions(-) commit e08423552635b19fb3983173028529765c0457b5 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Jun 23 10:35:31 2016 -0700 Remove ReSpec 3.2.97. respec-w3c-common-3.2.97.js | 16 ---------------- 1 file changed, 16 deletions(-) commit d2fedfdee087d6aae52b873670ba6742f8081449 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Jun 22 18:24:18 2016 -0700 Tidy. index.html | 1574 ++++++++++++++++++++++++++++++------------------------------ 1 file changed, 797 insertions(+), 777 deletions(-) commit c5e8edc35c55054872b125ad4ea28297b59c8686 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Jun 22 17:26:20 2016 -0700 Fix #840 in a different way ReSpec 3.2.97 is missing too much stuff that makes the spec look right like automatically generating the IDL for dictionaries. Thus, grab a copy of version 3.3.2 and fixup everything to put back the missing text. This basically means putting <p> tags around most <dd> tags. I didn't do this for every <dd> tag; only the ones that needed it. index.html | 281 +++++++++++++++++++++++++++++++++++++++++++-- respec-w3c-common-3.3.2.js | 31 +++++ 2 files changed, 301 insertions(+), 11 deletions(-) commit e67521d57c4bd41abc19d98d72624064ff752ddb Author: Raymond Toy <rtoy@chromium.org> Date: Wed Jun 22 13:58:20 2016 -0700 Run tidy and fix typo in tags. index.html | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) commit 09da4f741c9ad5f76e71020b802dcd02490d151b Author: Raymond Toy <rtoy@chromium.org> Date: Wed Jun 22 13:56:41 2016 -0700 Fix #330: Specify the most recent samples for the Analyser data The Analyser node uses the most recent fftSize frames in computing the expected results. index.html | 32 ++++++++++++++++++++------------ 1 file changed, 20 insertions(+), 12 deletions(-) commit 0bbc9b05182097fb0958785015da3222b728d41f Merge: 8f44451 f576cf7 Author: Paul Adenot <paul@paul.cx> Date: Wed Jun 22 13:37:39 2016 +0100 Merge pull request #848 from WebAudio/847-currentTime Spec how currentTime is updated. commit 8f444518122d60ff7f9fc2a5f784930e6ebbf043 Merge: b6c1941 a37db9a Author: rtoy <toy.raymond@gmail.com> Date: Tue Jun 21 09:07:19 2016 -0700 Merge pull request #849 from WebAudio/713-event-in-the-past In automation methods, when startTime is < AudioContext.currentTime, clamp to AudioContext.currentTime. Fix #713 commit b6c194141e1201514b7b605c7c93b99d3c02755a Merge: 088545a 2ed34b9 Author: rtoy <toy.raymond@gmail.com> Date: Tue Jun 21 08:56:18 2016 -0700 Merge pull request #845 from WebAudio/757-decodeAudioData-detached When calling `decodeAudioData` on a detached `ArrayBuffer`, error out. Fix #757 commit 088545a377372c5ab2e9f9d0fea3df534dda463b Merge: aa9af63 73c2b88 Author: rtoy <toy.raymond@gmail.com> Date: Tue Jun 21 08:53:30 2016 -0700 Merge pull request #844 from WebAudio/828-setvalue-automation Make setting the `value` attribute of an `AudioParam` strictly equivalent of calling setValueAtTime with AudioContext.currentTime. Fix #828 commit a37db9a3c2705d5c67812f2722fa03a5b8ac27a7 Author: Paul Adenot <paul@paul.cx> Date: Tue Jun 21 14:11:37 2016 +0200 In automation methods, when startTime is < AudioContext.currentTime, clamp to AudioContext.currentTime. This fixes #713. index.html | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) commit f576cf76a035a9129f7bfefdc52d73fa9c44a8c6 Author: Paul Adenot <paul@paul.cx> Date: Tue Jun 21 13:57:15 2016 +0200 Spec how currentTime is updated. This fixes #847. index.html | 9 +++++++++ 1 file changed, 9 insertions(+) commit 2ed34b9e2073587d67ecd32ce420b9e6ae23c12d Author: Paul Adenot <paul@paul.cx> Date: Tue Jun 21 11:13:44 2016 +0200 When calling `decodeAudioData` on a detached `ArrayBuffer`, error out. This fixes #757. index.html | 32 ++++++++++++++++++++++++++------ 1 file changed, 26 insertions(+), 6 deletions(-) commit 73c2b88d1496953137185debb28c0ae6ef80edc7 Author: Paul Adenot <paul@paul.cx> Date: Tue Jun 21 10:59:36 2016 +0200 Make setting the `value` attribute of an `AudioParam` strictly equivalent of calling setValueAtTime with AudioContext.currentTime. This fixes #828. index.html | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) commit aa9af63e12fcb033b5721ab72d8b12df83941988 Merge: 0409b71 a5a62c5 Author: Paul Adenot <paul@paul.cx> Date: Mon Jun 20 15:31:41 2016 +0100 Merge pull request #665 from rtoy/rtoy-652-specify-set-target-behavior Specify behavior of events following SetTarget events. commit 0409b71e5994b1f0e73556db0a58524ea69eaf60 Merge: 5183787 c6d0662 Author: rtoy <toy.raymond@gmail.com> Date: Mon Jun 20 07:22:57 2016 -0700 Merge pull request #842 from rtoy/840-unbreak-attribute-sections Fix #840: unbreak attribute sections commit c6d066291344cf81239ff619076804b72fc91d0a Author: Raymond Toy <rtoy@chromium.org> Date: Fri Jun 17 14:22:24 2016 -0700 Make tidy happy. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 4ac7c40c630c4d143860dfa26a9d4d8f80c8c0f4 Author: Raymond Toy <rtoy@chromium.org> Date: Fri Jun 17 10:27:13 2016 -0700 Fix #840: unbreak attribute sections Install and use a local copy of respec (version 3.2.97) to unbreak the attribute sections that were missing lots of text due to the update of respec to 3.3.2. This is a temporary fix until we decide what to do with respect to respec and CR and future changes. index.html | 3 +-- respec-w3c-common-3.2.97.js | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 2 deletions(-) commit 518378772176367376c114edb912b1bdd0c75ced Merge: 3e35366 74946c8 Author: rtoy <toy.raymond@gmail.com> Date: Thu Jun 9 08:10:27 2016 -0700 Merge pull request #838 from WebAudio/osc-negative-freq Have the OscillatorNode.frequency nominal range to be [-nyquist, +nyquist]. Fix #813 commit 74946c86efec6cf5e679c095d111b3d83bf28eae Author: Paul Adenot <paul@paul.cx> Date: Thu Jun 9 11:46:40 2016 +0200 Have the OscillatorNode.frequency nominal range to be [-nyquist, +nyquist]. This fixe issue #813. index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 3e35366366817a56253ad1277084e6fc94182131 Merge: 67e53ef e9e67c4 Author: Paul Adenot <paul@paul.cx> Date: Tue Jun 7 13:27:12 2016 +0200 Merge pull request #835 from pozdnyakov/830-getOutputTimestamp-method Fix #830 by converting 'outputTimeStamp' attribute to method commit e9e67c4c00cd12da1a983bd73b733a65531f6486 Author: Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com> Date: Thu Jun 2 16:20:39 2016 +0300 Fix #830 by converting 'outputTimeStamp' attribute to method Whereas 'AudioContext.outputTimeStamp' attribute is returning a new object every time it should be converted to a method. index.html | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) commit 67e53ef9b52c8e79464c4325e743a37fea52869b Author: Paul Adenot <paul@paul.cx> Date: Mon May 30 16:30:59 2016 +0200 Fix garbage introduced in previous commit. index.html | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) commit d6430b09639a20e7e699eb839a174d1c86a16a2a Author: Paul Adenot <paul@paul.cx> Date: Mon May 30 16:23:42 2016 +0200 Fix MathJax https://lists.w3.org/Archives/Public/spec-prod/2016AprJun/0052.html tells us that the behaviour has been inversed, we need to annotate the maths so that it does not get highlighted by hljs and then processed by MathJax that gets very confused. Also removed the deprecated "highlight" attribute from code examples and spec bloc. index.html | 165 +++++++++++++++++++++++++++++-------------------------------- 1 file changed, 79 insertions(+), 86 deletions(-) commit d1b11084e45cf4574850e56a5ac78344139e48cb Merge: 582d7f6 ee1090b Author: Paul Adenot <paul@paul.cx> Date: Mon May 30 09:40:01 2016 +0200 Merge pull request #832 from rtoy/821-setvaluecurve-followed-by-linearramp Fix #821: specify behavior of setValueCurveAtTime commit ee1090becbcc71ca21b08abeb5ad4b8061d65627 Author: Raymond Toy <rtoy@chromium.org> Date: Fri May 27 09:28:44 2016 -0700 Fix #821: specify behavior of setValueCurveAtTime setValueCurveAtTime is modified so that an implicit call to setValueAtTime is made at the end of the curve duration. This makes any following automation events start from the end of the setValueCurveAtTime event with the last value of the curve. Without this, a linearRamp following setValueCurve would replace setValueCurve. This is not the desired behavior. index.html | 9 +++++++++ 1 file changed, 9 insertions(+) commit 582d7f6a91f3d6168ac784655e62d1b5d2f5579b Merge: 0913e80 9a91b4a Author: rtoy <toy.raymond@gmail.com> Date: Thu May 26 07:55:33 2016 -0700 Merge pull request #827 from WebAudio/826-orientationX Issue #826, fix markup so that the right text for `orientationX` appears commit 0913e80f7ea0a30e54976e893844425ec8bdcf8d Merge: c8e48ab 2677c09 Author: rtoy <toy.raymond@gmail.com> Date: Thu May 26 07:53:25 2016 -0700 Merge pull request #825 from pozdnyakov/817-move-attributes Fix #817 by moving outputTimeStamp and outputLatency to context commit 2677c099f51cd2babb7e7f2631178fbf822db5fa Author: Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com> Date: Thu May 26 16:22:49 2016 +0300 Fix #817 by moving outputTimeStamp and outputLatency to context index.html | 231 ++++++++++++++++++++++++++++++------------------------------- 1 file changed, 112 insertions(+), 119 deletions(-) commit c8e48ab738e7d4aaad371ea1575f1c6487204fb0 Merge: 54f4828 8306a69 Author: Paul Adenot <paul@paul.cx> Date: Thu May 26 13:21:50 2016 +0200 Merge pull request #812 from rtoy/797-widen-audiobuffer-playbackrate Fix #797: Widen nominal range of playbackRate commit 54f48283082ca846f196b2d31da64fb47e08066e Merge: d37195d 817c4a1 Author: Paul Adenot <paul@paul.cx> Date: Thu May 26 13:21:24 2016 +0200 Merge pull request #820 from rtoy/794-move-audio-context-options Fix #794: Move AudioContextOptions to AudioContext section commit d37195daa36bd36221ab4f7ec063b551f6c9578a Merge: 24fb220 6a043cb Author: Paul Adenot <paul@paul.cx> Date: Thu May 26 13:20:45 2016 +0200 Merge pull request #809 from rtoy/762-rename-audioparam-min/max Fix #762: Rename min/max attributes to minValue/maxValue commit 9a91b4a29df02f4c36b5a674ac388920dced69dd Author: Paul Adenot <paul@paul.cx> Date: Thu May 26 13:19:02 2016 +0200 Issue #826, fix markup so that the right text for `orientationX` appears. index.html | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) commit 817c4a1f0ae55ef52a23fce780b092a861e76cbb Author: Raymond Toy <rtoy@chromium.org> Date: Fri May 20 09:11:56 2016 -0700 Remove setValueCurveAtTime change; it's not relevant. index.html | 5 ----- 1 file changed, 5 deletions(-) commit 8c009c9626bb06f6737de2d26dc99c16cd6fbd23 Author: Raymond Toy <rtoy@chromium.org> Date: Fri May 20 09:07:07 2016 -0700 Fix #794: Move AudioContextOptions to AudioContext section The definition of AudioContextOptions was in the BaseAudioContext section. But this dictionary is only applicable for AudioContexts. Move it to the AudioContext section. index.html | 43 +++++++++++++++++++++---------------------- 1 file changed, 21 insertions(+), 22 deletions(-) commit a067bb9e273656becad3b3d660c20850516a175b Author: Raymond Toy <rtoy@chromium.org> Date: Fri May 20 07:56:56 2016 -0700 Fix #815: setValueCurve should throw on non-finite elements. If the curve contains non-finite values, setValueCurveAtTime must signal a TypeError. These values are illegal. index.html | 5 +++++ 1 file changed, 5 insertions(+) commit 8306a69d946e2c08bcb2f09378cc24945a1e64ed Author: Raymond Toy <rtoy@chromium.org> Date: Fri May 13 15:34:06 2016 -0700 Fix #797: Widen nominal range of playbackRate The playbackRate is widened to +/- infinity. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 24fb2202d03fbd136ebaac244f9a926fd251a57c Merge: 1e0dd8c c8ea132 Author: rtoy <toy.raymond@gmail.com> Date: Fri May 13 15:07:11 2016 -0700 Merge pull request #811 from rtoy/810-q-used-in-peaking-filter Fix #810: Q is used in peaking filter. commit c8ea132caadbcf3ee4fec5b7fc389602c3d9d192 Author: Raymond Toy <rtoy@chromium.org> Date: Fri May 13 15:04:33 2016 -0700 Fix #810: Q is used in peaking filter. Correct typo in description of Q AudioParam. index.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) commit 6a043cb214d27fbf9d64b2c16a310a17e1b91bb0 Author: Raymond Toy <rtoy@chromium.org> Date: Thu May 12 15:42:02 2016 -0700 Rebase and tidy. index.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) commit a7750423040f868b359bab7fea93eb1a26e4a153 Merge: 11e87fc 1e0dd8c Author: Raymond Toy <rtoy@chromium.org> Date: Thu May 12 15:41:33 2016 -0700 Merge branch 'gh-pages' into 762-rename-audioparam-min/max commit 1e0dd8c312396ee75205f2027850823128de9eea Merge: 4e678a8 f14a75e Author: Paul Adenot <paul@paul.cx> Date: Thu May 12 14:18:27 2016 +0200 Merge pull request #721 from rtoy/695-revert-cone-angle-mod-360 Revert change for cone angle mod 360. commit 4e678a872663bac2a12094bd9a5599479b45d296 Merge: 1c6778b ac8d1d1 Author: Paul Adenot <paul@paul.cx> Date: Thu May 12 14:18:22 2016 +0200 Merge pull request #734 from rtoy/730-remove-panner-setvelocity Remove PannerNode's setVelocity commit 1c6778be6a2109600743581f9c38eab6ccdb9981 Merge: 7f128c4 7177196 Author: Paul Adenot <paul@paul.cx> Date: Thu May 12 14:12:56 2016 +0200 Merge pull request #754 from pozdnyakov/12-dest-node-get-position Fix #12 by adding outputTimeStamp attribute to AudioDestinationNode commit 7f128c450dd1caf06e44916af46ddfdce4fe6e48 Merge: 1b9b2e4 13f76ba Author: Paul Adenot <paul@paul.cx> Date: Thu May 12 14:10:44 2016 +0200 Merge pull request #775 from rtoy/348-processing-latency Fix #348: Add latencyHint, replacing playbackCategory commit 1b9b2e41bba6152fc065c700326836369a7331f7 Merge: ae02b70 0d0dbee Author: Paul Adenot <paul@paul.cx> Date: Thu May 12 14:09:56 2016 +0200 Merge pull request #800 from rtoy/798-fix-biquad-q-range Fix biquad q range commit ae02b707808c4d39b3579936c8d88a55f7bbaec2 Merge: 38b68d3 204fcda Author: Paul Adenot <paul@paul.cx> Date: Thu May 12 14:09:44 2016 +0200 Merge pull request #801 from rtoy/767-use-newer-license Fix #767: Use newer Software and Document License commit 38b68d3bac89a4003800376fd0887854891a3bc0 Merge: 6330e27 ae22039 Author: Paul Adenot <paul@paul.cx> Date: Thu May 12 14:09:36 2016 +0200 Merge pull request #808 from rtoy/766-nominal-range-for-automations Fix #766: Behavior of automations and nominal ranges commit 11e87fc941d14f8c33754ee6a8d4745d76616d80 Author: Raymond Toy <rtoy@chromium.org> Date: Wed May 11 14:31:29 2016 -0700 Fix #762: Rename min/max attributes to minValue/maxValue The AudioParam nominal range attributes min/max are renamed to minValue and maxValue. index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) commit ae22039995eba8e33c1aa1f206a019cb0a8ed237 Author: Raymond Toy <rtoy@chromium.org> Date: Wed May 11 14:26:30 2016 -0700 Fix #766: Behavior of automations and nominal ranges Specify the behavior of automations with nominal ranges. Automations are internally computed as there were no nominal ranges. Only when they are applied is the clamping done. A simple example is given. index.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) commit 6330e27d5f14f7e691ad36818b3923a169e1afe5 Merge: c49b719 26428e6 Author: rtoy <toy.raymond@gmail.com> Date: Wed May 11 12:57:41 2016 -0700 Merge pull request #807 from rtoy/806-add-gitattribute-for-unix-eol Fix 806: Enforce Unix end-of-line (LF) commit 71771967cbf7c6a92f955e1ebff79ddfcb0fa872 Author: Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com> Date: Wed May 11 09:55:10 2016 +0300 Fix #12 by adding 'AudioDestinationNode.outputTimeStamp' and 'AudioDestinationNode.outputLatency' This patch introduces 'AudioDestinationNode.outputTimeStamp' and 'AudioDestinationNode.outputLatency' attributes, so that it's possible to estimate when the given context's stream position is audible. index.html | 119 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 119 insertions(+) commit 26428e67b27a6cd43bc44fc9f2c3be7f7884e94a Author: Raymond Toy <rtoy@chromium.org> Date: Tue May 10 12:46:40 2016 -0700 Fix 806: Enforce Unix end-of-line (LF) All html files, scripts, etc. are forced to use Unix (LF) end-of-line character. .gitattribute | 14 ++++++++++++++ 1 file changed, 14 insertions(+) commit c49b719d842c63f8510a88f50d3b544710b7cd5c Merge: 8c83b1d fbf13c9 Author: rtoy <toy.raymond@gmail.com> Date: Tue May 10 12:34:13 2016 -0700 Merge pull request #805 from rtoy/804-convert-to-unix-eol Fix #804: Use Unix end-of-line character (LF) commit fbf13c970b066a2361983bae4c40022fbf7f2826 Author: Raymond Toy <rtoy@chromium.org> Date: Tue May 10 11:31:14 2016 -0700 Run tidy. index.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit 968646f83192ebe16aa929ebaf22f7b79d02f181 Author: Raymond Toy <rtoy@chromium.org> Date: Tue May 10 11:24:36 2016 -0700 Use Unix end-of-line character (LF) Automatically converted Windows style to Unix style end-of-line character. Fix #804. index.html | 18434 +++++++++++++++++++++++++++++------------------------------ 1 file changed, 9217 insertions(+), 9217 deletions(-) commit 8c83b1de8b61e74a822d92c28f3faf905fb39320 Author: Chris Lilley <nantonos@epona.net> Date: Thu May 5 13:36:48 2016 -0400 now make the actual small edits to the security section, from Wendy's review index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 49ae518458d679c82e5bd5b636b96af5fbd1a9b7 Author: Chris Lilley <nantonos@epona.net> Date: Thu May 5 13:33:01 2016 -0400 undo botched merge conflict edit index.html | 9120 ------------------------------------------------------------ 1 file changed, 9120 deletions(-) commit ffd4a827f0a1408577e47a682313e7e23c649b74 Merge: cb83b9e 930c712 Author: Chris Lilley <nantonos@epona.net> Date: Thu May 5 13:00:47 2016 -0400 Merge branch 'gh-pages' of https://github.com/WebAudio/web-audio-api into gh-pages commit cb83b9e3a2274ed664c79ac0efbb3f2b87615985 Author: Chris Lilley <nantonos@epona.net> Date: Wed May 4 17:53:19 2016 -0400 update to Security & Privacy index.html | 18235 ++++++++++++++++++++++++++++++----------------------------- 1 file changed, 9119 insertions(+), 9116 deletions(-) commit 204fcda686f5945b50aebca5bf02c0c12fdb859e Author: Raymond Toy <rtoy@chromium.org> Date: Mon May 2 15:32:09 2016 -0700 Fix #767: Use newer Software and Document License Specify the w3c software license. index.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit f14a75ee79cca0cbbf96cccc4d91863e92fdc615 Author: Raymond Toy <rtoy@chromium.org> Date: Mon May 2 15:16:36 2016 -0700 Run tidy. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit f428532a1e8ea9e301d7c2b4b6d8143441d5992a Merge: 03588c8 930c712 Author: Raymond Toy <rtoy@chromium.org> Date: Mon May 2 15:14:32 2016 -0700 Merge branch 'gh-pages' into 695-revert-cone-angle-mod-360 commit ac8d1d14a94ccf503687fcbaa56c17082abd9d8a Merge: ad2a15f 930c712 Author: Raymond Toy <rtoy@chromium.org> Date: Mon May 2 15:08:19 2016 -0700 Merge branch 'gh-pages' into 730-remove-panner-setvelocity commit 13f76ba6ec3ff6e2234aea237a0c1528033c6bc6 Author: Raymond Toy <rtoy@chromium.org> Date: Mon May 2 13:40:07 2016 -0700 Run tidy. index.html | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) commit 411b8afda3e2e0d9f89bd803ea8cd9a0e3faf086 Merge: 071505a 930c712 Author: Raymond Toy <rtoy@chromium.org> Date: Mon May 2 13:39:12 2016 -0700 Merge branch 'gh-pages' into 348-processing-latency commit a5a62c57bb2d29bbbabe7e0b83e43fe928bdb9e3 Author: Raymond Toy <rtoy@chromium.org> Date: Mon May 2 09:22:24 2016 -0700 Run tidy. index.html | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) commit e22d0137008e90757706a9f73357628a807df11d Merge: 8ae9473 930c712 Author: Raymond Toy <rtoy@chromium.org> Date: Fri Apr 29 14:39:17 2016 -0700 Merge branch 'gh-pages' into rtoy-652-specify-set-target-behavior commit 0d0dbee2fb26d0470063251b0dda50090afc42a6 Merge: 83bb964 930c712 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Apr 26 13:21:51 2016 -0700 Merge branch 'gh-pages' into 798-fix-biquad-q-range commit 930c71224d115227559ca584e476c1571c91bb62 Merge: 954416b cda0eac Author: rtoy <toy.raymond@gmail.com> Date: Tue Apr 26 13:21:24 2016 -0700 Merge pull request #799 from rtoy/run-tidy-2016-04-26 Run tidy. commit cda0eaca9b2499ef080eae36f7baa892c0cdda8b Author: Raymond Toy <rtoy@chromium.org> Date: Tue Apr 26 13:17:06 2016 -0700 Run tidy. index.html | 272 ++++++++++++++++++++++++++++++++++++++++++------------------- 1 file changed, 186 insertions(+), 86 deletions(-) commit 83bb964fab696aa1ed01651b3687c641d48b1d12 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Apr 26 13:14:28 2016 -0700 Fix #798: Incorrect nominal range for Biquad Q The actual nominal range is (-infinity, +infinity) since Q is in dB and the valid range for the linear Q value is (0, infinity). index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 954416b1c5fc648a1ec72d71299bb7609c87a820 Merge: da7c5f3 73bbf5e Author: Chris Lilley <nantonos@epona.net> Date: Sat Apr 23 20:43:01 2016 -0400 Merge branch 'gh-pages' of https://github.com/WebAudio/web-audio-api into gh-pages commit da7c5f353157ad53ba147be7b4ae730b9d3812c1 Author: Chris Lilley <nantonos@epona.net> Date: Thu Apr 21 18:26:20 2016 -0400 First draft of security section Merged security and privacy as the questionnaire merges them index.html | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 75 insertions(+), 11 deletions(-) commit 054d25b25aeca21de673a051deb6480215f3e9fd Author: Chris Lilley <nantonos@epona.net> Date: Thu Apr 21 16:35:56 2016 -0400 minor update implementation-report.html | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) commit 071505a5053a44c3a3bf0a209e6e15a03481da86 Merge: a9388e6 73bbf5e Author: Raymond Toy <rtoy@chromium.org> Date: Tue Apr 19 14:11:11 2016 -0700 Merge branch 'gh-pages' into 348-processing-latency commit 73bbf5ea9906d1828bf475452550f633d5340bc7 Merge: a50f7c8 f6bef1a Author: Paul Adenot <paul@paul.cx> Date: Fri Apr 15 12:00:01 2016 +0200 Merge pull request #659 from rtoy/130-add-initial-event Specify initial event for linear and exponential ramp. commit a50f7c8c166b6a075820933c543059955b9caaaf Author: Paul Adenot <paul@paul.cx> Date: Fri Apr 15 11:57:10 2016 +0200 Tidy after all the merges index.html | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) commit 373518c6007dcb6298fbc98b3903f2187fb3a990 Merge: 3ed6f40 39e7c0e Author: Paul Adenot <paul@paul.cx> Date: Fri Apr 15 11:56:17 2016 +0200 Merge pull request #706 from rtoy/rtoy-add-link-for-fetch-algo Update link for fetching algorithm. commit 3ed6f405e3c2b0c34f0fb78f0ab6ce2685b854f9 Merge: 8d95757 56943e3 Author: Paul Adenot <paul@paul.cx> Date: Fri Apr 15 11:56:10 2016 +0200 Merge pull request #774 from rtoy/749-merge-spatial-panner-into-panner Fix #749: merge spatial panner into panner commit 8d95757aea400081d4b5864d2d0d3c4dd7eae786 Merge: 12d4840 3a01219 Author: Paul Adenot <paul@paul.cx> Date: Fri Apr 15 11:51:59 2016 +0200 Merge pull request #792 from rtoy/760-biquad-gain-range Fix #760 by widening the range to (-inf,inf) commit 12d4840884432125bdfe7176a34ef8867da5184d Merge: f0e9d0a b023e69 Author: Paul Adenot <paul@paul.cx> Date: Fri Apr 15 11:51:50 2016 +0200 Merge pull request #793 from rtoy/748-remove-base-audio-context-constructor Fix #748: remove base audio context constructor commit f0e9d0a15ded53cc6ab1151a8aa4e0d79ca24c66 Merge: c32bdc0 e2ccc4d Author: Paul Adenot <paul@paul.cx> Date: Fri Apr 15 11:51:40 2016 +0200 Merge pull request #795 from rtoy/771-some-filters-not-representable Fix #771 some filters not representable commit c32bdc0c0416722c5a2976a46b16615a0c43af96 Merge: 0e7f520 b0af596 Author: Paul Adenot <paul@paul.cx> Date: Fri Apr 15 11:51:11 2016 +0200 Merge pull request #796 from rtoy/762-missing-nominal-ranges-audioparam Fix #762: Add missing nominal ranges for AudioParams. commit b0af596ed3fa33fd059a2e9e0613fbdec92ca264 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Apr 14 15:29:30 2016 -0700 Fix #762: Add missing nominal ranges for AudioParams. Add text to specify the nominal ranges as given in #762. This should complete the set of nominal ranges so that AudioParam min/max attributes can be properly set for each AudioParam. index.html | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) commit a9388e65c6b720a6d368b47ad078a808d911da43 Author: Raymond Toy <rtoy@chromium.org> Date: Thu Apr 14 12:42:06 2016 -0700 Replace processingLatency with baseLatency. Update links and other references appropriately. index.html | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) commit 0e7f5205e3bf89f11d3f36dd3430dd86cca3e01f Author: Paul Adenot <paul@paul.cx> Date: Wed Apr 13 19:18:24 2016 +0200 Make the spec a bit larger, waiting for new rspec markup. index.html | 3 +++ 1 file changed, 3 insertions(+) commit e2ccc4d51173fcdf626cbb69e2a2c7d5317a203f Merge: a6842f2 59ac586 Author: Raymond Toy <rtoy@chromium.org> Date: Wed Apr 13 09:18:04 2016 -0700 Merge branch 'gh-pages' into 771-some-filters-not-representable commit 59ac586afa74ae86240eeb61c4f06cae396fec14 Author: Paul Adenot <paul@paul.cx> Date: Wed Apr 13 17:11:06 2016 +0200 Tidy the document. index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit fe08c91866cef6a4bee09631e681e6b17998c5e6 Merge: 673d5ae 8240c35 Author: Paul Adenot <paul@paul.cx> Date: Wed Apr 13 17:06:43 2016 +0200 Merge pull request #782 from marcoscaceres/gh-pages Feat (index.html): don't use Mathjax during spec-generation commit 8240c3559970a8f13273f579e4d8f1f3c733622f Author: Marcos Caceres <marcos+github@marcosc.com> Date: Wed Apr 13 14:52:18 2016 +1000 Fixed typo index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit a6842f2f733911a8ac6b330a405eac19878adc15 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Apr 12 11:18:24 2016 -0700 Fix #771 by using Audio Cookbook formula Use the Audio Cookbook formula for the lowpass and highpass filters. However, the cookbook has Q in linear units. This change makes Q in dB. This preserves the old behavior which used Q in dB for the lowpass and highpass filters, so that automations have the same value. (See #769) This also minimizes the difference in sound quality between these new filters and the old ones. index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) commit 673d5ae377197344eb343341e0f3fcd4e3c6ca52 Author: Chris Lilley <nantonos@epona.net> Date: Tue Apr 12 09:25:35 2016 -0400 add firefox tests implementation-report.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 8af8c3add39e1c1057c4b5b54fc901d9f594028b Author: Chris Lilley <nantonos@epona.net> Date: Tue Apr 12 01:55:08 2016 -0400 table is better implementation-report.html | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) commit ec9658cbb5c082716c2b1e667299adba71beaa6f Author: Chris Lilley <nantonos@epona.net> Date: Tue Apr 12 00:30:42 2016 -0400 android result implementation-report.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit c7ff2e184add832c098892c0985f486c7c77a5da Author: Chris Lilley <nantonos@epona.net> Date: Mon Apr 11 19:07:25 2016 -0400 more tests implementation-report.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 5cf0f7debe675b83ffa5c7394793d0ef9adb1b63 Author: Chris Lilley <nantonos@epona.net> Date: Mon Apr 11 17:37:20 2016 -0400 logos, touch of styling images/chrome-logo.png | Bin 0 -> 8578 bytes images/edge-logo.png | Bin 0 -> 8069 bytes images/firefox-logo.png | Bin 0 -> 37534 bytes images/opera-logo.png | Bin 0 -> 14663 bytes images/safari-logo.png | Bin 0 -> 30946 bytes implementation-report.html | 46 +++++++++++++++++++++++++++++++++++---------- 6 files changed, 36 insertions(+), 10 deletions(-) commit def28e7a5116254d2ef65c110842e33586ec7188 Author: Chris Lilley <nantonos@epona.net> Date: Mon Apr 11 16:56:32 2016 -0400 bugtracker links implementation-report.html | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) commit 9114ad5e9e826e1b62e694df1eb1e2f2e75de1cc Author: Chris Lilley <nantonos@epona.net> Date: Mon Apr 11 16:39:31 2016 -0400 version info on tested browsers implementation-report.html | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) commit b023e692b12131b8f7694f017069e159b3a9454a Author: Raymond Toy <rtoy@chromium.org> Date: Mon Apr 11 13:29:28 2016 -0700 Tidy. index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 3d7347e2140ae54e658c890221811f09649790ba Author: Raymond Toy <rtoy@chromium.org> Date: Mon Apr 11 13:29:05 2016 -0700 Fix #748: Remove constructor from BaseAudioContext Move the constructor from BaseAudioContext to AudioContext where it belongs; BaseAudioContext is not constructible. index.html | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) commit 3a0121956457a744802995bbe4f91cb5552ead00 Author: Raymond Toy <rtoy@chromium.org> Date: Mon Apr 11 13:07:31 2016 -0700 Fix #760 by widening the range to (-inf,inf) Change the nominal range of the Biquad gain parameter to be any real value. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit de064cc3737e3aa24d1f0584523a401c7f21a3b2 Author: Chris Lilley <nantonos@epona.net> Date: Sat Apr 9 23:36:55 2016 -0400 link implementation-report.html | 3 +++ 1 file changed, 3 insertions(+) commit 445367726b324ca743b978cd7d5bd76eb351270b Author: Chris Lilley <nantonos@epona.net> Date: Sat Apr 9 23:29:06 2016 -0400 Briefly list version numbers implementation-report.html | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) commit e5ed0a74f48723cca026dd7b84e17228198f072d Author: Chris Lilley <nantonos@epona.net> Date: Sat Apr 9 22:23:57 2016 -0400 Stub draft implementation report implementation-report.html | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) commit 6a0938bc46cc7030577f285378ec864705eefc01 Author: Paul Adenot <paul@paul.cx> Date: Thu Apr 7 16:58:57 2016 -0400 Make it so that the lower bound for the required sample-rate is 8000 Because 8192 is not very common for sample-rates. index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit f633b27f68afffaaf4206c8a96a9aa1c3ee75f0c Merge: ab068b5 60025a5 Author: Paul Adenot <paul@paul.cx> Date: Thu Apr 7 12:13:19 2016 -0400 Merge pull request #773 from rtoy/759-biquad-gain-is-db 759 biquad gain is db commit cbf0b4f4288148380411a91ce370583ff79b9205 Author: Marcos Caceres <marcos@marcosc.com> Date: Wed Apr 6 11:33:04 2016 +1000 Feat (index.html): don't use Mathjax during spec-generation index.html | 53 +++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 41 insertions(+), 12 deletions(-) commit ab068b55b1f096fd44af608eb9c0be28b690ce73 Merge: 6568f96 b266433 Author: Chris Wilson <cwilso@gmail.com> Date: Tue Apr 5 15:37:56 2016 -0700 Merge pull request #781 from rtoy/update-editors Update editors commit 6568f96d6ed019748640a7daec3d6e573b472ed5 Merge: 7c56e6c d48c4a5 Author: rtoy <toy.raymond@gmail.com> Date: Tue Apr 5 15:29:00 2016 -0700 Merge pull request #397 from WebAudio/349-destination-output Make the AudioDestinationNode have an output. Fix #349. commit b2664334244e72911643b52ed3b26940d54dd2a5 Merge: 3499c0b 7c56e6c Author: Raymond Toy <rtoy@chromium.org> Date: Tue Apr 5 15:07:10 2016 -0700 Merge branch 'gh-pages' into update-editors commit 3499c0b017323fa94bf41bc7bdcf9d0e05e34578 Author: Raymond Toy <rtoy@chromium.org> Date: Tue Apr 5 14:50:49 2016 -0700 Update editors index.html | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-)