aboutsummaryrefslogtreecommitdiff
path: root/pd/delme
blob: 7363d2495bed60a5e60933c03a7f15c1a75f4ff5 (plain)
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
I pd/src/s_audio_alsa.c.old
I pd/extra/bonk~
I pd/extra/fiddle~
I pd/extra/loop~
I pd/extra/lrshift~
I pd/extra/expr~
I pd/extra/pique/pique.c.old
U pd/README.txt
U pd/LICENSE.txt
U pd/INSTALL.txt
N pd/delme
U pd/src/makefile
U pd/src/z.pd
C pd/src/configure
C pd/src/configure.in
U pd/src/makefile.dependencies
N pd/src/s_midi.c
U pd/src/d_arithmetic.c
C pd/src/d_array.c
C pd/src/d_ctl.c
U pd/src/d_dac.c
C pd/src/d_delay.c
U pd/src/d_fft.c
U pd/src/d_fftroutine.c
C pd/src/d_filter.c
C pd/src/d_global.c
U pd/src/d_math.c
U pd/src/d_mayer_fft.c
U pd/src/d_misc.c
U pd/src/d_osc.c
U pd/src/d_resample.c
U pd/src/d_soundfile.c
U pd/src/d_ugen.c
C pd/src/g_all_guis.c
C pd/src/g_all_guis.h
U pd/src/g_array.c
C pd/src/g_bang.c
C pd/src/g_canvas.c
C pd/src/g_canvas.h
C pd/src/g_editor.c
C pd/src/g_graph.c
U pd/src/g_guiconnect.c
C pd/src/g_hdial.c
C pd/src/g_hslider.c
U pd/src/g_io.c
C pd/src/g_mycanvas.c
C pd/src/g_numbox.c
C pd/src/g_readwrite.c
C pd/src/g_rtext.c
U pd/src/g_scalar.c
C pd/src/g_template.c
C pd/src/g_text.c
C pd/src/g_toggle.c
U pd/src/g_traversal.c
C pd/src/g_vdial.c
C pd/src/g_vslider.c
C pd/src/g_vumeter.c
U pd/src/install-sh
U pd/src/m_atom.c
C pd/src/m_binbuf.c
C pd/src/m_class.c
C pd/src/m_conf.c
U pd/src/m_glob.c
C pd/src/m_imp.h
U pd/src/m_memory.c
C pd/src/m_obj.c
U pd/src/m_pd.c
C pd/src/m_pd.h
C pd/src/m_sched.c
C pd/src/s_main.c
U pd/src/makefile.clean
C pd/src/makefile.in
U pd/src/z2.pd
U pd/src/makefile.nt
N pd/src/s_audio_mmio.c
C pd/src/notes.txt
U pd/src/s_entry.c
U pd/src/s_file.c
N pd/src/s_audio.c
C pd/src/s_inter.c
N pd/src/s_audio_pa.c
U pd/src/s_loader.c
N pd/src/s_audio_jack.c
C pd/src/s_path.c
N pd/src/CHANGELOG.txt
U pd/src/s_print.c
U pd/src/z3.pd
U pd/src/s_watchdog.c
U pd/src/t_main.c
U pd/src/t_tk.h
C pd/src/t_tkcmd.c
C pd/src/u_main.tk
N pd/src/configure.in.ok
U pd/src/u_pdreceive.c
U pd/src/u_pdsend.c
U pd/src/x_acoustics.c
U pd/src/x_arithmetic.c
C pd/src/x_connective.c
C pd/src/x_gui.c
U pd/src/x_interface.c
U pd/src/x_midi.c
U pd/src/x_misc.c
U pd/src/x_net.c
U pd/src/x_qlist.c
U pd/src/x_time.c
N pd/src/s_midi_pm.c
N pd/src/s_audio_alsa.c
N pd/src/makefile.nt.pa19
N pd/src/s_midi_oss.c
N pd/src/s_stuff.h
N pd/src/s_midi_sgi.c
N pd/src/configure.in.pa_v19
N pd/src/s_audio_oss.c
N pd/src/s_midi_mmio.c
N pd/src/configure.in.oops
C pd/doc/1.manual/index.htm
N pd/doc/1.manual/pdmanual.css
C pd/doc/1.manual/x1.htm
C pd/doc/1.manual/x2.htm
C pd/doc/1.manual/x3.htm
U pd/doc/1.manual/x4.htm
C pd/doc/1.manual/x5.htm
U pd/doc/1.manual/1.introduction.txt
N pd/doc/1.manual/fig1.4.png
U pd/doc/1.manual/fig1.2.jpg
U pd/doc/1.manual/fig1.3.jpg
N pd/doc/1.manual/fig11.1.png
U pd/doc/1.manual/fig1.5.jpg
U pd/doc/1.manual/fig3.10.jpg
U pd/doc/1.manual/fig3.1.jpg
U pd/doc/1.manual/fig3.2.jpg
U pd/doc/1.manual/fig3.3.jpg
U pd/doc/1.manual/fig3.4.jpg
U pd/doc/1.manual/fig3.5.jpg
U pd/doc/1.manual/fig3.6.jpg
U pd/doc/1.manual/fig3.7.jpg
U pd/doc/1.manual/fig3.8.jpg
U pd/doc/1.manual/fig3.9.jpg
U pd/doc/1.manual/fig7.1.jpg
U pd/doc/1.manual/fig7.2.jpg
U pd/doc/1.manual/fig7.3.jpg
U pd/doc/1.manual/fig7.4.jpg
U pd/doc/1.manual/fig7.5.jpg
U pd/doc/1.manual/fig7.6.jpg
U pd/doc/1.manual/fig8.1.jpg
U pd/doc/1.manual/fig8.2.jpg
U pd/doc/1.manual/fig8.3.jpg
U pd/doc/1.manual/fig8.4.jpg
U pd/doc/1.manual/fig8.5.jpg
U pd/doc/1.manual/fig8.6.jpg
U pd/doc/1.manual/fig9.1.jpg
U pd/doc/1.manual/fig9.2.jpg
U pd/doc/1.manual/fig9.3.jpg
N pd/doc/1.manual/fig11.2.png
N pd/doc/1.manual/fig1.1.png
U pd/doc/2.control.examples/05.counter.pd
U pd/doc/2.control.examples/19.random.pd
U pd/doc/2.control.examples/01.PART1.hello.pd
U pd/doc/2.control.examples/10.more.messages.pd
U pd/doc/2.control.examples/15.file.txt
U pd/doc/2.control.examples/08.depthfirst.pd
U pd/doc/2.control.examples/07.time.pd
U pd/doc/2.control.examples/04.messages.pd
U pd/doc/2.control.examples/17.PART3.midi.pd
U pd/doc/2.control.examples/11.review.pd
U pd/doc/2.control.examples/sendnumber.pd
U pd/doc/2.control.examples/20.weighted-random.pd
U pd/doc/2.control.examples/15.array.pd
U pd/doc/2.control.examples/dollarsign.pd
U pd/doc/2.control.examples/13.locality.pd
U pd/doc/2.control.examples/14.dollarsigns.pd
U pd/doc/2.control.examples/02.editing.pd
U pd/doc/2.control.examples/00.INTRO.txt
U pd/doc/2.control.examples/03.connections.pd
U pd/doc/2.control.examples/06.more.counters.pd
U pd/doc/2.control.examples/16.more.arrays.pd
U pd/doc/2.control.examples/dollarsign2.pd
U pd/doc/2.control.examples/09.send_receive.pd
U pd/doc/2.control.examples/12.PART2.subpatch.pd
U pd/doc/2.control.examples/21.markov.chain.pd
U pd/doc/2.control.examples/18.conditional.pd
N pd/doc/2.control.examples/23.sequencing.pd
N pd/doc/2.control.examples/22.random-walk.pd
U pd/doc/6.externs/0.README.txt
U pd/doc/6.externs/dspobj~.c
N pd/doc/6.externs/obj1.c
C pd/doc/6.externs/makefile
N pd/doc/6.externs/test-obj1.pd
N pd/doc/6.externs/test-obj3.pd
N pd/doc/6.externs/obj2.c
U pd/doc/6.externs/test-dspobj~.pd
N pd/doc/6.externs/obj3.c
N pd/doc/6.externs/obj4.c
N pd/doc/6.externs/obj5.c
N pd/doc/6.externs/test-obj2.pd
N pd/doc/6.externs/test-obj4.pd
N pd/doc/6.externs/test-obj5.pd
U pd/doc/7.stuff/audio-playpen/1_DSP_INTRO.pd
U pd/doc/7.stuff/audio-playpen/2_sampler.pd
U pd/doc/7.stuff/audio-playpen/3_filter_and_ring.pd
U pd/doc/7.stuff/audio-playpen/4_more_filters.pd
U pd/doc/7.stuff/audio-playpen/5_delay.pd
U pd/doc/7.stuff/audio-playpen/6_flanger.pd
U pd/doc/7.stuff/audio-playpen/qdelay.pd
U pd/doc/7.stuff/audio-playpen/qgain.pd
U pd/doc/7.stuff/audio-playpen/qring.pd
U pd/doc/7.stuff/audio-playpen/README.txt
U pd/doc/7.stuff/audio-playpen/qsample.pd
U pd/doc/7.stuff/audio-playpen/qslew.pd
U pd/doc/7.stuff/audio-playpen/qvd.pd
U pd/doc/7.stuff/data-structures/0.intro.txt
U pd/doc/7.stuff/data-structures/1.scalars.pd
U pd/doc/7.stuff/data-structures/4.append.pd
U pd/doc/7.stuff/data-structures/6.file.pd
U pd/doc/7.stuff/data-structures/score.txt
U pd/doc/7.stuff/data-structures/file.txt
U pd/doc/7.stuff/data-structures/5.array.pd
U pd/doc/7.stuff/data-structures/7.sequencer.pd
U pd/doc/7.stuff/data-structures/data-array.pd
U pd/doc/7.stuff/data-structures/3.setting.data.pd
U pd/doc/7.stuff/data-structures/2.getting.data.pd
U pd/doc/7.stuff/data-structures/data-start.pd
U pd/doc/7.stuff/data-structures/voice.pd
U pd/doc/7.stuff/data-structures/z.txt
U pd/doc/7.stuff/data-structures/beat-maker.pd
U pd/doc/7.stuff/data-structures/9.sliderule.pd
U pd/doc/7.stuff/data-structures/8.beat-patterns.pd
U pd/doc/7.stuff/synth/README.txt
U pd/doc/7.stuff/synth/1.poly.synth.pd
U pd/doc/7.stuff/synth/preset.pd
U pd/doc/7.stuff/synth/preset1.txt
U pd/doc/7.stuff/synth/preset2.txt
U pd/doc/7.stuff/synth/preset3.txt
U pd/doc/7.stuff/synth/preset4.txt
U pd/doc/7.stuff/synth/gadsr.pd
U pd/doc/7.stuff/synth/test-gadsr.pd
U pd/doc/7.stuff/synth/numset.pd
U pd/doc/7.stuff/synth/synthvoice.pd
U pd/doc/7.stuff/soundfile-tools/README.txt
U pd/doc/7.stuff/soundfile-tools/1.ring-mod.pd
U pd/doc/7.stuff/soundfile-tools/3.phase.vocoder.pd
U pd/doc/7.stuff/soundfile-tools/6.vocoder.pd
U pd/doc/7.stuff/soundfile-tools/4.looper.pd
U pd/doc/7.stuff/soundfile-tools/5.reverb.pd
U pd/doc/7.stuff/soundfile-tools/2.bandpass.pd
U pd/doc/7.stuff/tools/testtone.pd
U pd/doc/7.stuff/tools/load-meter.pd
U pd/doc/7.stuff/tools/latency.pd
U pd/doc/sound/bell.aiff
U pd/doc/sound/voice.wav
U pd/doc/sound/voice2.wav
U pd/doc/5.reference/0.INTRO.txt
N pd/doc/5.reference/help-append.pd
N pd/doc/5.reference/help-bang.pd
N pd/doc/5.reference/help-biquad~.pd
N pd/doc/5.reference/help-cos~.pd
N pd/doc/5.reference/help-cputime.pd
N pd/doc/5.reference/help-delay.pd
N pd/doc/5.reference/help-delwrite~.pd
N pd/doc/5.reference/help-drawnumber.pd
N pd/doc/5.reference/help-get.pd
N pd/doc/5.reference/help-key.pd
N pd/doc/5.reference/help-line~.pd
N pd/doc/5.reference/help-lop~.pd
N pd/doc/5.reference/help-makenote.pd
N pd/doc/5.reference/help-math.pd
N pd/doc/5.reference/help-message.pd
N pd/doc/5.reference/help-midi.pd
N pd/doc/5.reference/help-my_canvas.pd
N pd/doc/5.reference/help-netreceive.pd
N pd/doc/5.reference/help-netsend.pd
N pd/doc/5.reference/help-noise~.pd
N pd/doc/5.reference/help-operators.pd
N pd/doc/5.reference/help-osc~.pd
N pd/doc/5.reference/help-otherbinops.pd
N pd/doc/5.reference/help-pack.pd
N pd/doc/5.reference/help-pd.pd
N pd/doc/5.reference/help-pipe.pd
N pd/doc/5.reference/help-print.pd
N pd/doc/5.reference/help-print~.pd
N pd/doc/5.reference/help-random.pd
U pd/doc/5.reference/qlist.txt
N pd/doc/5.reference/help-receive.pd
N pd/doc/5.reference/help-rsqrt~.pd
N pd/doc/5.reference/help-select.pd
N pd/doc/5.reference/help-send.pd
N pd/doc/5.reference/help-set.pd
N pd/doc/5.reference/help-sig~.pd
N pd/doc/5.reference/help-soundfiler.pd
N pd/doc/5.reference/help-sqrt~.pd
N pd/doc/5.reference/help-struct.pd
N pd/doc/5.reference/help-tabreceive~.pd
N pd/doc/5.reference/help-tabsend~.pd
N pd/doc/5.reference/help-tabwrite.pd
N pd/doc/5.reference/help-tabwrite~.pd
N pd/doc/5.reference/help-text.pd
N pd/doc/5.reference/help-vcf~.pd
U pd/doc/5.reference/textfile.txt
N pd/doc/5.reference/help-toggle.pd
N pd/doc/5.reference/help-unpack.pd
N pd/doc/5.reference/help-until.pd
N pd/doc/5.reference/help-vd~.pd
U pd/doc/5.reference/metro.pd
U pd/doc/5.reference/x_all_guis.pd
N pd/doc/5.reference/help-textfile.pd
N pd/doc/5.reference/help-switch~.pd
N pd/doc/5.reference/help-clip~.pd
N pd/doc/5.reference/help-value.pd
N pd/doc/5.reference/help-spigot.pd
N pd/doc/5.reference/help-swap.pd
N pd/doc/5.reference/help-tabread.pd
N pd/doc/5.reference/help-bng.pd
N pd/doc/5.reference/help-line.pd
N pd/doc/5.reference/help-throw~.pd
N pd/doc/5.reference/help-send~.pd
N pd/doc/5.reference/help-vdial.pd
N pd/doc/5.reference/help-pointer.pd
N pd/doc/5.reference/help-element.pd
N pd/doc/5.reference/help-env~.pd
N pd/doc/5.reference/help-poly.pd
N pd/doc/5.reference/help-setsize.pd
N pd/doc/5.reference/help-fft~.pd
N pd/doc/5.reference/help-graph.pd
N pd/doc/5.reference/help-sigbinops.pd
U pd/doc/5.reference/setsize.txt
N pd/doc/5.reference/help-bag.pd
N pd/doc/5.reference/help-tabosc4~.pd
N pd/doc/5.reference/help-tabplay~.pd
N pd/doc/5.reference/help-tabread4~.pd
N pd/doc/5.reference/help-bang~.pd
N pd/doc/5.reference/help-stripnote.pd
N pd/doc/5.reference/help-writesf~.pd
N pd/doc/5.reference/help-gatom.pd
N pd/doc/5.reference/help-hip~.pd
N pd/doc/5.reference/help-trigger.pd
N pd/doc/5.reference/help-vu.pd
N pd/doc/5.reference/help-openpanel.pd
N pd/doc/5.reference/help-int.pd
N pd/doc/5.reference/help-vslider.pd
U pd/doc/5.reference/table.txt
U pd/doc/5.reference/0_all_guis-INTRO.txt
N pd/doc/5.reference/help-vline~.pd
N pd/doc/5.reference/help-acoustics.pd
N pd/doc/5.reference/help-acoustics~.pd
N pd/doc/5.reference/help-adc~_dac~.pd
N pd/doc/5.reference/help-bp~.pd
N pd/doc/5.reference/help-canvas.pd
N pd/doc/5.reference/help-change.pd
N pd/doc/5.reference/help-delread~.pd
N pd/doc/5.reference/help-drawpolygon.pd
N pd/doc/5.reference/help-float.pd
N pd/doc/5.reference/help-framp~.pd
N pd/doc/5.reference/help-getsize.pd
N pd/doc/5.reference/help-hdial.pd
N pd/doc/5.reference/help-hslider.pd
N pd/doc/5.reference/help-makefilename.pd
N pd/doc/5.reference/help-moses.pd
N pd/doc/5.reference/help-namecanvas.pd
N pd/doc/5.reference/help-numbox2.pd
N pd/doc/5.reference/help-phasor~.pd
N pd/doc/5.reference/help-plot.pd
N pd/doc/5.reference/help-qlist.pd
N pd/doc/5.reference/help-readsf~.pd
N pd/doc/5.reference/help-realtime.pd
N pd/doc/5.reference/help-route.pd
N pd/doc/5.reference/help-samphold~.pd
N pd/doc/5.reference/help-savepanel.pd
N pd/doc/5.reference/help-snapshot~.pd
N pd/doc/5.reference/help-sublist.pd
N pd/doc/5.reference/help-threshold~.pd
N pd/doc/5.reference/help-timer.pd
N pd/doc/5.reference/help-wrap~.pd
N pd/doc/5.reference/help-block~.pd
U pd/doc/4.fft.examples/00.INTRO.txt
U pd/doc/4.fft.examples/01.fftanalysis.pd
U pd/doc/4.fft.examples/02.noisefft.pd
U pd/doc/4.fft.examples/03.denoise.pd
U pd/doc/4.fft.examples/04.shifts.pd
U pd/doc/4.fft.examples/05.sheepgoat.pd
U pd/doc/4.fft.examples/06.sheepgoat2.pd
U pd/doc/4.fft.examples/07.tinbell.pd
U pd/doc/4.fft.examples/08.convobros.pd
U pd/doc/4.fft.examples/09.pvoc.pd
U pd/doc/4.fft.examples/10.phaselockedvoc.pd
U pd/doc/4.fft.examples/11.pianorev.pd
U pd/doc/4.fft.examples/12.sinedecomposer.pd
U pd/doc/4.fft.examples/14.waveformgrab.pd
U pd/doc/4.fft.examples/x.wav
U pd/doc/4.fft.examples/add-trace.pd
U pd/doc/4.fft.examples/osc-voice.pd
U pd/doc/4.fft.examples/13.partialtracer.pd
N pd/doc/3.audio.examples/F12.paf.pd
N pd/doc/3.audio.examples/D11.sampler.poly.pd
N pd/doc/3.audio.examples/A04.line2.pd
N pd/doc/3.audio.examples/A07.frequency.mod.pd
N pd/doc/3.audio.examples/B10.sampler.scratch.pd
N pd/doc/3.audio.examples/K02.stereo.pd
U pd/doc/3.audio.examples/adsr.pd
N pd/doc/3.audio.examples/qlist-sampler.txt
N pd/doc/3.audio.examples/J03.qlist.pd
N pd/doc/3.audio.examples/G02.delay.loop.pd
N pd/doc/3.audio.examples/F11.anharmonic.FM.pd
N pd/doc/3.audio.examples/F02.just.say.pd
U pd/doc/3.audio.examples/sampvoice.pd
U pd/doc/3.audio.examples/partial.pd
N pd/doc/3.audio.examples/F01.pulse.pd
U pd/doc/3.audio.examples/osc-voice.pd
N pd/doc/3.audio.examples/J04.more.adsr.pd
N pd/doc/3.audio.examples/C03.zipper.noise.pd
N pd/doc/3.audio.examples/B11.sampler.nodoppler.pd
U pd/doc/3.audio.examples/spectrum-partial.pd
N pd/doc/3.audio.examples/J05.vibrato.pd
N pd/doc/3.audio.examples/J06.adsr.sequenced.pd
N pd/doc/3.audio.examples/G05.execution.order.pd
N pd/doc/3.audio.examples/C06.signal.to.control.pd
N pd/doc/3.audio.examples/J09.up.downsampling.pd
N pd/doc/3.audio.examples/F06.packets.pd
N pd/doc/3.audio.examples/G09.pitchshift.pd
N pd/doc/3.audio.examples/G01.delay.pd
N pd/doc/3.audio.examples/K04.even.odd.pd
N pd/doc/3.audio.examples/B05.tabread.FM.pd
N pd/doc/3.audio.examples/D07.additive.pd
N pd/doc/3.audio.examples/K05.bandlimited.pd
N pd/doc/3.audio.examples/A03.line.pd
N pd/doc/3.audio.examples/B03.tabread4.pd
N pd/doc/3.audio.examples/E03.octave.divider.pd
N pd/doc/3.audio.examples/D02.adsr.pd
N pd/doc/3.audio.examples/A00.intro.pd
N pd/doc/3.audio.examples/A01.sinewave.pd
N pd/doc/3.audio.examples/E01.spectrum.pd
N pd/doc/3.audio.examples/D09.shepard.tone.pd
N pd/doc/3.audio.examples/A08.review.pd
N pd/doc/3.audio.examples/A00.intro.txt
N pd/doc/3.audio.examples/E05.chebychev.pd
N pd/doc/3.audio.examples/sampvoice2.pd
N pd/doc/3.audio.examples/reverb-echo.pd
N pd/doc/3.audio.examples/H05.filter.noise.pd
N pd/doc/3.audio.examples/B07.sampler.pd
N pd/doc/3.audio.examples/F08.two.cosines.pd
N pd/doc/3.audio.examples/C08.analog.sequencer.pd
N pd/doc/3.audio.examples/A06.frequency.pd
N pd/doc/3.audio.examples/A02.amplitude.pd
N pd/doc/3.audio.examples/K06.triangle.pd
N pd/doc/3.audio.examples/C01.nyquist.pd
N pd/doc/3.audio.examples/sinevoice.pd
N pd/doc/3.audio.examples/C02.sawtooth-foldover.pd
N pd/doc/3.audio.examples/G03.delay.variable.pd
N pd/doc/3.audio.examples/B06.table.switching.pd
N pd/doc/3.audio.examples/H04.filter.floyd.pd
N pd/doc/3.audio.examples/B08.sampler.loop.pd
U pd/doc/3.audio.examples/output~.pd
U pd/doc/3.audio.examples/qlist.txt
U pd/doc/3.audio.examples/qlist2.txt
N pd/doc/3.audio.examples/H01.intro.filters.pd
N pd/doc/3.audio.examples/D12.sampler.bis.pd
N pd/doc/3.audio.examples/shepvoice.pd
N pd/doc/3.audio.examples/F03.pulse.spectrum.pd
N pd/doc/3.audio.examples/H02.bandpass.pd
N pd/doc/3.audio.examples/C09.sample.hold.pd
N pd/doc/3.audio.examples/D10.sampler.notes.pd
N pd/doc/3.audio.examples/E08.phase.mod.pd
N pd/doc/3.audio.examples/D05.envelope.pitch.pd
N pd/doc/3.audio.examples/B12.sampler.transpose.pd
N pd/doc/3.audio.examples/E07.evenodd.pd
N pd/doc/3.audio.examples/H03.filter.sweep.pd
N pd/doc/3.audio.examples/B13.sampler.overlap.pd
N pd/doc/3.audio.examples/K01.pulse.width.mod.pd
N pd/doc/3.audio.examples/C07.envelope.follower.pd
N pd/doc/3.audio.examples/E06.exponential.pd
N pd/doc/3.audio.examples/F09.declickit.pd
N pd/doc/3.audio.examples/C04.control.to.signal.pd
N pd/doc/3.audio.examples/D01.envelope.gen.pd
N pd/doc/3.audio.examples/B09.sampler.loop.smooth.pd
N pd/doc/3.audio.examples/A05.output.subpatch.pd
N pd/doc/3.audio.examples/D03.envelope.dB.pd
N pd/doc/3.audio.examples/F10.sweepable.FM.pd
N pd/doc/3.audio.examples/B02.two-wavetables.pd
N pd/doc/3.audio.examples/F07.packet.spectrum.pd
N pd/doc/3.audio.examples/B01.wavetables.pd
N pd/doc/3.audio.examples/C05.sampler.oneshot.pd
N pd/doc/3.audio.examples/B04.tabread4.interpolation.pd
N pd/doc/3.audio.examples/C10.monophonic.synth.pd
N pd/doc/3.audio.examples/K03.envelope.mod.pd
N pd/doc/3.audio.examples/D06.envelope.portamento.pd
N pd/doc/3.audio.examples/E02.ring.modulation.pd
N pd/doc/3.audio.examples/D04.envelope.quartic.pd
N pd/doc/3.audio.examples/D08.table.spectrum.pd
N pd/doc/3.audio.examples/G06.octave.doubler.pd
N pd/doc/3.audio.examples/G07.shaker.pd
N pd/doc/3.audio.examples/H07.ssb.modulation.pd
N pd/doc/3.audio.examples/B14.sampler.rockafella.pd
N pd/doc/3.audio.examples/F05.ring.modulation.pd
N pd/doc/3.audio.examples/E04.difference.tone.pd
N pd/doc/3.audio.examples/E09.FM.spectrum.pd
N pd/doc/3.audio.examples/E10.complex.FM.pd
N pd/doc/3.audio.examples/F04.waveshaping.pulse.pd
N pd/doc/3.audio.examples/F13.paf.control.pd
N pd/doc/3.audio.examples/G04.control.blocksize.pd
N pd/doc/3.audio.examples/G08.reverb.pd
U pd/extra/complex-mod~.pd
N pd/extra/rev2~.pd
U pd/extra/help-complex-mod~.pd
N pd/extra/help-expr.pd
U pd/extra/help-hilbert~.pd
N pd/extra/help-rev1~.pd
N pd/extra/help-rev2~.pd
N pd/extra/rev3~.pd
N pd/extra/help-rev3~.pd
U pd/extra/hilbert~.pd
U pd/extra/README.txt
U pd/extra/rev1-final.pd
U pd/extra/rev1-stage.pd
U pd/extra/rev1~.pd
U pd/extra/choice/choice.c
C pd/extra/choice/makefile
U pd/extra/choice/README.txt
N pd/extra/choice/help-choice.pd
C pd/extra/pique/makefile
U pd/extra/pique/pique.c
N pd/extra/pique/help-pique.pd
U pd/man/pd.1
U pd/man/pdsend.1
U pd/man/pdreceive.1
N pd/portaudio_v18/config.guess
N pd/portaudio_v18/config.sub
N pd/portaudio_v18/configure
N pd/portaudio_v18/configure.in
N pd/portaudio_v18/fixdir.bat
N pd/portaudio_v18/fixfile.bat
N pd/portaudio_v18/index.html
N pd/portaudio_v18/install-sh
N pd/portaudio_v18/LICENSE.txt
N pd/portaudio_v18/Makefile.in
N pd/portaudio_v18/Makefile.linux
N pd/portaudio_v18/Makefile.mingw
N pd/portaudio_v18/Makefile.solaris
N pd/portaudio_v18/README.txt
N pd/portaudio_v18/VERSION.txt
N pd/portaudio_v18/docs/index.html
N pd/portaudio_v18/docs/latency.html
N pd/portaudio_v18/docs/pa_drivermodel.c.txt
N pd/portaudio_v18/docs/pa_drivermodel.h.txt
N pd/portaudio_v18/docs/pa_impl_guide.html
N pd/portaudio_v18/docs/pa_impl_startstop.html
N pd/portaudio_v18/docs/pa_tutorial.html
N pd/portaudio_v18/docs/pa_tut_asio.html
N pd/portaudio_v18/docs/pa_tut_callback.html
N pd/portaudio_v18/docs/pa_tut_devs.html
N pd/portaudio_v18/docs/pa_tut_explore.html
N pd/portaudio_v18/docs/pa_tut_init.html
N pd/portaudio_v18/docs/pa_tut_mac.html
N pd/portaudio_v18/docs/pa_tut_mac_osx.html
N pd/portaudio_v18/docs/pa_tut_open.html
N pd/portaudio_v18/docs/pa_tut_oss.html
N pd/portaudio_v18/docs/pa_tut_over.html
N pd/portaudio_v18/docs/pa_tut_pc.html
N pd/portaudio_v18/docs/pa_tut_run.html
N pd/portaudio_v18/docs/pa_tut_rw.html
N pd/portaudio_v18/docs/pa_tut_term.html
N pd/portaudio_v18/docs/pa_tut_util.html
N pd/portaudio_v18/docs/portaudio_h.txt
N pd/portaudio_v18/docs/portaudio_icmc2001.pdf
N pd/portaudio_v18/docs/proposals.html
N pd/portaudio_v18/docs/releases.html
N pd/portaudio_v18/pablio/pablio.c
N pd/portaudio_v18/pablio/pablio.def
N pd/portaudio_v18/pablio/pablio.h
N pd/portaudio_v18/pablio/README.txt
N pd/portaudio_v18/pablio/ringbuffer.c
N pd/portaudio_v18/pablio/ringbuffer.h
N pd/portaudio_v18/pablio/test_rw.c
N pd/portaudio_v18/pablio/test_rw_echo.c
N pd/portaudio_v18/pablio/test_w_saw.c
N pd/portaudio_v18/pablio/test_w_saw8.c
N pd/portaudio_v18/pablio/pablio_pd.c
N pd/portaudio_v18/pablio/pablio_pd.h
N pd/portaudio_v18/pablio/ringbuffer_pd.c
N pd/portaudio_v18/pablio/test_w_saw_pd.c
N pd/portaudio_v18/pa_asio/Callback_adaptation_.pdf
N pd/portaudio_v18/pa_asio/pa_asio.cpp
N pd/portaudio_v18/pa_asio/Pa_ASIO.pdf
N pd/portaudio_v18/pa_asio/readme_asio_sdk_patch.txt
N pd/portaudio_v18/pa_beos/pa_beos_mk.cc
N pd/portaudio_v18/pa_beos/PlaybackNode.cc
N pd/portaudio_v18/pa_beos/PlaybackNode.h
N pd/portaudio_v18/pa_common/pa_convert.c
N pd/portaudio_v18/pa_common/pa_host.h
N pd/portaudio_v18/pa_common/pa_lib.c
N pd/portaudio_v18/pa_common/pa_trace.c
N pd/portaudio_v18/pa_common/pa_trace.h
N pd/portaudio_v18/pa_common/portaudio.h
N pd/portaudio_v18/pa_dll_switch/letter_from_tim_010817.txt
N pd/portaudio_v18/pa_dll_switch/loadPA_DLL.cpp
N pd/portaudio_v18/pa_dll_switch/PaDllEntry.h
N pd/portaudio_v18/pa_dll_switch/pa_lib.c
N pd/portaudio_v18/pa_dll_switch/portaudio.h
N pd/portaudio_v18/pa_mac/pa_mac.c
N pd/portaudio_v18/pa_mac_core/notes.txt
N pd/portaudio_v18/pa_mac_core/pa_mac_core.c
N pd/portaudio_v18/pa_sgi/Makefile
N pd/portaudio_v18/pa_sgi/pa_sgi.c
N pd/portaudio_v18/pa_sgi/pthread-Makefile
N pd/portaudio_v18/pa_sgi/pthread-pa_sgi.c
N pd/portaudio_v18/pa_tests/debug_convert.c
N pd/portaudio_v18/pa_tests/debug_dither_calc.c
N pd/portaudio_v18/pa_tests/debug_dual.c
N pd/portaudio_v18/pa_tests/debug_multi_in.c
N pd/portaudio_v18/pa_tests/debug_multi_out.c
N pd/portaudio_v18/pa_tests/debug_record.c
N pd/portaudio_v18/pa_tests/debug_record_reuse.c
N pd/portaudio_v18/pa_tests/debug_sine.c
N pd/portaudio_v18/pa_tests/debug_sine_amp.c
N pd/portaudio_v18/pa_tests/debug_sine_formats.c
N pd/portaudio_v18/pa_tests/debug_sine_getchar.c
N pd/portaudio_v18/pa_tests/debug_srate.c
N pd/portaudio_v18/pa_tests/debug_test1.c
N pd/portaudio_v18/pa_tests/paqa_devs.c
N pd/portaudio_v18/pa_tests/paqa_errs.c
N pd/portaudio_v18/pa_tests/patest1.c
N pd/portaudio_v18/pa_tests/patest_buffer.c
N pd/portaudio_v18/pa_tests/patest_clip.c
N pd/portaudio_v18/pa_tests/patest_dither.c
N pd/portaudio_v18/pa_tests/patest_hang.c
N pd/portaudio_v18/pa_tests/patest_latency.c
N pd/portaudio_v18/pa_tests/patest_leftright.c
N pd/portaudio_v18/pa_tests/patest_longsine.c
N pd/portaudio_v18/pa_tests/patest_many.c
N pd/portaudio_v18/pa_tests/patest_maxsines.c
N pd/portaudio_v18/pa_tests/patest_mono.c
N pd/portaudio_v18/pa_tests/patest_multi_sine.c
N pd/portaudio_v18/pa_tests/patest_pink.c
N pd/portaudio_v18/pa_tests/patest_record.c
N pd/portaudio_v18/pa_tests/patest_ringmix.c
N pd/portaudio_v18/pa_tests/patest_saw.c
N pd/portaudio_v18/pa_tests/patest_sine.c
N pd/portaudio_v18/pa_tests/patest_sine8.c
N pd/portaudio_v18/pa_tests/patest_sine_formats.c
N pd/portaudio_v18/pa_tests/patest_sine_time.c
N pd/portaudio_v18/pa_tests/patest_stop.c
N pd/portaudio_v18/pa_tests/patest_sync.c
N pd/portaudio_v18/pa_tests/patest_toomanysines.c
N pd/portaudio_v18/pa_tests/patest_two_rates.c
N pd/portaudio_v18/pa_tests/patest_underflow.c
N pd/portaudio_v18/pa_tests/patest_wire.c
N pd/portaudio_v18/pa_tests/pa_devs.c
N pd/portaudio_v18/pa_tests/pa_fuzz.c
N pd/portaudio_v18/pa_tests/pa_minlat.c
N pd/portaudio_v18/pa_unix_oss/low_latency_tip.txt
N pd/portaudio_v18/pa_unix_oss/Makefile
N pd/portaudio_v18/pa_unix_oss/Makefile_freebsd
N pd/portaudio_v18/pa_unix_oss/pa_unix.c
N pd/portaudio_v18/pa_unix_oss/pa_unix.h
N pd/portaudio_v18/pa_unix_oss/pa_unix_oss.c
N pd/portaudio_v18/pa_unix_oss/pa_unix_solaris.c
N pd/portaudio_v18/pa_unix_oss/recplay.c
N pd/portaudio_v18/pa_win_ds/dsound_wrapper.c
N pd/portaudio_v18/pa_win_ds/dsound_wrapper.h
N pd/portaudio_v18/pa_win_ds/pa_dsound.c
N pd/portaudio_v18/pa_win_ds/portaudio.def
N pd/portaudio_v18/pa_win_wmme/Makefile.cygwin
N pd/portaudio_v18/pa_win_wmme/pa_win_wmme.c
N pd/portaudio_v18/testcvs/changeme.txt
N pd/portmidi_osx/Makefile
N pd/portmidi_osx/pmdarwin.c
N pd/portmidi_osx/pminternal.h
N pd/portmidi_osx/pmmacosx.c
N pd/portmidi_osx/pmmacosx.h
N pd/portmidi_osx/pmtest.c
N pd/portmidi_osx/pmutil.c
N pd/portmidi_osx/pmutil.h
N pd/portmidi_osx/portmidi.h
N pd/portmidi_osx/porttime.h
N pd/portmidi_osx/ptdarwin.c
N pd/portmidi_osx/README
N pd/portmidi_osx/portmidi.c
N pd/portmidi_osx/portmidi_osx_change_log.txt

50 conflicts created by this import.
Use the following command to help the merge:

	cvs checkout -jmiller:yesterday -jmiller pd