forked from WebAudio/web-audio-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchangelog.html
4961 lines (3576 loc) · 157 KB
/
changelog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Web Audio API - Changelog</title>
<link rel="stylesheet" href="http://www.w3.org/StyleSheets/TR/W3C-ED" type="text/css" />
</head>
<body>
<div id="ChangeLog-section" class="section">
<h2>Web Audio API Change Log</h2>
<pre>
commit a1c819d4e6f21dccaab342647cdf5d8568f934f3
Merge: 8a5f4d4 4bca885
Author: Paul Adenot <[email protected]>
Date: Fri Nov 6 10:03:48 2015 +0100
Merge pull request #658 from rtoy/657-fix-setValueCurve-formula
Use correct formula for setValueCurveAtTime
commit 4bca885edfcd26dbb85ac681b0ffffe4a22efea4
Author: Raymond Toy <[email protected]>
Date: Wed Nov 4 15:21:37 2015 -0800
Use correct formula for setValueCurveAtTime
Fix #657 by changing N to N-1.
Also slightly adjusted the formula to use larger floor symbols.
commit 8a5f4d4a344da5e7df359a63994e20ebbf74fd47
Author: Paul Adenot <[email protected]>
Date: Mon Nov 2 23:00:35 2015 +0100
Use curl instead of cmake because of cert issues.
commit 8cb99b8eebfbfc292977d11d9624180c121125bb
Author: Hongchan Choi <[email protected]>
Date: Mon Nov 2 11:06:26 2015 -0800
Update .travis.yml
The URL has been permanently moved to some where else.
commit 938cf2bf8f81a4febb0228eae03c9d0af5103cbc
Author: Chris Wilson <[email protected]>
Date: Tue Oct 27 13:12:09 2015 +0900
connect() typo, and tidy cleanup.
commit 013e6ad482af195e8844c083a365171d11871c59
Author: Chris Wilson <[email protected]>
Date: Tue Oct 27 11:27:14 2015 +0900
Rearrange description of "currentTime"
Fixes #381.
commit 078b15f29fd7cd4ccb357a88d2133354c9fc73f6
Author: Chris Wilson <[email protected]>
Date: Tue Oct 27 11:20:21 2015 +0900
loop modification mixup.
Fixes #281.
commit 2677a0f777fc180dc30d21fddec072eb255b679d
Author: Chris Wilson <[email protected]>
Date: Tue Oct 27 11:14:57 2015 +0900
Remove references to Web Workers.
Fixes #532.
commit 44ebce6044882da08c41f30a835b3564c922a407
Author: Chris Wilson <[email protected]>
Date: Tue Oct 27 10:01:56 2015 +0900
Return destination node from connect()
Fixes #258.
commit 0a0111a03051ae4857e17b5937744e69f53429ca
Author: Chris Wilson <[email protected]>
Date: Tue Oct 27 09:51:54 2015 +0900
Clamp loopStart, loopEnd and offset.
Fixes #363.
commit f013bad6aa6892e6ec2c7fb945f4ec18d1e9b714
Author: Paul Adenot <[email protected]>
Date: Thu Oct 22 14:31:49 2015 +0200
Don't fire "complete" directly.
It needs to be fired from a queued task.
This fixes #448.
commit a7c9c54b1e5c6f46d20239f69a7fe773c0b565b4
Author: Paul Adenot <[email protected]>
Date: Tue Oct 20 15:32:15 2015 +0200
Pin tidy to a specific revision to make CI more deterministic. This fixes #641.
commit ddeeebfd2bfe876a85c9e976b3a71c9c5609cdd8
Author: Paul Adenot <[email protected]>
Date: Mon Oct 19 14:06:08 2015 +0200
Tidy the spec after the spatial panner merge
commit 585d8f86b4274e556d7d468883114537ced893b3
Author: Paul Adenot <[email protected]>
Date: Mon Oct 19 13:52:30 2015 +0200
Put more output for the check target of the Makefile, and switch to unified
diff with 8 lines of context.
commit c65c72185db5bd0103c58d45721432a19b660826
Merge: 915725a ca97f01
Author: Chris Wilson <[email protected]>
Date: Fri Oct 16 16:13:08 2015 -0700
Merge pull request #639 from WebAudio/372-SpatialPanner
SpatialPanner try 2
commit ca97f0134d1707d883af181021200e46e02269d9
Author: Chris Wilson <[email protected]>
Date: Fri Oct 16 16:12:03 2015 -0700
Typo.
commit 56d16d9e8478c5c7a89b163d46f6963992a7e7df
Author: Chris Wilson <[email protected]>
Date: Fri Oct 16 16:09:45 2015 -0700
SpatialPanner try 2
commit 915725acc4ad5e78e44108a9283d067ca6492daf
Author: Paul Adenot <[email protected]>
Date: Fri Oct 16 17:55:35 2015 +0200
Use the new container-based travis infra
As per http://docs.travis-ci.com/user/migrating-from-legacy/
commit 9b6fa5be20ef5dbaddc30920524f0fc8290d6243
Author: Paul Adenot <[email protected]>
Date: Fri Oct 16 17:51:49 2015 +0200
Update README.md
commit 23310fab6d882b05adbafed78c7ba9e47258db84
Merge: 9b68319 220aad5
Author: Paul Adenot <[email protected]>
Date: Fri Oct 16 17:50:19 2015 +0200
Merge pull request #633 from WebAudio/travis
Add travis-ci support file and badge in the readme
commit 220aad5a7ea9b2de701e6967d47bd9706fe9cc2f
Author: Paul Adenot <[email protected]>
Date: Fri Oct 16 17:47:10 2015 +0200
Add travis-ci support file and badge in the readme
commit 9b683199034294f13804b0720102f57878f4131b
Author: Paul Adenot <[email protected]>
Date: Fri Oct 16 17:42:33 2015 +0200
Tidy the spec before enabling travis
commit 08a48dd87729f2ce5cef656b331c5ce62fec5d93
Author: Paul Adenot <[email protected]>
Date: Fri Oct 16 14:31:18 2015 +0200
Add <pre> around maths
commit 401b06436bda6b0bad4b9c199369c5561a9651ea
Author: Paul Adenot <[email protected]>
Date: Thu Oct 15 16:08:50 2015 +0200
Update the local respec version, and use the hosted version
commit 8f908eaed876ffc6f60a63503f3933c488780ee9
Merge: a3a4df5 8556fdd
Author: Paul Adenot <[email protected]>
Date: Thu Oct 15 15:25:05 2015 +0200
Merge pull request #626 from WebAudio/288-audiobuffersourcenode-once
AudioBufferSourceNode.buffer should only be set once, this fixes #288
commit a3a4df537c9f509dbea6fc3c70b09606a2a36c1c
Merge: 1962e58 91f6868
Author: Paul Adenot <[email protected]>
Date: Thu Oct 15 15:01:51 2015 +0200
Merge pull request #622 from WebAudio/619-fix-formulas
Hack around wrapping in tidy HTML to keep nicely formatted formulas
commit 8556fddf278ffdbc4189b8094d0aa433bc715fc0
Author: Paul Adenot <[email protected]>
Date: Wed Oct 14 15:15:08 2015 +0200
AudioBufferSourceNode.buffer should only be set once, this fixes #288
commit 1962e58d4a6e0d17596352b54a7e33214597bb4e
Merge: 37a239d bd9e992
Author: Paul Adenot <[email protected]>
Date: Wed Oct 14 11:22:06 2015 +0200
Merge pull request #621 from rtoy/569-spec-osc-coef
Specify PeriodicWave coefficients to generate Oscillator waveforms
commit 91f68682de66b71446b7bebb949677c58e0458b5
Author: Paul Adenot <[email protected]>
Date: Wed Oct 14 11:20:21 2015 +0200
Address review comments
commit 37a239dade35b720c73890f92e13a311099b6b16
Merge: 0e40779 1c07de1
Author: Joe Berkovitz <[email protected]>
Date: Tue Oct 13 15:56:46 2015 -0400
Merge pull request #608 from WebAudio/65-wave-shaper-curve-mod
Fix #65 by clarifying copy-on-write behavior of WaveShaperNode.curve.
commit 0e407794b27678c88fa874c5bf3319ed1d60d3c8
Merge: e6acd53 2728c1b
Author: rtoy <[email protected]>
Date: Tue Oct 13 09:46:14 2015 -0700
Merge pull request #615 from WebAudio/60-getFrequencyResponse
Better spec BiquadFilterNode.getFrequencyResponse
Fix #60
commit bd9e992ac0dd954a32037d909aa36d2497245ed3
Author: Raymond Toy <[email protected]>
Date: Tue Oct 13 09:43:42 2015 -0700
Addl link for PeriodicWave.
commit b9b924d16086b199fee10c99192ae0c9e2554f74
Author: Paul Adenot <[email protected]>
Date: Tue Oct 13 16:29:49 2015 +0200
Hack around wrapping in tidy HTML to keep nicely formatted formulas
This wraps formulas in `pre` tags that are ignored by tidy, and we enabled their parsing in MathJax.
This also tidies the document.
commit e6acd5305f7836a1b9b8fc046ecda2834fd7245d
Merge: 570ed13 f7db0d9
Author: Paul Adenot <[email protected]>
Date: Tue Oct 13 10:46:20 2015 +0200
Merge pull request #617 from rtoy/571-describe-get-byte-data
Describe getByteTimeDomainData and getByteFrequencyData
commit 138649f42b993d0457d65a431f8e75a8743c342d
Author: Raymond Toy <[email protected]>
Date: Mon Oct 12 13:15:51 2015 -0700
Specify PeriodicWave coefficients to generate basic Oscillator waveforms.
Include formulas appropriate for PeriodicWave objects to create the
basic builtin Oscillator waveforms.
Fixes WebAudio/web-audio-api#569.
commit f7db0d97a4fb8f3a303eb1d533862e56fecf188d
Author: Raymond Toy <[email protected]>
Date: Mon Oct 12 09:56:54 2015 -0700
Use relative link.
commit 20ada01c7ba1a391390234f539d8d3fabc44f0ae
Merge: c0264c1 570ed13
Author: Raymond Toy <[email protected]>
Date: Mon Oct 12 09:53:46 2015 -0700
Merge branch 'gh-pages' into 571-describe-get-byte-data
commit 570ed136e3ae24434404085e6bdf4393b99544ad
Merge: 44d9640 2669c9f
Author: Paul Adenot <[email protected]>
Date: Mon Oct 12 18:01:43 2015 +0200
Merge pull request #618 from rtoy/616-settarget-legal-values-for-timeconstant
setTargetAtTime timeConstant must be positive
commit 2728c1ba791ebb405c6434dd31369c9e4b9b0416
Author: Paul Adenot <[email protected]>
Date: Mon Oct 12 17:59:54 2015 +0200
Address review comments
commit c0264c1f4741f42bc32e1400ba0d9d74858162c3
Author: Raymond Toy <[email protected]>
Date: Fri Oct 9 11:12:37 2015 -0700
Wrap lines to make them shorter.
(Why didn't tidy do that?)
commit 2669c9fc8399cb69deb4e52c27d8e07187f54d88
Author: Raymond Toy <[email protected]>
Date: Fri Oct 9 11:06:03 2015 -0700
setTargetAtTime timeConstant must be positive
Fix WebAudio/web-audio-api#616
commit 4a75491ad1501676d27bb395b160a32d72c50642
Author: Raymond Toy <[email protected]>
Date: Fri Oct 9 10:48:11 2015 -0700
Describe how byte values are computed for getByteTimeDomainData and getByteFrequencyData.
Fixes WebAudio/web-audio-api#571.
commit 1af2e2d439e20f3e00fafd3613bbb58c153ec56f
Author: Paul Adenot <[email protected]>
Date: Fri Oct 9 15:06:10 2015 +0200
Better spec BiquadFilterNode.getFrequencyResponse
This fixes issue #60.
commit 44d964068ece6afc47e91d92426c37ea5ad1d825
Merge: c858b14 31b9f64
Author: Paul Adenot <[email protected]>
Date: Fri Oct 9 11:50:07 2015 +0200
Merge pull request #610 from rtoy/326/328-panner-distance-limits
Update distance formulas to clamp the distance appropriately.
commit c858b148634506bf5968ec806e11f468e0315a60
Merge: 3a7b300 71878c9
Author: Paul Adenot <[email protected]>
Date: Fri Oct 9 11:49:17 2015 +0200
Merge pull request #613 from rtoy/486-exponentialRamp-via-setTarget
Add note about using setTargetAtTime for exponential ramp to 0.
commit 71878c9e9367d19bbf3ba6148130550133d2a136
Author: Raymond Toy <[email protected]>
Date: Thu Oct 8 16:18:56 2015 -0700
Add note about using setTargetAtTime for exponential ramp to 0.
Also state in the formula that V0 and V1 must be both positive.
Fixes WebAudio/web-audio-api#486.
commit 31b9f642fd98a1888382df0da1a602f94f1bc8dc
Author: Raymond Toy <[email protected]>
Date: Thu Oct 8 15:33:45 2015 -0700
Update distance formulas to clamp the distance appropriately.
The distance formulas include appropriate clamping of the distances to
lie between d_ref and d_max (or infinity) as appropriate.
Fixes WebAudio/web-audio-api#326 and WebAudio/web-audio-api#328.
commit 3a7b300eaf4e65a20b85efec0cd25b39e495833a
Merge: dfdcc30 11463df
Author: Joe Berkovitz <[email protected]>
Date: Thu Oct 8 17:38:27 2015 -0400
Merge pull request #607 from WebAudio/43-disconnect-audio-param
Fix #43 by clarifying effect of disconnecting a node from an AudioPar…
commit 1c07de1b9f8f75226f215d156f94be7f334ce5a2
Author: joeberkovitz <[email protected]>
Date: Thu Oct 8 15:43:23 2015 -0400
Further changes to address #67 and #68.
commit 1d9b25e8938293e8bdd340b3ef626c8040053a04
Author: joeberkovitz <[email protected]>
Date: Thu Oct 8 15:36:49 2015 -0400
Fix #65 by clarifying copy-on-write behavior of WaveShaperNode.curve.
commit 11463dfbe504f7943d23d9875fd34374d4d5cadf
Author: joeberkovitz <[email protected]>
Date: Thu Oct 8 15:16:58 2015 -0400
Fix #43 by clarifying effect of disconnecting a node from an AudioParam on the parameter value.
Also separately document the actions of the various flavors of AudioNode.disconnect().
commit dfdcc30a86cfb068576f4252e505f9cfa953858e
Merge: 33c799f 0bde1b6
Author: Paul Adenot <[email protected]>
Date: Thu Oct 8 10:06:31 2015 +0200
Merge pull request #604 from WebAudio/tidy
Reformat the spec with tidy
commit 0bde1b60c3c970c67baff5f74112e1d1ecbac22d
Author: Paul Adenot <[email protected]>
Date: Thu Oct 8 10:04:33 2015 +0200
Add a mini-manual to the Makefile
commit 74c7d165830dcec072876eba0017e4d5e39152a9
Author: Paul Adenot <[email protected]>
Date: Wed Oct 7 13:57:56 2015 +0200
Tidy the sources
commit 249996acc4f9d2dc5d222e2602352a06cdfce389
Author: Paul Adenot <[email protected]>
Date: Wed Oct 7 13:56:56 2015 +0200
Clean markup so that tidy does not complain
commit 1244048cd83d5035590041ec62f70f7642fd1b6e
Author: Paul Adenot <[email protected]>
Date: Wed Oct 7 13:43:39 2015 +0200
Add tooling for tidy
commit 33c799fdee0505da9f61c05466f9664abdecc8ae
Merge: 8b96dc0 f92bd46
Author: Paul Adenot <[email protected]>
Date: Wed Oct 7 08:43:58 2015 +0200
Merge pull request #605 from mark-buer/typo-fix
Fixes typo.
commit f92bd4628e83d0b0f5884a24dc9f5b9c05c28d81
Author: Mark Buer <[email protected]>
Date: Wed Oct 7 18:43:51 2015 +1300
Fixes typo.
commit 8b96dc0f06064796ae42ca2e1d05964546965a7f
Merge: 66801bd d4c05db
Author: Joe Berkovitz <[email protected]>
Date: Tue Oct 6 13:36:55 2015 -0400
Merge pull request #603 from WebAudio/40-connect-node-to-param
Fix #40 Add detail of connecting audio node to AudioParam.
commit d4c05db92d623a1eace1f2b319e9a82c7c408e43
Author: joeberkovitz <[email protected]>
Date: Tue Oct 6 09:15:05 2015 -0400
Change geometry of modulation arrow in diagram for clarity.
commit c192c6dda475bcf0065770262694a1c1909b0197
Author: joeberkovitz <[email protected]>
Date: Fri Oct 2 14:29:05 2015 -0400
Fix typos, improve readability of diagram.
commit c696c096ef2dc63546992d9aa672f8143e6d3414
Author: joeberkovitz <[email protected]>
Date: Thu Oct 1 13:20:05 2015 -0400
Fix #40 Add detail of connecting audio node to AudioParam.
commit 66801bd42e6e03f9052965043c00acc15d23bcdb
Merge: d2c891a 21a866f
Author: Bill Hofmann <[email protected]>
Date: Thu Oct 1 10:18:05 2015 -0700
Merge pull request #597 from WebAudio/314-OfflineAudioBuffer-sample-rate
Fix #314 - sample rate in createBuffer, OfflineAudioContext
commit d2c891af1cfe87bacab03be0b08f35cd727dde1f
Merge: 68cc257 22a3cc2
Author: Paul Adenot <[email protected]>
Date: Sun Sep 27 12:08:59 2015 +0200
Merge pull request #602 from rtoy/rtoy-fix-links
Fix some links and capitalizations
commit 22a3cc29d0b7fcb553a282fb54507dde91f38f81
Author: Raymond Toy <[email protected]>
Date: Fri Sep 25 15:47:07 2015 -0700
Fix some links and capitalizations
o The link linearRamp automation method in section "AudioParam
Interface" was incorrect.
o The name of the endTime parameter for exponentialRampToValue was not
correctly cased (endtime -> endTime).
o Use correct link for the value attribute in section "AudioParam
Transitions" and setTargetAtTime link.
o Remove undefined link for timeConstant that caused ReSpec to
complain.
commit 68cc257a74dd065deedfabbcea86711a40dfb09d
Merge: e1fe9fc 5070bcc
Author: Joe Berkovitz <[email protected]>
Date: Thu Sep 24 12:03:13 2015 -0500
Merge pull request #583 from WebAudio/128-clarify-param-value-setter
Fix #128: clarify effect of setting the value attribute with respect …
commit e1fe9fce3480ee12fd4501da99814aa022b21211
Merge: d87edde d40f632
Author: Paul Adenot <[email protected]>
Date: Thu Sep 24 15:00:37 2015 +0200
Merge pull request #600 from WebAudio/57-mimesniff
Link to the mimesniff spec in `decodeAudioData`
commit d87edde79910947024e5dfe906c72b3b443428d1
Merge: 64a44f0 a133600
Author: Paul Adenot <[email protected]>
Date: Thu Sep 24 15:00:14 2015 +0200
Merge pull request #393 from WebAudio/76-remove-dezippering
Remove dezippering from the spec
commit 64a44f0371ad6d63ef7cdeba2c350c88503570ca
Merge: fae5932 a1c9511
Author: Joe Berkovitz <[email protected]>
Date: Wed Sep 23 17:34:50 2015 -0500
Merge pull request #601 from WebAudio/8-behavior-of-unconnected-nodes
Add correct style for notes to comment on disconnected nodes
commit a1c9511169b7e651d24e4a403c9cbca005dd07d7
Author: joeberkovitz <[email protected]>
Date: Wed Sep 23 08:17:37 2015 -0500
Add correct style for notes to comment on disconnected nodes
commit d40f632ecd2b3bf6730eca476204b17791b395e6
Author: Paul Adenot <[email protected]>
Date: Wed Sep 23 11:15:51 2015 +0200
typo
commit ec9ac97156a5c3adf5edc289e7ab90c8addeba3b
Author: Paul Adenot <[email protected]>
Date: Wed Sep 23 11:05:25 2015 +0200
Link to the mimesniff spec in `decodeAudioData`
This fixes #57
commit fae59322265091a080dd15553fbb9e7f1c6ee3f5
Merge: 0d8fe47 f911b3b
Author: Paul Adenot <[email protected]>
Date: Wed Sep 23 11:01:16 2015 +0200
Merge pull request #586 from rtoy/5-audioparam-set-target-at-time-example
Fix #5: Add setTargetAtTime curve to example
commit 0d8fe479649a89d0ee7f89b4511d19a1e3a7f491
Merge: 129c492 3d48dc1
Author: Paul Adenot <[email protected]>
Date: Wed Sep 23 10:58:21 2015 +0200
Merge pull request #594 from WebAudio/25-delaynode-input-count-change
Clarify DelayNode behavior under changing channel count.
commit 129c4923b3bd6e49cc5aec1f30ddd03c39933ed5
Merge: 8ad0c70 0eb09db
Author: Paul Adenot <[email protected]>
Date: Wed Sep 23 10:56:33 2015 +0200
Merge pull request #590 from WebAudio/497/computed-playbackrate-and-pitch
Clarify that computedPlaybackRate must be implemented by resampling the audio.
commit 8ad0c7020529d636f181e1e1bafcdbc6a40f1c03
Merge: a77a57c 1bb6def
Author: Paul Adenot <[email protected]>
Date: Wed Sep 23 10:55:42 2015 +0200
Merge pull request #599 from rtoy/598-audio-cookbook-reference
#598: Adjust reference to Audio EQ Cookbook
commit a13360089a4ca13fdad4f1b1bf44be90b4e6004b
Author: Paul Adenot <[email protected]>
Date: Wed Sep 23 10:51:56 2015 +0200
Remove dezippering.
This fixes #76.
commit a77a57c9c777277798f6d8805be9faa40d49bf02
Merge: d35e331 952154a
Author: Paul Adenot <[email protected]>
Date: Wed Sep 23 10:43:02 2015 +0200
Merge pull request #591 from WebAudio/565/type-index-copyfromtochannel
Use `unsigned long` for index type in copyFromChannel and copyToChannel.
commit d35e331ae05afaad3fc83ae60a4b25ae86be5867
Merge: 55df8cf 5d2c203
Author: Paul Adenot <[email protected]>
Date: Wed Sep 23 10:39:36 2015 +0200
Merge pull request #588 from WebAudio/567-copyToChannel-clarification
Clarify the meaning of the operation "acquire the content".
commit 55df8cfbadb97215596d9be35c83c1173c520e7d
Merge: 60f882a b377dcb
Author: Paul Adenot <[email protected]>
Date: Wed Sep 23 10:23:58 2015 +0200
Merge pull request #500 from WebAudio/460-suspend-currentTime
Clarify that currentTime does not increase when the context is not "running"
commit 60f882a608276b5bfc98ff4725d6de8bf5aea73e
Merge: 1100547 c81171f
Author: Paul Adenot <[email protected]>
Date: Wed Sep 23 10:23:13 2015 +0200
Merge pull request #596 from WebAudio/32-link-usecases
Add reference(s) to use cases in intro + near end
commit 1bb6def4176138615c400b1ef8aff27d636c1cf8
Author: Raymond Toy <[email protected]>
Date: Tue Sep 15 08:48:59 2015 -0700
Fix #598: Adjust reference to Audio EQ Cookbook
Instead of saying the biquad formulas from the cookbook, say they're
inspired by the cookbook because the many of formulas are different
from the ones in the cookbook.
commit 21a866fb4352968373b81cbda3b8d40000e0d9c0
Author: Bill Hofmann <[email protected]>
Date: Mon Sep 14 14:35:13 2015 -0700
Fix #314 - remove text that should stay in createBuffer not OfflineAudioContext,
fix grammar (a NotSupported... vs an NotSupported...)
commit 1d7fb4d634d5e3f07014ca796e9fc18538d302c3
Author: Bill Hofmann <[email protected]>
Date: Mon Sep 14 11:32:27 2015 -0700
Fix #314, refer to createBuffer for valid value ranges for
OfflineAudioContext constructor
commit 1660c89e0408981b64cb45f0be14e83b1be0fbbb
Author: Bill Hofmann <[email protected]>
Date: Sun Sep 13 19:41:34 2015 -0700
Fix sample rate in createBuffer, OfflineAudioContext
commit 110054734ae87c240304a46098beb674b25669be
Merge: d81ffd6 b087263
Author: Bill Hofmann <[email protected]>
Date: Fri Sep 11 12:01:39 2015 -0700
Merge pull request #579 from WebAudio/385-Throw-typeerror-for-out-of-range
Fix #385, TypeError for out of range values
commit b087263eb4662c5ccc927c02f47f8fdf0c8cc19f
Author: Bill Hofmann <[email protected]>
Date: Fri Sep 11 11:23:45 2015 -0700
remove swap file from UI merge tool
commit d81ffd6f5a337db7847b2fd79ea6db413e1435bf
Merge: 4d82495 1f9c1cd
Author: Joe Berkovitz <[email protected]>
Date: Fri Sep 11 13:49:34 2015 -0400
Merge pull request #592 from WebAudio/8-behavior-of-unconnected-nodes
Clarify uninterrupted operations of unconnected nodes
commit 4d82495f1bbfbfe7501808ee0eb8068cfd32974e
Merge: 6a37cee b797317
Author: Joe Berkovitz <[email protected]>
Date: Fri Sep 11 13:48:21 2015 -0400
Merge pull request #593 from WebAudio/17-invalid-createScriptProcessor-args
Clarify error thrown for invalid createScriptProcessor() arguments.
commit b797317b1676ca5e886e54b84b07a4daee0d676b
Author: joeberkovitz <[email protected]>
Date: Fri Sep 11 13:10:15 2015 -0400
Fix typo 'parametter' -> 'parameter'
commit 1f9c1cd0f44a2779750ac72d8a9b34cfc1fbf1cf
Author: joeberkovitz <[email protected]>
Date: Fri Sep 11 12:17:19 2015 -0400
Add note on resource usage of disconnected nodes
commit c81171fa141671a7c6347b588c47c3bcd3c386b0
Author: Bill Hofmann <[email protected]>
Date: Thu Sep 10 15:46:01 2015 -0700
Add reference(s) to use cases in intro + near end
commit f911b3b4900fa45847221f59c6de24a39fb51eab
Author: Raymond Toy <[email protected]>
Date: Thu Sep 10 14:29:29 2015 -0700
Updated graph with additional annotation.
commit dee594be263d7571c5bc74f262c00266efca3190
Author: Raymond Toy <[email protected]>
Date: Thu Sep 10 14:29:09 2015 -0700
Add comment on where the graph for audioparam automation example comes
from.
commit 3d48dc1178234d6fc76f22644304b04dd99bbb28
Author: joeberkovitz <[email protected]>
Date: Thu Sep 10 13:10:44 2015 -0400
Clarify DelayNode behavior under changing channel count.
commit 6a37ceedbbdea17180ae07dea7dacd4e10687140
Merge: ad41d95 cc0aba1
Author: rtoy <[email protected]>
Date: Thu Sep 10 09:58:07 2015 -0700
Merge pull request #556 from rtoy/323-define-iir-filter
Fix #323: Add IIRFilterNode
commit b028046578c9556964048fc2df96e26007e991f9
Author: joeberkovitz <[email protected]>
Date: Thu Sep 10 12:54:13 2015 -0400
Clarify error thrown for invalid createScriptProcessor() arguments.
commit 952154acfdcbfbe441f43e6c2005ea92bf33606c
Author: Paul Adenot <[email protected]>
Date: Thu Sep 10 18:41:15 2015 +0200
Use `unsigned long` for index type in copyFromChannel and copyToChannel.
This fixes #565
commit 1359abe134e304c14912a99fee0ce0961f510999
Author: joeberkovitz <[email protected]>
Date: Thu Sep 10 12:40:50 2015 -0400
Clarify uninterrupted operations of unconnected nodes
commit 0eb09db5499be281989d3a94c1ae57bc7cda340f
Author: Paul Adenot <[email protected]>
Date: Thu Sep 10 18:38:18 2015 +0200
Clarify that computedPlaybackRate must be implemented by resampling the audio.
This fixes #497.
commit cd68607f28a5f3e1eacd60997f1b0a0a8d863657
Merge: 3c54ced ad41d95
Author: Bill Hofmann <[email protected]>
Date: Thu Sep 10 09:30:28 2015 -0700
Merge branch 'gh-pages' into 385-Throw-typeerror-for-out-of-range
# Conflicts:
# index.html
commit 5d2c203fde2d863b11c884267b45650def4023ba
Author: Paul Adenot <[email protected]>
Date: Thu Sep 10 18:23:09 2015 +0200
Clarify the meaning of the operation "acquire the content".
This fixes #567
commit ad41d954cde622fe453541cd129e1d0ddf42774f
Merge: 0099005 cf2dd4e
Author: Paul Adenot <[email protected]>
Date: Thu Sep 10 18:10:03 2015 +0200
Merge pull request #585 from rtoy/584-clarify-biquad-get-frequency-response-
Describe constraints for getFrequencyResponse.
commit 47f2206b79ba0b9e5c41b9abb3ad6de1218d8309
Author: Raymond Toy <[email protected]>
Date: Thu Sep 3 15:45:18 2015 -0700
Fix #5: Add setTargetAtTime curve to example
The graph of parameter automation is updated to include an example of
setTargetAtTime with the code update appropriately. The graph also
includes some simple annotation of each part and also gives an example
of how to have another automation follow a setTargetAtTime. A
setValueAtTime is required to terminate the setTargetAtTime and give a
starting value for the following exponentialRampToValueAtTime.
commit cf2dd4e52179b47b6c2db4e97c3bfcf44793984a
Author: Raymond Toy <[email protected]>
Date: Thu Aug 27 14:34:10 2015 -0700
Describe constraints for getFrequencyResponse.
commit cc0aba16fa0c84f13fd86542469944646754483a
Author: Raymond Toy <[email protected]>
Date: Thu Aug 27 14:28:12 2015 -0700
Describe constraints for getFrequencyResponse.
commit 5070bcc5efe91ef5117005c20c7d189fb3708e11
Author: joeberkovitz <[email protected]>
Date: Thu Aug 27 13:37:09 2015 -0400
Fix #128: clarify effect of setting the value attribute with respect to equivalent parameter automation action.
commit 0099005cbb714c81706b6d706f56dfcd9a39896d
Merge: 60e3b28 622e6e4
Author: Paul Adenot <[email protected]>
Date: Thu Aug 27 18:27:03 2015 +0200
Merge pull request #570 from rtoy/131-setvaluecurveattime-linear-interp
Fix #131: specify linear interpolation for setValueCurveAtTime
commit 60e3b280f74ff5a9c85042d127a6218a6b7663cf
Merge: 32ade10 f079694
Author: Paul Adenot <[email protected]>
Date: Thu Aug 27 18:26:56 2015 +0200
Merge pull request #568 from rtoy/564-add-description-automation-parameters
Fix #564: Add descriptions of the parameters for automation functions.
commit 32ade10b32772f63ce361d9be8a84f694e2a0659
Merge: 4a6f0b2 9ded403
Author: Paul Adenot <[email protected]>
Date: Thu Aug 27 18:26:32 2015 +0200
Merge pull request #580 from WebAudio/536-cancelscheduledvalue
Clarify cancelScheduledValues behavior for setTargetAtTime
commit b377dcb279f92c9c4f93705a3985e0a553e5330d
Author: Paul Adenot <[email protected]>
Date: Thu Aug 27 18:23:36 2015 +0200
Clarify that currentTime does not increase when the context is not "running".
This fixes issue #460
commit f752ca1db6933036aed302610997557dc3a4fa3a
Author: Raymond Toy <[email protected]>
Date: Thu Aug 27 09:20:22 2015 -0700
Fix typo.
commit 9ded4034328d628aa6ebd28cbc07c9078907932c
Author: Bill Hofmann <[email protected]>
Date: Thu Aug 27 15:56:04 2015 +0900
Clarify cancelScheduledValues behavior for setTargetAtTime
commit 5010ee078bd114fab2b0c978f4995d50c1db0a14
Author: Raymond Toy <[email protected]>
Date: Wed Aug 26 09:11:46 2015 -0700
Use feedback and feedforward instead of a and b.
commit 3c54ced0a8b77c4a21109bcdb30b1d20c15d6be1
Author: Bill Hofmann <[email protected]>
Date: Tue Aug 25 21:18:03 2015 +0900
Fix grammar - An TypeError --> A TypeError
commit 4a6f0b21d84d9636cf4c04a94fa2e5ca0ad852f1
Merge: 989682d bfa7dc2
Author: Paul Adenot <[email protected]>
Date: Tue Aug 25 11:35:29 2015 +0200
Merge pull request #578 from WebAudio/512-audiobuffersourcenode-clarification
Clarify use of AudioBufferSourceNode and provide recommendation for non-memory assets
commit ab8d1e1d5a68e43aad9647591ffc5b86eddbdfe9
Author: Bill Hofmann <[email protected]>
Date: Tue Aug 25 15:13:56 2015 +0900
Fix #385, TypeError for out of range values
commit bfa7dc21f23d08338251d9d010486469d1da2317
Author: Bill Hofmann <[email protected]>
Date: Tue Aug 25 10:04:45 2015 +0900
Clarify use of AudioBufferSourceNode and provide recommendation for non-memory assets
commit 989682d762309b8873b15d5af05c29fff58467be
Merge: fd46ec7 be374a5
Author: Paul Adenot <[email protected]>
Date: Mon Aug 24 11:48:27 2015 +0200
Merge pull request #576 from WebAudio/297-AudioBufferSourceNode-multiple-stop
Update wording for AudioBufferSourceNode start (called only once) and stop (can be called multiple times).
commit be374a50bf1d3fa7c48d2ebfcf51126bb69c06c7
Author: Bill Hofmann <[email protected]>
Date: Mon Aug 24 17:30:27 2015 +0900
Update wording for AudioBufferSourceNode start (called only once)
and stop (can be called multiple times).
commit fd46ec7dfa5755b23d74295c44f8d0b6d70f1287
Merge: c31a787 95c65b7
Author: Paul Adenot <[email protected]>
Date: Mon Aug 17 12:53:51 2015 +0200
Merge pull request #574 from rtoy/572-set-value-at-time
Fix 572: add links to the appropriate entries.
commit 95c65b70f34b5401e9ba4c09d9a5e736d19426d9
Author: Raymond Toy <[email protected]>
Date: Fri Aug 14 16:25:51 2015 -0700
Fix 572 adding links to the appropriate entries.
commit 53a6b4a9c18fdd69420fbf7026ba80115f851c6d
Author: Raymond Toy <[email protected]>
Date: Thu Aug 13 08:32:35 2015 -0700
o Some HTML improvements to show links.
o Add text about invalid coefficient settings.
o Add the difference equation to make it clearer what the coefficients
are.
commit 89d66ef10d9e65722341f043740697164ededcf4
Merge: 3b452b1 c31a787
Author: Raymond Toy <[email protected]>
Date: Tue Aug 11 12:49:36 2015 -0700
Merge branch 'gh-pages' into 323-define-iir-filter
commit 622e6e46128332262e5dadf0de2ff9de4ca62335
Author: Raymond Toy <[email protected]>
Date: Wed Jul 29 11:21:31 2015 -0700
Remove interpolation formula and just say linear interpolation is
used.
commit 38b835339e19b80852dc7e0dc8889e764bfbccd1
Author: Raymond Toy <[email protected]>
Date: Tue Jul 28 12:34:27 2015 -0700
Fix #131: define setValueCurveAtTime to use linear interpolation
commit f079694b2157ba0cdadb398c3b2592d31cf749d8
Author: Raymond Toy <[email protected]>
Date: Fri Jul 24 12:38:27 2015 -0700
Fix #564: Add descriptions of the parameters for automation functions.
This moves the description of the parameters for each automation
function from the paragraphs to the description box in the parameter
list.
commit c31a787402fa9a1994776c99cfa1176ff4e896e1
Merge: 8b4960b a0de6df
Author: Paul Adenot <[email protected]>