-
Notifications
You must be signed in to change notification settings - Fork 1
/
log.html
7654 lines (5139 loc) · 270 KB
/
log.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<!--<title></title>-->
<style type="text/css">
body {background-color: black;}
pre {
font-weight: normal;
color: #bbb;
white-space: -moz-pre-wrap;
white-space: -o-pre-wrap;
white-space: -pre-wrap;
white-space: pre-wrap;
word-wrap: break-word;
}
b {font-weight: normal}
b.BLK {color: #000}
b.BLU {color: #00a}
b.GRN {color: #0a0}
b.CYN {color: #0aa}
b.RED {color: #a00}
b.MAG {color: #a0a}
b.YEL {color: #aa0}
b.WHI {color: #aaa}
b.HIK {color: #555}
b.HIB {color: #55f}
b.HIG {color: #5f5}
b.HIC {color: #5ff}
b.HIR {color: #f55}
b.HIM {color: #f5f}
b.HIY {color: #ff5}
b.HIW {color: #fff}
b.BOLD {color: #fff}
b.BBLK {background-color: #000}
b.BBLU {background-color: #00a}
b.BGRN {background-color: #0a0}
b.BCYN {background-color: #0aa}
b.BRED {background-color: #a00}
b.BMAG {background-color: #a0a}
b.BYEL {background-color: #aa0}
b.BWHI {background-color: #aaa}
b.ITA {font-style: italic}
b.UND {text-decoration: underline}
b.BLI {text-decoration: blink}
b.UNDBLI {text-decoration: underline blink}
</style>
</head>
<body>
<pre><b class="YEL">commit a3a1c6593cfbd29ed37d83b01826e423f3f1894b</b>
Author: Paul Adenot <[email protected]>
Date: Thu Aug 10 18:35:26 2017 +0200
Allow passing `null` to AudioBufferSourceNode.buffer. (#1288)
This fixes #1273.
index.html | 4 <b class="GRN">++</b><b class="RED">--</b>
1 file changed, 2 insertions(+), 2 deletions(-)
<b class="YEL">commit e19baea123f9dac03b03ba7cb5e3722fb5e61972</b>
Author: rtoy <[email protected]>
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 <b class="GRN">++++++++++</b><b class="RED">-</b>
1 file changed, 10 insertions(+), 1 deletion(-)
<b class="YEL">commit 0c80e57aff6ad354a9f9902e5245b0198ebedd76</b>
Author: Paul Adenot <[email protected]>
Date: Thu Aug 10 18:10:42 2017 +0200
Specify the DynamicsCompressor (#1278)
images/compression-curve.svg | 175 <b class="GRN">+++++++++++++</b>
images/dynamicscompressor-internal-graph.svg | 377 <b class="GRN">+++++++++++++++++++++++++++</b>
index.html | 303 <b class="GRN">++++++++++++++++++++</b><b class="RED">-</b>
3 files changed, 853 insertions(+), 2 deletions(-)
<b class="YEL">commit fa251f953d48d7482d2769bcb26a053c2edd8f8b</b>
Author: rtoy <[email protected]>
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 <b class="GRN">+</b><b class="RED">-</b>
1 file changed, 1 insertion(+), 1 deletion(-)
<b class="YEL">commit d107ea68daa8b2891250b7a69161718a6d7efe5e</b>
Author: Chris Lilley <[email protected]>
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 <b class="GRN">++++++++++++++++++++++++++++++</b><b class="RED">-------------------------------</b>
1 file changed, 112 insertions(+), 112 deletions(-)
<b class="YEL">commit 2d8bb9311a0e21bd69cfab926cc1360a9f6e1c48</b>
Merge: 275e1d6 2aef8af
Author: Joe Berkovitz <[email protected]>
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"
<b class="YEL">commit 2aef8af299ac75f81fa650fa3030324f9e7e36f9</b>
Author: joeberkovitz <[email protected]>
Date: Wed Aug 2 14:47:48 2017 -0400
Fix broken link identifier.
index.html | 4 <b class="GRN">++</b><b class="RED">--</b>
1 file changed, 2 insertions(+), 2 deletions(-)
<b class="YEL">commit 275e1d66722e95cbebbbb392ebf40b02703b429e</b>
Author: jdsmith3000 <[email protected]>
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 <b class="GRN">+++++++++++++++++++++++++++++++++++++++++++++++++++++++</b><b class="RED">------</b>
1 file changed, 295 insertions(+), 29 deletions(-)
<b class="YEL">commit f4a6a69b2bfb42e00b4da93b13c3227cc2b562a3</b>
Author: rtoy <[email protected]>
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 <b class="GRN">++++++++++++++++++++++++++++++++++++++++++++</b><b class="RED">-----------------</b>
1 file changed, 128 insertions(+), 48 deletions(-)
<b class="YEL">commit d99de23c6bd84f35bb16b564157c08e0397c18f0</b>
Merge: f36c8e3 33f42e0
Author: Hongchan Choi <[email protected]>
Date: Fri Jul 7 10:54:05 2017 -0700
Merge pull request #1270 from hoch/update-makefile-gitignore
Update Makefile and gitignore
<b class="YEL">commit 33f42e0d5654306e5dd7acb59853b9fec9d4652b</b>
Author: Hongchan Choi <[email protected]>
Date: Fri Jul 7 10:49:14 2017 -0700
Update Makefile and gitignore
.gitignore | 1 <b class="GRN">+</b>
Makefile | 2 <b class="GRN">+</b><b class="RED">-</b>
2 files changed, 2 insertions(+), 1 deletion(-)
<b class="YEL">commit f36c8e3e012dd44ff9bf2d17015170f7ac05a606</b>
Merge: cec3b04 7ee9978
Author: Joe Berkovitz <[email protected]>
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.
<b class="YEL">commit 7ee997857886705889094aea389795a097c543dc</b>
Author: joeberkovitz <[email protected]>
Date: Wed Jun 21 16:44:23 2017 -0400
Fix wrong use of ‘var’ in Vec3 class
index.html | 18 <b class="GRN">+++++++</b><b class="RED">-----------</b>
1 file changed, 7 insertions(+), 11 deletions(-)
<b class="YEL">commit a1b8b4c739e7c8349143851db1d0a040c38604d9</b>
Author: joeberkovitz <[email protected]>
Date: Wed Jun 21 16:43:23 2017 -0400
Use ‘let’ consistently instead of ‘var’
index.html | 14 <b class="GRN">+++++++</b><b class="RED">-------</b>
1 file changed, 7 insertions(+), 7 deletions(-)
<b class="YEL">commit f1cb3b5eca874a0355806456244064ff0e61adab</b>
Author: joeberkovitz <[email protected]>
Date: Wed Jun 21 16:37:13 2017 -0400
Change acos() to Math.acos() in example code
index.html | 4 <b class="GRN">++</b><b class="RED">--</b>
1 file changed, 2 insertions(+), 2 deletions(-)
<b class="YEL">commit e6821c444331a3244bd42b61c45bcb3cf1d442db</b>
Author: joeberkovitz <[email protected]>
Date: Wed Jun 21 16:33:50 2017 -0400
Clean up zero-vector case in Vec3.magnitude
index.html | 5 <b class="GRN">++++</b><b class="RED">-</b>
1 file changed, 4 insertions(+), 1 deletion(-)
<b class="YEL">commit a099732cabb24dd6e800d86b68c4629dc8ea89ba</b>
Author: joeberkovitz <[email protected]>
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 <b class="GRN">+++++++++++++++++++++++++++++++++++++++</b><b class="RED">----------------------</b>
1 file changed, 91 insertions(+), 50 deletions(-)
<b class="YEL">commit cec3b04d9b17eeea4b0b1a181acb6cb25388d893</b>
Author: Matthew Paradis <[email protected]>
Date: Wed Jun 21 20:39:43 2017 +0100
fix for #987 (#1253)
index.html | 9 <b class="GRN">+++++++++</b>
1 file changed, 9 insertions(+)
<b class="YEL">commit 4c151b1edbefd7f0107be97aa5cb6148020dd299</b>
Merge: 20ad5a4 c9ab9a5
Author: rtoy <[email protected]>
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
<b class="YEL">commit 20ad5a4cd58766615b6a52ed4f9520da1099b50a</b>
Author: Joe Berkovitz <[email protected]>
Date: Wed Jun 21 15:35:43 2017 -0400
Clean up definitions of automation events and times. (#1258)
index.html | 76 <b class="GRN">+++++++++++++++++++++++++++++++++++++</b><b class="RED">-------------------------</b>
1 file changed, 45 insertions(+), 31 deletions(-)
<b class="YEL">commit e6025a30cfd7e87f9333ed47f105acabfa785c91</b>
Author: Hongchan Choi <[email protected]>
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 <b class="GRN">+++</b><b class="RED">-</b>
1 file changed, 3 insertions(+), 1 deletion(-)
<b class="YEL">commit 0a43dba29a3b68f1e927bb43ab1e507888fac85c</b>
Author: rtoy <[email protected]>
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 <b class="GRN">+</b><b class="RED">-</b>
1 file changed, 1 insertion(+), 1 deletion(-)
<b class="YEL">commit 58bce80ded87636aea43f0cd12a9590dd824f2f8</b>
Author: rtoy <[email protected]>
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 <b class="GRN">++++++++++++</b>
1 file changed, 12 insertions(+)
<b class="YEL">commit d6725cb7143266611912b591f72a26448c9813c8</b>
Merge: 45466f3 e38c4e7
Author: Joe Berkovitz <[email protected]>
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.
<b class="YEL">commit e38c4e749ecda85066dac6e3eaf9b2ab15bdf5fd</b>
Author: joeberkovitz <[email protected]>
Date: Wed Jun 21 14:54:51 2017 -0400
Respond to @padenot’s feedback
index.html | 5 <b class="GRN">+++</b><b class="RED">--</b>
1 file changed, 3 insertions(+), 2 deletions(-)
<b class="YEL">commit c9ab9a508c9dcfc73dfb64d619d586f3717f1a7a</b>
Author: Paul Adenot <[email protected]>
Date: Wed Jun 21 14:44:53 2017 -0400
Tidy the document.
index.html | 3 <b class="GRN">+</b><b class="RED">--</b>
1 file changed, 1 insertion(+), 2 deletions(-)
<b class="YEL">commit edf6e3b736624447aaab9fb80b24108a900fd694</b>
Author: Paul Adenot <[email protected]>
Date: Wed Jun 21 14:38:28 2017 -0400
Bump the tidy version.
Makefile | 2 <b class="GRN">+</b><b class="RED">-</b>
1 file changed, 1 insertion(+), 1 deletion(-)
<b class="YEL">commit 550ca64f544bb324b87587977b84c82439809262</b>
Author: Paul Adenot <[email protected]>
Date: Wed Jun 21 14:30:06 2017 -0400
Use travis caching to speed up tidy checks.
.travis.yml | 3 <b class="GRN">+++</b>
1 file changed, 3 insertions(+)
<b class="YEL">commit 1da6555bf8097ae5c2b56551d293c58b89b9264b</b>
Author: joeberkovitz <[email protected]>
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 <b class="GRN">+++++++++++++++</b><b class="RED">---------</b>
1 file changed, 15 insertions(+), 9 deletions(-)
<b class="YEL">commit 37db59cbbcaccb8bb8e809c913ae0c54d6de0a48</b>
Author: joeberkovitz <[email protected]>
Date: Wed Jun 21 12:41:05 2017 -0400
Clarify language in rendering loop concerning last-computed AudioParam value.
index.html | 3 <b class="GRN">+</b><b class="RED">--</b>
1 file changed, 1 insertion(+), 2 deletions(-)
<b class="YEL">commit 669d6c9266420a90a251f3da333f25ffda2cb00a</b>
Author: joeberkovitz <[email protected]>
Date: Wed Jun 21 12:24:37 2017 -0400
Specify that AudioParam.value returns the most recent computed value.
index.html | 31 <b class="GRN">+++++++++++++++++++++</b><b class="RED">----------</b>
1 file changed, 21 insertions(+), 10 deletions(-)
<b class="YEL">commit 45466f301dde5db778d9c5f1417e2dc4ff69aed5</b>
Merge: 04653b7 39f682e
Author: Hongchan Choi <[email protected]>
Date: Wed Jun 21 12:18:29 2017 -0400
Merge pull request #1249 from hoch/audioworkletnode-processorstate
Add `AudioWorkletProcessorState` on AudioWorkletNode
<b class="YEL">commit 39f682ef41c8fffb1dbcefee2303c226ec3bed83</b>
Author: hoch <[email protected]>
Date: Wed Jun 21 12:16:17 2017 -0400
Apply tidy
index.html | 6 <b class="GRN">+++</b><b class="RED">---</b>
1 file changed, 3 insertions(+), 3 deletions(-)
<b class="YEL">commit 98a26f94ba126881057e5942d1f9840aa87b44ef</b>
Author: hoch <[email protected]>
Date: Wed Jun 21 12:07:38 2017 -0400
Remove onprocessorerror EventHandler from AWN
index.html | 12 <b class="GRN">+</b><b class="RED">-----------</b>
1 file changed, 1 insertion(+), 11 deletions(-)
<b class="YEL">commit 04653b769b7241eebcf03d140fea758dac9392f8</b>
Merge: a4e5c0a f4e3c43
Author: Matthew Paradis <[email protected]>
Date: Wed Jun 21 17:05:33 2017 +0100
Merge branch 'gh-pages' of github.com:WebAudio/web-audio-api into gh-pages
<b class="YEL">commit a4e5c0a95180eb5cbbded08f1928791b892153c8</b>
Author: Matthew Paradis <[email protected]>
Date: Wed Jun 21 17:04:01 2017 +0100
updating cr transition document with wac details
webaudio-CR-transition.md | 15 <b class="GRN">++++++++++++</b><b class="RED">---</b>
1 file changed, 12 insertions(+), 3 deletions(-)
<b class="YEL">commit f4e3c432573da17f03320e8853fba2c1c918f374</b>
Merge: 7aba7ad f62bf34
Author: Joe Berkovitz <[email protected]>
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
<b class="YEL">commit 21ba6c9c8dd91acdad9cea0f903d63e13bce611a</b>
Author: hoch <[email protected]>
Date: Wed Jun 21 12:00:59 2017 -0400
Adding tag and applying tidy
index.html | 4 <b class="GRN">++</b><b class="RED">--</b>
1 file changed, 2 insertions(+), 2 deletions(-)
<b class="YEL">commit f9e4e4c83fbc4f2a6c215e5c6e0ca8d1b854de24</b>
Author: hoch <[email protected]>
Date: Wed Jun 21 11:59:02 2017 -0400
More refinements
index.html | 22 <b class="GRN">+++++++++++</b><b class="RED">-----------</b>
1 file changed, 11 insertions(+), 11 deletions(-)
<b class="YEL">commit 7aba7ad22d3f208be8c42f74f38a9256237a2eca</b>
Author: Paul Adenot <[email protected]>
Date: Wed Jun 21 11:52:10 2017 -0400
Run tidy
index.html | 21 <b class="GRN">++++++++++</b><b class="RED">-----------</b>
1 file changed, 10 insertions(+), 11 deletions(-)
<b class="YEL">commit f62bf34d8b088a53cf32a808ca9e5c8563aeb304</b>
Author: joeberkovitz <[email protected]>
Date: Wed Jun 21 11:48:51 2017 -0400
Fix if/else style nit in ABSN algorithm
index.html | 6 <b class="GRN">++</b><b class="RED">----</b>
1 file changed, 2 insertions(+), 4 deletions(-)
<b class="YEL">commit d86a350d5abd3a080c1a16a56819ba6bca91939d</b>
Author: Paul Adenot <[email protected]>
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 <b class="GRN">++++</b><b class="RED">----</b>
1 file changed, 4 insertions(+), 4 deletions(-)
<b class="YEL">commit 7d66466459c4f437d3fc7d379aac6c12d8cad159</b>
Author: joeberkovitz <[email protected]>
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 <b class="GRN">++++</b>
1 file changed, 4 insertions(+)
<b class="YEL">commit cbc03f1f08052a5e5fcf52601bb6c061558e4b3c</b>
Merge: 8b44201 0d556e0
Author: Joe Berkovitz <[email protected]>
Date: Wed Jun 21 11:35:00 2017 -0400
Merge pull request #1251 from WebAudio/1095-loop-description
Clarify non-normative loop description
<b class="YEL">commit 0d556e04deafd32479a4a5aceb24ba04a2be66b7</b>
Author: joeberkovitz <[email protected]>
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 <b class="GRN">+++</b><b class="RED">--</b>
1 file changed, 3 insertions(+), 2 deletions(-)
<b class="YEL">commit 083762efab60b0125afe57d731a85b6389501539</b>
Author: joeberkovitz <[email protected]>
Date: Wed Jun 21 11:21:17 2017 -0400
Add language on subsample accuracy of loop endpoints.
index.html | 7 <b class="GRN">+++++++</b>
1 file changed, 7 insertions(+)
<b class="YEL">commit 34df34fa39889ec9af9bdf1af0d7007e29c44f53</b>
Author: joeberkovitz <[email protected]>
Date: Wed Jun 21 11:13:49 2017 -0400
Clarify non-normative loop description
index.html | 65 <b class="GRN">+++++++++++++++++++++++++++++++++++</b><b class="RED">---------------------------</b>
1 file changed, 37 insertions(+), 28 deletions(-)
<b class="YEL">commit f0e311dbd225700dfd72a309cdf37698fe704f60</b>
Author: hoch <[email protected]>
Date: Wed Jun 21 11:12:17 2017 -0400
Change languages around active source flag and state property
index.html | 33 <b class="GRN">+++++++++++++++++++</b><b class="RED">--------------</b>
1 file changed, 19 insertions(+), 14 deletions(-)
<b class="YEL">commit 1fed01b9af78dd44b1224217426104dafe329bef</b>
Author: hoch <[email protected]>
Date: Thu Jun 15 15:00:16 2017 -0700
Initial commit
index.html | 60 <b class="GRN">++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++</b>
1 file changed, 60 insertions(+)
<b class="YEL">commit 8b442013210567a6e606f439470635ee17013c2d</b>
Author: Paul Adenot <[email protected]>
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 <b class="GRN">+</b><b class="RED">-</b>
1 file changed, 1 insertion(+), 1 deletion(-)
<b class="YEL">commit a26176b529880b3a7030cc9d2b1b8ba75c92ff7c</b>
Merge: ad2b83f dae6b07
Author: Hongchan Choi <[email protected]>
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`
<b class="YEL">commit dae6b07245cfb2605ee8cbfdab2e36dde100be69</b>
Author: hoch <[email protected]>
Date: Wed Jun 21 09:17:52 2017 -0400
Addressed comments from @rtoy
index.html | 4 <b class="GRN">++</b><b class="RED">--</b>
1 file changed, 2 insertions(+), 2 deletions(-)
<b class="YEL">commit ad2b83f7b032d3005c7d263b29158754df524d88</b>
Merge: fb7bb7e 4c896b0
Author: rtoy <[email protected]>
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
<b class="YEL">commit fb7bb7e44b543c578036d140a5949c229ce0a0e9</b>
Merge: bc40f98 d28e11e
Author: Joe Berkovitz <[email protected]>
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
<b class="YEL">commit bc40f9841b85e7426fd0f2d9e4c31be9dd237c33</b>
Merge: 6adaac7 d9de610
Author: rtoy <[email protected]>
Date: Tue Jun 20 06:17:39 2017 -0700
Merge pull request #1237 from rtoy/1208-clarify-panning-algorithm
Fix #1208: Clarify panning algorithms
<b class="YEL">commit b5bc754d9e93230cfd3fc387e891cf7fa47b08a4</b>
Author: hoch <[email protected]>
Date: Fri Jun 16 08:50:48 2017 -0700
Added required keyword and default min/max values
index.html | 14 <b class="GRN">+++++++++</b><b class="RED">-----</b>
1 file changed, 9 insertions(+), 5 deletions(-)
<b class="YEL">commit 6adaac7567c69d9f9727b2773265f5ad55bd5a5e</b>
Merge: 504599f 419ddbb
Author: Hongchan Choi <[email protected]>
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>
<b class="YEL">commit 504599f46957bbdec3323332072adce0d0e1e52a</b>
Author: Paul Adenot <[email protected]>
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 <b class="GRN">+++++++++++++++++++++++++++++++</b><b class="RED">-------------------------------</b>
1 file changed, 33 insertions(+), 32 deletions(-)
<b class="YEL">commit aed709e466df75191ed829ed999545dd4c16dbf2</b>
Author: Paul Adenot <[email protected]>
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 <b class="GRN">+++++++++++++++++++++++++++++++++++++++</b><b class="RED">----------------------</b>
1 file changed, 129 insertions(+), 73 deletions(-)
<b class="YEL">commit fdba8a43925cd856ecf4a96cc34d0123ac13996f</b>
Author: Paul Adenot <[email protected]>
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 <b class="GRN">++++++++++++++++++++++++++++++++++++++++++++++++++++++++</b><b class="RED">------</b>
1 file changed, 70 insertions(+), 7 deletions(-)
<b class="YEL">commit 419ddbbe605148fbb314dece0f67a538f7d5feb1</b>
Author: hoch <[email protected]>
Date: Thu Jun 15 11:38:51 2017 -0700
Fix typo
index.html | 2 <b class="GRN">+</b><b class="RED">-</b>
1 file changed, 1 insertion(+), 1 deletion(-)
<b class="YEL">commit 8083575423d06d1e9a04af15eac85f7bf6d5f3e2</b>
Author: hoch <[email protected]>
Date: Wed Jun 14 15:08:15 2017 -0700
Fix #1246: Adding record<DOMString, double>
index.html | 13 <b class="GRN">+++++++++++</b><b class="RED">--</b>
1 file changed, 11 insertions(+), 2 deletions(-)
<b class="YEL">commit a603d07cd8e2b0f86bee219131f4fa5de2e867dc</b>
Author: rtoy <[email protected]>
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 <b class="GRN">++</b><b class="RED">---</b>
1 file changed, 2 insertions(+), 3 deletions(-)
<b class="YEL">commit d28e11ecb55c3af8f6e2ea50efd419e0053e222f</b>
Author: Paul Adenot <[email protected]>
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 <b class="GRN">+++++++++++++</b><b class="RED">-----------</b>
1 file changed, 13 insertions(+), 11 deletions(-)
<b class="YEL">commit 6540f808f33f88b4febf7f9d3fffcf864cd4fa82</b>
Author: Joe Berkovitz <[email protected]>
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 <b class="GRN">+++++++++++++++++++++++++++++++++</b><b class="RED">-----------------------</b>
1 file changed, 33 insertions(+), 23 deletions(-)
<b class="YEL">commit 1d3bb802286caecc2df853cde8773acbbad4dbf9</b>
Author: Hongchan Choi <[email protected]>
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 <b class="GRN">+++++++++++++++++++</b><b class="RED">-------------------------------------------</b>
1 file changed, 23 insertions(+), 54 deletions(-)
<b class="YEL">commit d9de6100328eb3627dc9712158ec313adee510c2</b>
Author: Raymond Toy <[email protected]>
Date: Wed Jun 7 13:59:27 2017 -0700
Fix typos
index.html | 4 <b class="GRN">++</b><b class="RED">--</b>
1 file changed, 2 insertions(+), 2 deletions(-)
<b class="YEL">commit 4c896b01dc85ca54d046903bd27fafedc9909cdb</b>
Author: Raymond Toy <[email protected]>
Date: Wed Jun 7 13:55:13 2017 -0700
Fix typo
index.html | 2 <b class="GRN">+</b><b class="RED">-</b>
1 file changed, 1 insertion(+), 1 deletion(-)
<b class="YEL">commit f9bce1e3d4169230bb01a8da9da0d0a92ffefca2</b>
Merge: d9254c6 eeba3cb
Author: rtoy <[email protected]>
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
<b class="YEL">commit d9254c6edf195adb9d0fe91a3487dbbe791c23e6</b>
Merge: 52d53de 842e078
Author: Hongchan Choi <[email protected]>
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
<b class="YEL">commit eeba3cb8224a40e58e4908ac999bd64750cea96f</b>
Author: Raymond Toy <[email protected]>
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 <b class="GRN">++++</b>
1 file changed, 4 insertions(+)
<b class="YEL">commit 3d1375b6f3cb949161e59015f6f15962fe5653f7</b>
Author: Raymond Toy <[email protected]>
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 <b class="GRN">++++++++++++++++++++++++++++++++++++</b><b class="RED">-------------------------</b>
1 file changed, 60 insertions(+), 42 deletions(-)
<b class="YEL">commit 842e0782c97b36b7ebfb4baa9af8ca918dee3695</b>
Author: hoch <[email protected]>
Date: Fri Jun 2 10:06:41 2017 -0700
Apply tidy
index.html | 5 <b class="GRN">++</b><b class="RED">---</b>
1 file changed, 2 insertions(+), 3 deletions(-)
<b class="YEL">commit 52d53de44b668801311a6ceb5be4764f53e4e344</b>
Merge: 7d1f044 dacc0e1
Author: Hongchan Choi <[email protected]>
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()
<b class="YEL">commit 41a23b5fe790fbfe3247326aa042415d7772837c</b>
Author: hoch <[email protected]>
Date: Fri Jun 2 09:57:51 2017 -0700
Change contextInfo attribute to getContextInfo() method
index.html | 10 <b class="GRN">+++++</b><b class="RED">-----</b>
1 file changed, 5 insertions(+), 5 deletions(-)
<b class="YEL">commit dacc0e10ad6fd3c9faab40c942c322a82a19c3d7</b>
Author: hoch <[email protected]>
Date: Fri Jun 2 09:27:25 2017 -0700
Rename .import() in examples to addModule()
index.html | 6 <b class="GRN">+++</b><b class="RED">---</b>
1 file changed, 3 insertions(+), 3 deletions(-)
<b class="YEL">commit 7d1f044d1544a7b1f92a28ab0b13f41a868e585e</b>
Merge: b017706 e915b1a
Author: rtoy <[email protected]>
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
<b class="YEL">commit e915b1a585c8c023cd5f44a0c8bf7aa11279c85e</b>
Author: Raymond Toy <[email protected]>
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 <b class="GRN">++</b><b class="RED">--</b>
1 file changed, 2 insertions(+), 2 deletions(-)
<b class="YEL">commit 6a7df213e0038208796706bc2e2e716885fa52cf</b>
Author: Raymond Toy <[email protected]>
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 <b class="GRN">+++++++++++++++++++++++++++++++</b><b class="RED">----------</b>
1 file changed, 31 insertions(+), 10 deletions(-)
<b class="YEL">commit b0177062ca566695978a085e3f4cd2c989ba48c5</b>
Merge: 2b99202 ebcb178
Author: rtoy <[email protected]>
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
<b class="YEL">commit ebcb1782cd982fa394e542c028404ab25ad18b1d</b>
Merge: f72473f 4ce80d5
Author: Raymond Toy <[email protected]>
Date: Fri May 26 09:12:50 2017 -0700
Merge branch 'gh-pages' into 1182-use-range-error-instead-of-type-error
<b class="YEL">commit 4ce80d56af89f84c58e90e314d1364c1f07eb521</b>
Merge: b2f1bc5 2b99202
Author: Raymond Toy <[email protected]>
Date: Fri May 26 09:12:18 2017 -0700
Merge branch 'gh-pages' of https://github.com/WebAudio/web-audio-api into gh-pages
<b class="YEL">commit f72473f3f746b6fa3eb155ee9f68e7ad503cd66c</b>
Merge: ce82ad5 b2f1bc5
Author: Raymond Toy <[email protected]>
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
<b class="YEL">commit b2f1bc5642a0e31f4ef6e2583c3bbd1b2a01c2f1</b>
Author: Raymond Toy <[email protected]>
Date: Wed Apr 19 11:13:09 2017 -0700
Tidy
index.html | 82 <b class="GRN">+++++++++++++++++++++++++++++++++++</b><b class="RED">---------------------------</b>
1 file changed, 46 insertions(+), 36 deletions(-)
<b class="YEL">commit 83d292cfa3fa9a21fbfd6adb0df9aa3f8af5d548</b>
Author: Raymond Toy <[email protected]>
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 <b class="GRN">+++++++++++++++++++++++++++++++</b><b class="RED">-------------------------------</b>
1 file changed, 35 insertions(+), 35 deletions(-)
<b class="YEL">commit 2b99202f8ccb0510563e38efb2af1b4d9d579482</b>
Merge: 67849c6 4fc7349
Author: rtoy <[email protected]>
Date: Fri May 26 09:04:45 2017 -0700
Merge pull request #1213 from rtoy/1211-add-synchronous-marker
Fix #1211: add synchronous marker
<b class="YEL">commit 67849c6b67e14be7eddffb13f9bb63bae6b24fa0</b>
Merge: 752d587 c0285a1
Author: Joe Berkovitz <[email protected]>
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
<b class="YEL">commit 752d587e0e2a6d440d880a957dd8c73cec7763d4</b>
Author: Philip Jägenstedt <[email protected]>
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 <b class="GRN">+</b>
1 file changed, 1 insertion(+)
<b class="YEL">commit 4fc73499636d38518e5d1a1506f7fcd295ab62c8</b>
Author: Raymond Toy <[email protected]>
Date: Wed Apr 19 11:13:09 2017 -0700
Tidy
index.html | 82 <b class="GRN">+++++++++++++++++++++++++++++++++++</b><b class="RED">---------------------------</b>
1 file changed, 46 insertions(+), 36 deletions(-)
<b class="YEL">commit ad0abdde7910bb7e6bb9f0eeecf72913902c4f62</b>
Author: Raymond Toy <[email protected]>
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 <b class="GRN">+++++++++++++++++++++++++++++++</b><b class="RED">-------------------------------</b>
1 file changed, 35 insertions(+), 35 deletions(-)
<b class="YEL">commit ce82ad53a5e7b1abb3a06d495f7be6247f8ed999</b>
Author: Raymond Toy <[email protected]>
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 <b class="GRN">+++++++++++++++++</b><b class="RED">-----------------</b>
1 file changed, 17 insertions(+), 17 deletions(-)