This repository has been archived by the owner on Feb 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
36522 lines (31185 loc) · 670 KB
/
ChangeLog
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
---------------------
PatchSet 1
Date: 2000/01/20 14:54:18
Author: richi
Branch: HEAD
Tag: (none)
Log:
Initial revision
Members:
COPYING:INITIAL->1.1
ChangeLog:INITIAL->1.1
INSTALL:INITIAL->1.1
Makefile.am:INITIAL->1.1
README:INITIAL->1.1
config.h.in:INITIAL->1.1
configure.in:INITIAL->1.1
doc/Makefile.am:INITIAL->1.1
doc/TODO:INITIAL->1.1
doc/coding-style.txt:INITIAL->1.1
doc/development.txt:INITIAL->1.1
doc/filter.txt:INITIAL->1.1
doc/masterplan.txt:INITIAL->1.1
src/Makefile.am:INITIAL->1.1
src/glame.c:INITIAL->1.1
src/channel/Makefile.am:INITIAL->1.1
src/channel/channel.c:INITIAL->1.1
src/channel/channel.h:INITIAL->1.1
src/channel/channel_cghash.h:INITIAL->1.1
src/filter/Makefile.am:INITIAL->1.1
src/filter/drop.c:INITIAL->1.1
src/filter/dup.c:INITIAL->1.1
src/filter/file_in.c:INITIAL->1.1
src/filter/file_out.c:INITIAL->1.1
src/filter/filter.c:INITIAL->1.1
src/filter/filter.h:INITIAL->1.1
src/filter/filter_buffer.c:INITIAL->1.1
src/filter/filter_hash.h:INITIAL->1.1
src/filter/filter_network.c:INITIAL->1.1
src/filter/filter_node.c:INITIAL->1.1
src/filter/mix.c:INITIAL->1.1
src/filter/null.c:INITIAL->1.1
src/filter/one2n.c:INITIAL->1.1
src/filter/ping.c:INITIAL->1.1
src/filter/test_latency.c:INITIAL->1.1
src/filter/volume_adjust.c:INITIAL->1.1
src/hash/Makefile.am:INITIAL->1.1
src/hash/glame_hash.c:INITIAL->1.1
src/hash/glame_hash.h:INITIAL->1.1
src/include/Makefile.am:INITIAL->1.1
src/include/glame_types.h:INITIAL->1.1
src/include/hash.h:INITIAL->1.1
src/include/list.h:INITIAL->1.1
src/include/util.h:INITIAL->1.1
src/libfixp/Makefile.am:INITIAL->1.1
src/libfixp/fixp.c:INITIAL->1.1
src/libfixp/fixp.h:INITIAL->1.1
src/libfixp/fp-bench.c:INITIAL->1.1
src/libfixp/fp-test.c:INITIAL->1.1
src/rw/Makefile.am:INITIAL->1.1
src/rw/rw.c:INITIAL->1.1
src/rw/rw.h:INITIAL->1.1
src/rw/wav_file.c:INITIAL->1.1
src/rw/wav_file.h:INITIAL->1.1
src/swapfile/Makefile.am:INITIAL->1.1
src/swapfile/gmkswap.c:INITIAL->1.1
src/swapfile/swapfile.c:INITIAL->1.1
src/swapfile/swapfile.h:INITIAL->1.1
src/swapfile/swapfileI.h:INITIAL->1.1
src/swapfile/swapfile_info.c:INITIAL->1.1
src/swapfile/swapfile_test.c:INITIAL->1.1
---------------------
PatchSet 4
Date: 2000/01/21 18:00:57
Author: nold
Branch: HEAD
Tag: (none)
Log:
Corrected mag's address in Makefile.am. [dk]
Internationalized masterplan.txt (old version is now in meisterplan_de.txt
:-) - please check if I got it all right... [dk]
Members:
ChangeLog:1.1->1.2
Makefile.am:1.1->1.2
config.h.in:1.1->1.2
doc/TODO:1.1->1.2
doc/masterplan.txt:1.1->1.2
doc/meisterplan_de.txt:INITIAL->1.1
---------------------
PatchSet 5
Date: 2000/01/21 18:04:17
Author: nold
Branch: HEAD
Tag: (none)
Log:
I told richi keeping config.h.in in CVS is broken but richi would not
listen. ;-) [dk]
Members:
config.h.in:1.2->1.3(DEAD)
---------------------
PatchSet 6
Date: 2000/01/24 09:28:23
Author: nold
Branch: HEAD
Tag: (none)
Log:
Updated ChangeLog. (This is an ML test actually ;) [dk]
Members:
ChangeLog:1.2->1.3
---------------------
PatchSet 7
Date: 2000/01/24 10:21:54
Author: richi
Branch: HEAD
Tag: (none)
Log:
major cleanup (round #1) of swapfile
Members:
src/swapfile/Makefile.am:1.1->1.2
src/swapfile/swapfile.c:1.1->1.2
src/swapfile/swapfileI.h:1.1->1.2
src/swapfile/swapfile_hash.h:INITIAL->1.1
src/swapfile/swapfile_info.c:1.1->1.2
src/swapfile/swapfile_test.c:1.1->1.2
---------------------
PatchSet 8
Date: 2000/01/24 10:22:52
Author: richi
Branch: HEAD
Tag: (none)
Log:
work on global hash - changed channel and filter to use the new
hash
Members:
src/glame.c:1.1->1.2
src/channel/Makefile.am:1.1->1.2
src/channel/channel.c:1.1->1.2
src/channel/channel.h:1.1->1.2
src/channel/channel_cghash.h:1.1->1.2(DEAD)
src/filter/Makefile.am:1.1->1.2
src/filter/drop.c:1.1->1.2
src/filter/dup.c:1.1->1.2
src/filter/file_in.c:1.1->1.2
src/filter/file_out.c:1.1->1.2
src/filter/filter.c:1.1->1.2
src/filter/filter.h:1.1->1.2
src/filter/filter_buffer.c:1.1->1.2
src/filter/filter_hash.h:1.1->1.2(DEAD)
src/filter/filter_network.c:1.1->1.2
src/filter/filter_node.c:1.1->1.2
src/filter/mix.c:1.1->1.2
src/filter/null.c:1.1->1.2
src/filter/one2n.c:1.1->1.2
src/filter/ping.c:1.1->1.2
src/filter/test_latency.c:1.1->1.2
src/filter/volume_adjust.c:1.1->1.2
src/hash/glame_hash.c:1.1->1.2
src/hash/glame_hash.h:1.1->1.2
src/libfixp/fixp.c:1.1->1.2
src/libfixp/fixp.h:1.1->1.2
src/rw/Makefile.am:1.1->1.2
src/rw/rw.c:1.1->1.2
src/rw/rw.h:1.1->1.2
src/rw/wav_file.c:1.1->1.2
src/rw/wav_file.h:1.1->1.2
---------------------
PatchSet 9
Date: 2000/01/24 10:23:24
Author: richi
Branch: HEAD
Tag: (none)
Log:
bumped version number
Members:
configure.in:1.1->1.2
---------------------
PatchSet 10
Date: 2000/01/24 11:43:22
Author: richi
Branch: HEAD
Tag: (none)
Log:
fixed bug in global hashtable
Members:
src/filter/filter.c:1.2->1.3
src/filter/test_latency.c:1.2->1.3
src/hash/glame_hash.c:1.2->1.3
---------------------
PatchSet 11
Date: 2000/01/25 01:12:39
Author: mag
Branch: HEAD
Tag: (none)
Log:
corrected my email-address, because nold corrected wrong
[mag]
Members:
Makefile.am:1.2->1.3
---------------------
PatchSet 12
Date: 2000/01/25 12:24:08
Author: nold
Branch: HEAD
Tag: (none)
Log:
update-changelog target has to use sourceforge user names. [dk]
Corrected and updated ChangeLog entries. [dk]
Members:
ChangeLog:1.3->1.4
Makefile.am:1.3->1.4
---------------------
PatchSet 13
Date: 2000/01/25 16:11:33
Author: richi
Branch: HEAD
Tag: (none)
Log:
cleaned up glame_hash:
- added locking for those who want to do bigger atomic ops on it
- renamed previous hash_next to hash_walk to support duplicate
entries (need it for filter inputs/outputs hash)
- documentation improvement!
Members:
src/channel/channel.c:1.2->1.3
src/filter/filter.h:1.2->1.3
src/hash/Makefile.am:1.1->1.2
src/hash/glame_hash.c:1.3->1.4
src/hash/glame_hash.h:1.2->1.3
---------------------
PatchSet 14
Date: 2000/01/26 10:07:40
Author: richi
Branch: HEAD
Tag: (none)
Log:
stripped the swapfile API (KISS...)
modified swapfile_test to do fancier console output - please
use print_state & friends in future.
Members:
src/swapfile/swapfile.c:1.2->1.3
src/swapfile/swapfile.h:1.1->1.2
src/swapfile/swapfileI.h:1.2->1.3
src/swapfile/swapfile_info.c:1.2->1.3
src/swapfile/swapfile_test.c:1.2->1.3
---------------------
PatchSet 15
Date: 2000/01/26 10:08:08
Author: richi
Branch: HEAD
Tag: (none)
Log:
bumped version number - as usual :)
Members:
configure.in:1.2->1.3
---------------------
PatchSet 16
Date: 2000/01/26 10:43:20
Author: nold
Branch: HEAD
Tag: (none)
Log:
Fixed redefinition of MIN/MAX macros. [dk]
Members:
src/include/util.h:1.1->1.2
src/swapfile/swapfileI.h:1.3->1.4
---------------------
PatchSet 17
Date: 2000/01/27 09:33:04
Author: mag
Branch: HEAD
Tag: (none)
Log:
- added esd.c
[mag]
Members:
src/filter/Makefile.am:1.2->1.3
---------------------
PatchSet 18
Date: 2000/01/27 09:34:07
Author: mag
Branch: HEAD
Tag: (none)
Log:
- initial version of esound output filter
[mag]
Members:
src/filter/esd.c:INITIAL->1.1
---------------------
PatchSet 19
Date: 2000/01/27 10:30:30
Author: richi
Branch: HEAD
Tag: (none)
Log:
Major filter API rewrite (part 1)
Members:
configure.in:1.3->1.4
doc/Makefile.am:1.1->1.2
src/filter/drop.c:1.2->1.3
src/filter/dup.c:1.2->1.3
src/filter/file_in.c:1.2->1.3
src/filter/file_out.c:1.2->1.3
src/filter/filter.c:1.3->1.4
src/filter/filter.h:1.3->1.4
src/filter/filter_network.c:1.2->1.3
src/filter/filter_node.c:1.2->1.3
src/filter/mix.c:1.2->1.3
src/filter/null.c:1.2->1.3
src/filter/one2n.c:1.2->1.3
src/filter/ping.c:1.2->1.3
src/filter/volume_adjust.c:1.2->1.3
src/hash/glame_hash.h:1.3->1.4
src/include/list.h:1.1->1.2
---------------------
PatchSet 20
Date: 2000/01/27 12:49:00
Author: richi
Branch: HEAD
Tag: (none)
Log:
added check for esd
Members:
acconfig.h:INITIAL->1.1
aclocal.m4:INITIAL->1.1
configure.in:1.4->1.5
src/filter/esd.c:1.1->1.2
---------------------
PatchSet 21
Date: 2000/01/27 12:53:35
Author: richi
Branch: HEAD
Tag: (none)
Log:
removed aclocal again, bugfix
Members:
aclocal.m4:1.1->1.2(DEAD)
src/filter/filter_node.c:1.3->1.4
---------------------
PatchSet 22
Date: 2000/01/27 12:54:22
Author: richi
Branch: HEAD
Tag: (none)
Log:
added local m4 macros
Members:
acinclude.m4:INITIAL->1.1
---------------------
PatchSet 23
Date: 2000/01/27 13:32:19
Author: richi
Branch: HEAD
Tag: (none)
Log:
bugfixes
Members:
src/filter/Makefile.am:1.3->1.4
src/filter/esd.c:1.2->1.3
src/filter/filter.c:1.4->1.5
src/hash/glame_hash.c:1.4->1.5
---------------------
PatchSet 24
Date: 2000/01/27 14:28:53
Author: richi
Branch: HEAD
Tag: (none)
Log:
fixed all bugs! test_latency does work again!
Members:
src/filter/filter_network.c:1.3->1.4
src/filter/filter_node.c:1.4->1.5
src/filter/null.c:1.3->1.4
src/filter/ping.c:1.3->1.4
src/filter/test_latency.c:1.3->1.4
src/include/util.h:1.2->1.3
---------------------
PatchSet 25
Date: 2000/01/27 15:50:43
Author: richi
Branch: HEAD
Tag: (none)
Log:
some cleanup, added tasks to do with filter API
Members:
doc/TODO:1.2->1.3
src/filter/filter.c:1.5->1.6
src/filter/filter.h:1.4->1.5
src/filter/filter_network.c:1.4->1.5
src/filter/filter_node.c:1.5->1.6
src/include/list.h:1.2->1.3
---------------------
PatchSet 26
Date: 2000/01/28 13:00:31
Author: richi
Branch: HEAD
Tag: (none)
Log:
bugfixes and more work on swapfile regression suite
Members:
configure.in:1.5->1.6
src/swapfile/swapfile.c:1.3->1.4
src/swapfile/swapfileI.h:1.4->1.5
src/swapfile/swapfile_test.c:1.3->1.4
---------------------
PatchSet 27
Date: 2000/01/28 14:21:50
Author: richi
Branch: HEAD
Tag: (none)
Log:
more cleanup for the sake of bug-hunting inside swapfile
Members:
src/swapfile/gmkswap.c:1.1->1.2
src/swapfile/swapfile.c:1.4->1.5
src/swapfile/swapfile_test.c:1.4->1.5
---------------------
PatchSet 28
Date: 2000/01/31 09:56:05
Author: richi
Branch: HEAD
Tag: (none)
Log:
extensive bug fixes and regession test suite improvements
Members:
src/swapfile/Makefile.am:1.2->1.3
src/swapfile/gmkswap.c:1.2->1.3
src/swapfile/swapfile.c:1.5->1.6
src/swapfile/swapfileI.h:1.5->1.6
src/swapfile/swapfile_test.c:1.5->1.6
---------------------
PatchSet 29
Date: 2000/01/31 09:56:57
Author: richi
Branch: HEAD
Tag: (none)
Log:
documentation and build process updates
Members:
INSTALL:1.1->1.2
README:1.1->1.2
acconfig.h:1.1->1.2
configure.in:1.6->1.7
doc/Makefile.am:1.2->1.3
src/Makefile.am:1.1->1.2
src/filter/Makefile.am:1.4->1.5
src/include/util.h:1.3->1.4
---------------------
PatchSet 30
Date: 2000/01/31 10:04:04
Author: richi
Branch: HEAD
Tag: (none)
Log:
shuffeled things around in the filter registry API, especially the
parameter handling.
merged the wast of basic filters into groups, i.e. deleted old files,
created new ones. this is because filters in the same group may want
to share some code - see channel_io.c
Members:
src/filter/Makefile.am:1.5->1.6
src/filter/audio_io.c:INITIAL->1.1
src/filter/basic.c:INITIAL->1.1
src/filter/channel_io.c:INITIAL->1.1
src/filter/debug.c:INITIAL->1.1
src/filter/drop.c:1.3->1.4(DEAD)
src/filter/dup.c:1.3->1.4(DEAD)
src/filter/esd.c:1.3->1.4(DEAD)
src/filter/file_in.c:1.3->1.4(DEAD)
src/filter/file_out.c:1.3->1.4(DEAD)
src/filter/filter.c:1.6->1.7
src/filter/filter.h:1.5->1.6
src/filter/filter_node.c:1.6->1.7
src/filter/null.c:1.4->1.5(DEAD)
src/filter/one2n.c:1.3->1.4(DEAD)
src/filter/ping.c:1.4->1.5(DEAD)
---------------------
PatchSet 31
Date: 2000/01/31 10:06:47
Author: richi
Branch: HEAD
Tag: (none)
Log:
again fixes to the build process wrt to esd and debugging
Members:
configure.in:1.7->1.8
src/Makefile.am:1.2->1.3
src/include/glame_types.h:1.1->1.2
src/rw/wav_file.c:1.2->1.3
---------------------
PatchSet 32
Date: 2000/01/31 10:09:08
Author: richi
Branch: HEAD
Tag: (none)
Log:
documented the whole mess of the filter APIs, fixed minor bugs in
the interface, too.
Members:
doc/filter.txt:1.1->1.2
src/filter/filter.h:1.6->1.7
---------------------
PatchSet 33
Date: 2000/01/31 10:10:11
Author: richi
Branch: HEAD
Tag: (none)
Log:
done documentation of the swapfile API.
bumped version number of glame.
Members:
configure.in:1.8->1.9
doc/swapfile.txt:INITIAL->1.1
---------------------
PatchSet 34
Date: 2000/01/31 14:27:13
Author: richi
Branch: HEAD
Tag: (none)
Log:
installed work-around for IRIX & gcc related semctl bug
Members:
src/channel/Makefile.am:1.2->1.3
src/hash/glame_hash.c:1.5->1.6
src/swapfile/swapfile.c:1.6->1.7
---------------------
PatchSet 35
Date: 2000/01/31 15:02:12
Author: richi
Branch: HEAD
Tag: (none)
Log:
added console glame
Members:
src/Makefile.am:1.3->1.4
src/cglame.c:INITIAL->1.1
---------------------
PatchSet 36
Date: 2000/02/01 09:35:55
Author: mag
Branch: HEAD
Tag: (none)
Log:
added simple waveform generator
added audio output test program
and YEAH it compiles and RUNS, but you can hear nothing...
[mag]
Members:
src/filter/Makefile.am:1.6->1.7
src/filter/filter.c:1.7->1.8
src/filter/test_audio.c:INITIAL->1.1
src/filter/waveform.c:INITIAL->1.1
---------------------
PatchSet 37
Date: 2000/02/01 10:23:13
Author: mag
Branch: HEAD
Tag: (none)
Log:
fixed missing EOF queueing
sound output works now
FIXME: audio_io/write(esd) should check for number of bytes actually written
[mag]
Members:
src/filter/audio_io.c:1.1->1.2
src/filter/waveform.c:1.1->1.2
---------------------
PatchSet 38
Date: 2000/02/01 10:40:02
Author: richi
Branch: HEAD
Tag: v0_020
Log:
bumped version number for first file release
Members:
configure.in:1.9->1.10
---------------------
PatchSet 39
Date: 2000/02/01 13:40:22
Author: richi
Branch: HEAD
Tag: (none)
Log:
fixed IRIX build problems wrt to missing -lm
fixed IRIX&gcc bugs which prevented test_latency to work
Members:
src/Makefile.am:1.4->1.5
src/filter/Makefile.am:1.7->1.8
src/filter/filter_buffer.c:1.2->1.3
---------------------
PatchSet 40
Date: 2000/02/01 13:59:39
Author: richi
Branch: HEAD
Tag: (none)
Log:
added DPRINTF and DERROR to util.h and in turn converted various
printfs and fprintfs to DPRINTFs and a lot of PANICs that really
werent PANICs to DERRORs.
Members:
src/filter/audio_io.c:1.2->1.3
src/filter/debug.c:1.1->1.2
src/filter/filter_network.c:1.5->1.6
src/filter/filter_node.c:1.7->1.8
src/filter/waveform.c:1.2->1.3
src/hash/glame_hash.c:1.6->1.7
src/include/util.h:1.4->1.5
src/swapfile/swapfile.c:1.7->1.8
---------------------
PatchSet 41
Date: 2000/02/02 09:53:21
Author: richi
Branch: HEAD
Tag: (none)
Log:
simplified filter_buffer alot
Members:
src/filter/filter.h:1.7->1.8
src/filter/filter_buffer.c:1.3->1.4
---------------------
PatchSet 42
Date: 2000/02/02 09:58:34
Author: richi
Branch: HEAD
Tag: (none)
Log:
kill all semaphores we alloc
Members:
src/hash/glame_hash.c:1.7->1.8
src/swapfile/swapfile.c:1.8->1.9
---------------------
PatchSet 43
Date: 2000/02/02 10:52:47
Author: mag
Branch: HEAD
Tag: (none)
Log:
initial version of audiofile based file_reader
Members:
src/filter/Makefile.am:1.8->1.9
src/filter/audio_io.c:1.3->1.4
src/filter/filter.c:1.8->1.9
src/filter/read_file.c:INITIAL->1.1
src/filter/test_audio.c:1.1->1.2
src/filter/test_play.c:INITIAL->1.1
src/filter/waveform.c:1.3->1.4
src/include/glame_types.h:1.2->1.3
---------------------
PatchSet 44
Date: 2000/02/02 11:26:45
Author: richi
Branch: HEAD
Tag: (none)
Log:
fixed bug wrt to waiting for the network
Members:
src/filter/filter.h:1.8->1.9
src/filter/filter_network.c:1.6->1.7
---------------------
PatchSet 45
Date: 2000/02/02 11:35:05
Author: richi
Branch: HEAD
Tag: (none)
Log:
free the buffer, not only the buffer struct
Members:
src/filter/filter_buffer.c:1.4->1.5
---------------------
PatchSet 46
Date: 2000/02/02 11:39:53
Author: mag
Branch: HEAD
Tag: (none)
Log:
minor changes
Members:
src/filter/read_file.c:1.1->1.2
---------------------
PatchSet 47
Date: 2000/02/02 11:46:30
Author: richi
Branch: HEAD
Tag: (none)
Log:
(HACK) write throttle pending buffers
Members:
src/filter/filter_buffer.c:1.5->1.6
---------------------
PatchSet 48
Date: 2000/02/02 12:23:13
Author: richi
Branch: HEAD
Tag: (none)
Log:
checks for libaudiofile and link against it
Members:
acconfig.h:1.2->1.3
configure.in:1.10->1.11
src/Makefile.am:1.5->1.6
src/filter/Makefile.am:1.9->1.10
---------------------
PatchSet 49
Date: 2000/02/02 12:45:11
Author: richi
Branch: HEAD
Tag: (none)
Log:
bumped version number
Members:
configure.in:1.11->1.12
---------------------
PatchSet 50
Date: 2000/02/02 15:13:32
Author: nold
Branch: HEAD
Tag: (none)
Log:
Fixed segfaulting test_play when called without args. [dk]
Members:
src/filter/read_file.c:1.2->1.3
src/filter/test_play.c:1.1->1.2
---------------------
PatchSet 51
Date: 2000/02/03 03:13:17
Author: garrison
Branch: HEAD
Tag: (none)
Log:
added questions about channels
Members:
doc/masterplan.txt:1.2->1.3
---------------------
PatchSet 52
Date: 2000/02/03 12:26:55
Author: nold
Branch: HEAD
Tag: (none)
Log:
Fixed error handling in filter network - preventing stalls. [dk]
Added pointer to test files in src/filter/ to {,c}glame. [dk]
Updated ChangeLog. [dk]
Members:
ChangeLog:1.4->1.5
src/cglame.c:1.1->1.2
src/glame.c:1.2->1.3
src/filter/filter_network.c:1.7->1.8
---------------------
PatchSet 53
Date: 2000/02/03 14:24:51
Author: richi
Branch: HEAD
Tag: (none)
Log:
A to Q in masterplan, minor documentation update
Members:
README:1.2->1.3
doc/TODO:1.3->1.4
doc/masterplan.txt:1.3->1.4
---------------------
PatchSet 54
Date: 2000/02/03 15:17:40
Author: nold
Branch: HEAD
Tag: (none)
Log:
Added basic version of atomic arithmetic operations. [dk]
Members:
src/include/Makefile.am:1.1->1.2
src/include/atomic.h:INITIAL->1.1
---------------------
PatchSet 55
Date: 2000/02/03 15:22:29
Author: nold
Branch: HEAD
Tag: (none)
Log:
Grrr..., richi wants to do broken things. [dk]
Members:
src/include/atomic.h:1.1->1.2
---------------------
PatchSet 56
Date: 2000/02/03 18:21:21
Author: richi
Branch: HEAD
Tag: (none)
Log:
filter API extension (and some minor modifications)
Members:
doc/TODO:1.4->1.5
doc/filter.txt:1.2->1.3
src/filter/channel_io.c:1.1->1.2
src/filter/debug.c:1.2->1.3
src/filter/filter.c:1.9->1.10
src/filter/filter.h:1.9->1.10
src/filter/filter_buffer.c:1.6->1.7
src/filter/filter_network.c:1.8->1.9
src/filter/filter_node.c:1.8->1.9
src/filter/test_audio.c:1.2->1.3
src/filter/test_latency.c:1.4->1.5
src/filter/test_play.c:1.2->1.3
src/filter/volume_adjust.c:1.3->1.4
---------------------
PatchSet 57
Date: 2000/02/03 18:29:16
Author: richi
Branch: HEAD
Tag: (none)
Log:
added documentation files for having lists of wishes and maintainers
Members:
doc/maintainers.txt:INITIAL->1.1
doc/wishlist.txt:INITIAL->1.1
---------------------
PatchSet 58
Date: 2000/02/03 18:47:13
Author: richi
Branch: HEAD
Tag: (none)
Log:
distribute new files - sigh!
Members:
doc/Makefile.am:1.3->1.4
---------------------
PatchSet 59
Date: 2000/02/03 19:13:46
Author: richi
Branch: HEAD
Tag: (none)
Log:
removed bogous comment but didnt add any useful stuff
Members:
doc/development.txt:1.1->1.2
---------------------
PatchSet 60
Date: 2000/02/04 03:54:44
Author: mag
Branch: HEAD
Tag: (none)
Log:
glametypes.h: added defines CHAR2SAMPLE, SAMPLE2CHAR
read_file.c: now capable of 8/16bit sample files, does dodgy resampling to 44,1 kHz(just for testing purposes)
Members:
src/filter/read_file.c:1.3->1.4
src/include/glame_types.h:1.3->1.4
---------------------
PatchSet 61
Date: 2000/02/04 12:52:25
Author: nold
Branch: HEAD
Tag: (none)
Log:
Spelling fixes for richi's convenience. [dk]
Members:
doc/filter.txt:1.3->1.4
---------------------
PatchSet 62
Date: 2000/02/05 00:01:53
Author: nold
Branch: HEAD
Tag: (none)
Log:
Converting doc/ to texinfo (round one). [dk]
Members:
doc/Makefile.am:1.4->1.5
doc/filter.texi:INITIAL->1.1
doc/glame.texi:INITIAL->1.1
doc/swapfile.texi:INITIAL->1.1
---------------------
PatchSet 63
Date: 2000/02/05 00:46:28
Author: nold
Branch: HEAD
Tag: (none)
Log:
txt -> texi conversion, part 2 and other minor stuff. [dk]
Members:
doc/development.txt:1.2->1.3
doc/glame.texi:1.1->1.2
doc/maintainers.txt:1.1->1.2
doc/swapfile.txt:1.1->1.2(DEAD)