-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
2665 lines (1937 loc) · 71.5 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
2011-12-25 Stefan Sauer <ensonic@users.sf.net>
* NEWS:
Releasing.
2011-12-15 Stefan Sauer <ensonic@users.sf.net>
* src/bml/common.c:
Also switch buzzmachines to use enums instead of strings.
2011-12-14 Stefan Sauer <ensonic@users.sf.net>
* configure.ac:
* src/audiodelay/Makefile.am:
* src/bml/Makefile.am:
* src/fluidsynth/Makefile.am:
* src/simsyn/Makefile.am:
Split GST_LDFLAGS into GST_LIBS and_GST_LDFLAGS. Sanitize link order.
2011-12-09 Stefan Sauer <ensonic@users.sf.net>
* docs/reference/gst-buzztrax-sections.txt:
* libgstbuzztrax/toneconversion.c:
* libgstbuzztrax/toneconversion.h:
* src/simsyn/simsyn.c:
* tests/e-gst-note2frequency.c:
* tests/t-gst-note2frequency.c:
We don't need separate number and enum apis, as now the values are the
same.
2011-12-08 Stefan Sauer <ensonic@users.sf.net>
* libgstbuzztrax/toneconversion.c:
Fix value mapping. We switched to buzz values.
2011-12-08 Stefan Sauer <ensonic@users.sf.net>
* src/fluidsynth/gstfluidsynth.c:
Fix buffer sizes, fluidsynth produces stereo.
2011-12-08 Stefan Sauer <ensonic@users.sf.net>
* libgstbuzztrax/musicenums.h:
Use a count of 16 per octave to be able to reuse code that deals with
buzz notes.
* src/fluidsynth/gstfluidsynth.c:
* src/fluidsynth/gstfluidsynth.h:
* src/simsyn/simsyn.c:
* src/simsyn/simsyn.h:
Use the enums instead of strings to play notes. This also fixed
leaking the string for the last note.
2011-12-08 Stefan Sauer <ensonic@users.sf.net>
* docs/reference/gst-buzztrax-sections.txt:
* libgstbuzztrax/musicenums.c:
* libgstbuzztrax/musicenums.h:
* libgstbuzztrax/toneconversion.c:
* libgstbuzztrax/toneconversion.h:
* src/bml/gstbmlorc-dist.c:
* src/simsyn/simsyn.c:
* tests/e-gst-note2frequency.c:
Add a Note enum type. Extend the tone conversion to handle it and
replace some previous defines with enum values.
2011-12-03 Stefan Sauer <ensonic@users.sf.net>
* configure.ac:
Fix deprecation flags.
2011-12-02 Stefan Sauer <ensonic@users.sf.net>
* src/bml/gstbmlorc-dist.c:
* src/bml/gstbmlorc-dist.h:
Update generated files.
2011-12-02 Stefan Sauer <ensonic@users.sf.net>
* docs/reference/gst-buzztrax-sections.txt:
Make dist check fixes.
2011-12-02 Stefan Sauer <ensonic@users.sf.net>
* NEWS:
Release prep.
2011-12-02 Stefan Sauer <ensonic@users.sf.net>
* src/bml/plugin.c:
Removed unused parameter.
2011-10-07 Stefan Sauer <ensonic@users.sf.net>
* AUTHORS:
Update my name.
* src/simsyn/simsyn.c:
* src/simsyn/simsyn.h:
Planning.
2011-10-04 Stefan Sauer <ensonic@users.sf.net>
* src/bml/utils.c:
Add a comment explaining why we leak one instance for every buzz
machine type being used.
2011-10-04 Stefan Sauer <ensonic@users.sf.net>
* src/bml/utils.c:
More logging.
2011-10-04 Stefan Sauer <ensonic@users.sf.net>
* src/simsyn/simsyn.c:
* src/simsyn/simsyn.h:
Add more noise types.
2011-08-23 Stefan Sauer <ensonic@users.sf.net>
* TODO:
Translate some german comments and add more planning details.
2011-08-23 Stefan Sauer <ensonic@users.sf.net>
* src/fluidsynth/gstfluidsynth.c:
* src/simsyn/simsyn.c:
Remove samplesperbuffer property, we use the tempo iface for it.
2011-08-23 Stefan Sauer <ensonic@users.sf.net>
* src/fluidsynth/gstfluidsynth.c:
More reordering an syncing.
2011-08-23 Stefan Sauer <ensonic@users.sf.net>
* src/fluidsynth/gstfluidsynth.c:
* src/simsyn/simsyn.c:
More reordering an syncing.
2011-08-23 Stefan Sauer <ensonic@users.sf.net>
* src/fluidsynth/gstfluidsynth.c:
* src/simsyn/simsyn.c:
Sync both implementations a bit more.
2011-08-22 Stefan Sauer <ensonic@users.sf.net>
* src/fluidsynth/gstfluidsynth.c:
* src/simsyn/simsyn.c:
Remove is-live properties. Those are not useful for synthesizers, as
they would break the controller.
2011-08-11 Stefan Sauer <ensonic@users.sf.net>
* src/fluidsynth/gstfluidsynth.c:
Add a heuristic that tries known soundsfonts for now.
2011-08-11 Stefan Sauer <ensonic@users.sf.net>
* src/fluidsynth/gstfluidsynth.c:
* src/fluidsynth/gstfluidsynth.h:
Add planning comments for handling sf2 files. Mark paramspecs with
static_string flag. Add a log handers to get fluidsynth messages into
the gstreamer log and not on the users terminal.
2011-08-04 Stefan Sauer <ensonic@users.sf.net>
* configure.ac:
Fix weird chars in GST_PLGIN_LDFLAGS.
2011-08-02 Stefan Sauer <ensonic@users.sf.net>
* docs/reference/tmpl/_dummy.sgml (deleted):
Remove files we don't need.
2011-07-11 Stefan Sauer <ensonic@users.sf.net>
* src/simsyn/simsyn.c:
Remove unused variable.
2011-07-11 Stefan Sauer <ensonic@users.sf.net>
* src/audiodelay/audiodelay.c:
Remove unused variable.
2011-07-06 Stefan Sauer <ensonic@users.sf.net>
* libgstbuzztrax/musicenums.c:
* libgstbuzztrax/musicenums.h:
* libgstbuzztrax/toneconversion.h:
* src/bml/common.c:
Rename some obviously misnamed enums.
2011-05-12 Stefan Kost <ensonic@users.sf.net>
* src/bml/plugin.c:
Look again at the vagrind complaints. Pass uniform types to bsearch to
not rely on argument order in the compare function. Also drop a
nonsense check (cat won't be NULL, its malloced).
2011-05-10 Stefan Kost <ensonic@users.sf.net>
* docs/reference/Makefile.am:
* src/audiodelay/audiodelay.h:
* src/fluidsynth/gstfluidsynth.h:
* src/simsyn/simsyn.c:
* src/simsyn/simsyn.h:
API doc fixes.
2011-04-17 Stefan Kost <ensonic@users.sf.net>
* docs/reference/gst-buzztrax-sections.txt:
* docs/reference/gst-buzztrax.types.in:
* src/audiodelay/audiodelay.c:
* src/audiodelay/audiodelay.h:
* src/fluidsynth/gstfluidsynth.c:
* src/fluidsynth/gstfluidsynth.h:
* src/simsyn/simsyn.c:
* src/simsyn/simsyn.h:
Fully move to GstBt namespace. Makes the docs recognise the gobjects
again too.
2011-04-17 Stefan Kost <ensonic@users.sf.net>
* docs/reference/gst-buzztrax-sections.txt:
* libgstbuzztrax/childbin.h:
* libgstbuzztrax/help.h:
* libgstbuzztrax/propertymeta.h:
* libgstbuzztrax/tempo.h:
Add dummy docs for opaque interface structs.
2011-04-17 Stefan Kost <ensonic@users.sf.net>
* configure.ac:
* libgstbuzztrax/Makefile.am:
* src/bml/gstbmlsrc.c:
* src/bml/gstbmlsrc.h:
* src/simsyn/simsyn.c:
* src/simsyn/simsyn.h:
* libgstbuzztrax/gstpooledbuffer.h (deleted):
* libgstbuzztrax/gstbufferpool.c (deleted):
* libgstbuzztrax/gstlfqueue.c (deleted):
* libgstbuzztrax/gstbufferpool.h (deleted):
* libgstbuzztrax/gstlfqueue.h (deleted):
* libgstbuzztrax/gstpooledbuffer.c (deleted):
Remove bufferpool again. We're going to have it in gst-0.11.
2011-04-17 Stefan Kost <ensonic@users.sf.net>
* docs/reference/Makefile.am:
* docs/reference/gst-buzztrax-sections.txt:
* docs/reference/gst-buzztrax.types.in:
* libgstbuzztrax/childbin.c:
* libgstbuzztrax/compat.h:
* libgstbuzztrax/envelope.c:
* libgstbuzztrax/envelope.h:
* libgstbuzztrax/help.c:
* libgstbuzztrax/musicenums.c:
* libgstbuzztrax/preset.c:
* libgstbuzztrax/propertymeta.c:
* libgstbuzztrax/tempo.c:
* libgstbuzztrax/toneconversion.c:
* src/audiodelay/audiodelay.c:
* src/bml/gstbml.c:
* src/fluidsynth/gstfluidsynth.c:
* src/simsyn/simsyn.c:
Add titles to the section docs and other doc cleanups.
2011-03-20 Stefan Kost <ensonic@users.sf.net>
* src/bml/plugin.c:
Remove Rout EQ 10 from blacklist.
2011-03-18 Stefan Kost <ensonic@users.sf.net>
* src/bml/utils.c:
Fix the build for using the new element factory metadata.
2011-03-01 Stefan Kost <ensonic@users.sf.net>
* configure.ac:
* libgstbuzztrax/Makefile.am:
Use linker regexp for the library too and fix the one for the plugins.
2011-02-22 Stefan Kost <ensonic@users.sf.net>
* src/bml/common.c:
Add some more comments.
2011-02-22 Stefan Kost <ensonic@users.sf.net>
* src/bml/common.c:
Make bml_fix_data() lighter, as we now configure the FPU to DAZ|FZ
mode. Maybe need to make that conditional ...
2011-02-22 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbmlsrc.c:
Fix conditional bufferpool use.
2011-01-29 Stefan Kost <ensonic@users.sf.net>
* src/bml/utils.c:
Set ptr to NULL to avoid double free.
2011-01-27 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbmlsrc.c:
* src/bml/gstbmlsrc.h:
* src/bml/utils.c:
* src/simsyn/simsyn.c:
Clean up pool handling and implement for bmlsrc. Would need
prepare_buffer in bmltransform for m2s case.
2011-01-27 Stefan Kost <ensonic@users.sf.net>
* src/simsyn/simsyn.c:
* src/simsyn/simsyn.h:
Use an env-var (GST_USE_BUFFERPOOL) for before-after-meassuremnets.
2011-01-27 Stefan Kost <ensonic@users.sf.net>
* src/simsyn/simsyn.c:
* src/simsyn/simsyn.h:
Whitespace fixes and logging.
2011-01-27 Stefan Kost <ensonic@users.sf.net>
* libgstbuzztrax/Makefile.am:
* libgstbuzztrax/gstbufferpool.c:
* libgstbuzztrax/gstlfqueue.c:
* libgstbuzztrax/gstpooledbuffer.c:
* libgstbuzztrax/gstpooledbuffer.h:
* libgstbuzztrax/gstpooledbuffer.h (svn:keywords, svn:eol-style):
* libgstbuzztrax/gstpooledbuffer.c (svn:keywords, svn:eol-style):
* libgstbuzztrax/gstpooledbuffer.h (added):
* libgstbuzztrax/gstpooledbuffer.c (added):
Add a pooled buffer subclass to implement resurrection of buffers into
the pool.
2011-01-26 Stefan Kost <ensonic@users.sf.net>
* libgstbuzztrax/gstbufferpool.c:
gst_buffer_pool_acquire_buffer() can be called with params=NULL.
2011-01-26 Stefan Kost <ensonic@users.sf.net>
* libgstbuzztrax/gstbufferpool.c:
Check for the proper return value.
2011-01-26 Stefan Kost <ensonic@users.sf.net>
* src/simsyn/simsyn.c:
* src/simsyn/simsyn.h:
Conditionally attempt to use a bufferpool. Disabled yet.
2011-01-26 Stefan Kost <ensonic@users.sf.net>
* configure.ac:
* libgstbuzztrax/Makefile.am:
* libgstbuzztrax/gstbufferpool.c:
* libgstbuzztrax/gstbufferpool.h:
* libgstbuzztrax/gstlfqueue.c:
* libgstbuzztrax/gstlfqueue.h:
* libgstbuzztrax/gstbufferpool.c (added):
* libgstbuzztrax/gstlfqueue.c (added):
* libgstbuzztrax/gstbufferpool.h (added):
* libgstbuzztrax/gstlfqueue.h (added):
Add a copy of http://cgit.freedesktop.org/~wtay/gstreamer/?h=bufferpool.
2011-01-10 Stefan Kost <ensonic@users.sf.net>
* src/bml/plugin.c:
Update blacklist after recent bml improvements.
2011-01-09 Stefan Kost <ensonic@users.sf.net>
* src/bml/plugin.c:
Remove one plugin from blacklist that now works.
2011-01-08 Stefan Kost <ensonic@users.sf.net>
* src/bml/plugin.c:
Update plugin blacklist. Also improve matching with different
charsets.
2011-01-07 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbmlsrc.c:
* src/bml/gstbmltransform.c:
Reuse pad-templates. Saves memory and startup time.
2010-12-17 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbmlsrc.c:
* src/bml/gstbmltransform.c:
* src/bml/utils.c:
* src/bml/utils.h:
Fix the build for using the new element factory metadata.
2010-12-10 Stefan Kost <ensonic@users.sf.net>
* src/fluidsynth/gstfluidsynth.c:
Improve docs and add comments.
2010-11-25 Stefan Kost <ensonic@users.sf.net>
* configure.ac:
Tell wheter we build check based unit test in final sumary.
2010-11-04 Stefan Kost <ensonic@users.sf.net>
* configure.ac:
If one does not have gtk-doc, still define the automake variable
accordingly.
2010-09-21 Stefan Kost <ensonic@users.sf.net>
* src/bml/common.c:
* src/bml/common.h:
Use the enum type instead of guint.
2010-09-21 Stefan Kost <ensonic@users.sf.net>
* docs/reference/Makefile.am:
and use tabs...
2010-09-21 Stefan Kost <ensonic@users.sf.net>
* docs/reference/Makefile.am:
srcdir!=builddir update.
* docs/reference/gst-buzztrax-sections.txt:
Fix duplicate entry.
2010-09-21 Stefan Kost <ensonic@users.sf.net>
* Makefile.am:
Remove some more shave leftovers.
* orc.mak:
Cure make distcheck.
2010-09-21 Stefan Kost <ensonic@users.sf.net>
* docs/reference/Makefile.am:
* libgstbuzztrax/toneconversion.c:
Fix the tests.
2010-09-21 Stefan Kost <ensonic@users.sf.net>
* NEWS:
Enable make-distcheck.
* orc.mak:
* src/bml/Makefile.am:
* src/bml/native/Makefile.am:
* src/bml/wrapped/Makefile.am:
Make dist-cehck fixes.
2010-09-20 Stefan Kost <ensonic@users.sf.net>
* docs/reference/Makefile.am:
* docs/reference/gst-buzztrax-docs.sgml:
* docs/reference/gst-buzztrax-sections.txt:
* libgstbuzztrax/compat.h:
* libgstbuzztrax/envelope.h:
* libgstbuzztrax/toneconversion.h:
* src/audiodelay/audiodelay.h:
* src/bml/common.c:
* src/bml/common.h:
* src/bml/gstbml.c:
* src/fluidsynth/gstfluidsynth.h:
* src/simsyn/simsyn.h:
Cleanup the docs.
2010-09-13 Stefan Kost <ensonic@users.sf.net>
* src/bml/common.c:
* src/bml/gstbmltransform.c:
* src/bml/plugin.c:
Remove commented out liboil code.
2010-09-13 Stefan Kost <ensonic@users.sf.net>
* configure.ac:
Make gtk-doc also optional in vcs build.
2010-09-07 Stefan Kost <ensonic@users.sf.net>
* src/fluidsynth/gstfluidsynth.c:
One more check cleanup.
2010-09-06 Stefan Kost <ensonic@users.sf.net>
* src/audiodelay/audiodelay.c:
* src/bml/gstbmlsrc.c:
* src/bml/gstbmltransform.c:
* src/fluidsynth/gstfluidsynth.c:
* src/simsyn/simsyn.c:
Fix a few wrong checks in the gst-version check. Clean needless parent
checks when chainign up.
2010-09-06 Stefan Kost <ensonic@users.sf.net>
* src/audiodelay/audiodelay.c:
* src/bml/gstbmlsrc.c:
* src/bml/gstbmltransform.c:
* src/bml/plugin.h:
* src/bml/utils.c:
* src/fluidsynth/gstfluidsynth.c:
* src/simsyn/simsyn.c:
Make Help iface conditional in other places too.
2010-09-06 Stefan Kost <ensonic@users.sf.net>
* m4/orc.m4:
* orc.mak:
* m4/orc.m4 (added):
* orc.mak (added):
Add missing build files.
2010-09-06 Stefan Kost <ensonic@users.sf.net>
* src/bml/common.c:
* src/bml/gstbmlorc-dist.c:
* src/bml/gstbmlorc-dist.h:
* src/bml/gstbmlorc.orc:
* src/bml/gstbmltransform.c:
* src/bml/gstbmlorc-dist.h (svn:keywords, svn:eol-style):
* src/bml/gstbmlorc-dist.c (svn:keywords, svn:eol-style):
* src/bml/gstbmlorc-dist.h (added):
* src/bml/gstbmlorc.orc (added):
* src/bml/gstbmlorc-dist.c (added):
Add new files for orc and remove fallback (handled by orc).
2010-09-06 Stefan Kost <ensonic@users.sf.net>
* configure.ac:
* docs/reference/gst-buzztrax.types.in:
* src/audiodelay/audiodelay.c:
* src/bml/Makefile.am:
* src/bml/common.c:
* src/bml/gstbmlsrc.c:
* src/bml/gstbmltransform.c:
* src/bml/native/Makefile.am:
* src/bml/plugin.c:
* src/bml/plugin.h:
* src/bml/wrapped/Makefile.am:
Switch from liboil to ORC. Add a fallback. Make Help iface
conditional (need to switch more elements).
2010-09-05 Stefan Kost <ensonic@users.sf.net>
* libgstbuzztrax/Makefile.am:
* libgstbuzztrax/childbin.c:
* libgstbuzztrax/compat.h:
* libgstbuzztrax/envelope.c:
* libgstbuzztrax/help.c:
* libgstbuzztrax/preset.c:
* libgstbuzztrax/propertymeta.c:
* libgstbuzztrax/tempo.c:
* libgstbuzztrax/toneconversion.c:
* libgstbuzztrax/compat.h (svn:keywords, svn:eol-style):
* libgstbuzztrax/compat.h (added):
Use G_DEFINE_TYPE and co. Add compat header for the G_DEFINE_INTERACE
macros. Clean up gobject usage.
2010-08-12 Stefan Kost <ensonic@users.sf.net>
* src/simsyn/simsyn.c:
* src/simsyn/simsyn.h:
Performance improvemnts. Use a define for wavetable-size.
2010-08-08 Stefan Kost <ensonic@users.sf.net>
* libgstbuzztrax/toneconversion.c:
Add missing return type to function.
2010-08-07 Stefan Kost <ensonic@users.sf.net>
* src/bml/utils.c:
Whitespace.
* src/simsyn/simsyn.c:
Avoid derefing the loop cond inside all the time.
2010-05-13 Stefan Kost <ensonic@users.sf.net>
* autogen.sh:
Also kill shave from default args.
* src/bml/gstbmlsrc.c:
Whitespaces.
2010-04-27 Stefan Kost <ensonic@users.sf.net>
* src/bml/plugin.c:
Fix version check.
2010-04-27 Stefan Kost <ensonic@users.sf.net>
* libgstbuzztrax/toneconversion.c:
Fix include style and add missing include.
2010-04-26 Stefan Kost <ensonic@users.sf.net>
* src/bml/plugin.c:
Don't fail in plugin_init when having 0 elements. If we fail, the
plugin scanner will blacklist us.
2010-04-19 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbmlsrc.c:
* src/fluidsynth/gstfluidsynth.c:
* src/simsyn/simsyn.c:
Calculate correct buffer siyes when playing backwards.
2010-04-16 Stefan Kost <ensonic@users.sf.net>
* configure.ac:
* shave.in (deleted):
* shave-libtool.in (deleted):
Get rid of shave and switch to automake silent rules if available.
2010-04-13 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbml.h:
* src/bml/gstbmlsrc.c:
* src/fluidsynth/gstfluidsynth.c:
* src/fluidsynth/gstfluidsynth.h:
* src/simsyn/simsyn.c:
* src/simsyn/simsyn.h:
Don't need the seekflags - baseclass has them. Also always do eos handling
on last buffer.
2010-04-12 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbml.h:
* src/bml/gstbmlsrc.c:
* src/fluidsynth/gstfluidsynth.c:
* src/fluidsynth/gstfluidsynth.h:
* src/simsyn/simsyn.c:
* src/simsyn/simsyn.h:
Fix reverse playback.
2010-04-12 Stefan Kost <ensonic@users.sf.net>
* src/audiodelay/audiodelay.c:
Avoid a string copy.
* src/bml/common.c:
Comment
2010-04-04 Stefan Kost <ensonic@users.sf.net>
* src/audiodelay/audiodelay.c: (gst_audio_delay_base_init):
* src/fluidsynth/gstfluidsynth.c: (gst_fluidsynth_base_init):
* src/simsyn/simsyn.c: (gst_sim_syn_base_init):
Use gst_element_class_set_details_simple to save some relocs.
2010-04-04 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbmlsrc.c: (gst_bml_src_class_init):
* src/fluidsynth/gstfluidsynth.c: (gst_fluidsynth_class_init):
* src/simsyn/simsyn.c: (gst_sim_syn_class_init):
Remove unneded _get_times vmethods.
2010-03-30 Stefan Kost <ensonic@users.sf.net>
* configure.ac:
Improve checking of non-std install prefix.
2010-03-29 Stefan Kost <ensonic@users.sf.net>
* COPYING:
* COPYING (added):
Add LGPL COPYING file as automake cannot be asked to copy that one instead of a GPL one.
2010-02-24 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbml.h:
* src/bml/gstbmlsrc.c:
* src/fluidsynth/gstfluidsynth.c:
* src/simsyn/simsyn.c:
* src/simsyn/simsyn.h:
Try to make these supporting trick modes. Needs more work.
2010-02-03 Stefan Kost <ensonic@users.sf.net>
* src/bml/common.c:
Idea.
* src/bml/plugin.c:
Update blacklist.
2010-01-30 Stefan Kost <ensonic@users.sf.net>
* src/bml/common.c:
* src/fluidsynth/gstfluidsynth.c:
* src/simsyn/simsyn.c:
Mark trigger params as writeonly. This allows detecting them better
without any custom param-spec magic.
2010-01-26 Stefan Kost <ensonic@users.sf.net>
* src/bml/Makefile.am:
* src/bml/plugin.h:
Link agains -lm and unconditionaly define _ISOC99_SOURCE for isnormal.
* src/bml/plugin.c:
Initialise var to fix crash in g_free.
2010-01-25 Stefan Kost <ensonic@users.sf.net>
* configure.ac:
Autofoo cleanups.
* src/bml/gstbmlsrc.c:
* src/fluidsynth/gstfluidsynth.c:
* src/simsyn/simsyn.c:
Set BUFFER_OFFSET_END as we can.
2009-12-03 Stefan Kost <ensonic@users.sf.net>
* src/bml/common.c:
Mitigate slowdown caused by fix_data method.
2009-10-30 Stefan Kost <ensonic@users.sf.net>
* src/bml/common.c:
* src/bml/common.h:
* src/bml/gstbmlsrc.c:
* src/bml/gstbmltransform.c:
Refactor to extra method. Also set buffers full of denormals to gap.
2009-10-29 Stefan Kost <ensonic@users.sf.net>
* src/bml/common.c:
* src/bml/gstbmlv.c:
* src/bml/utils.c:
Log object names too.
2009-10-28 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbmlsrc.c:
* src/bml/gstbmltransform.c:
* src/bml/plugin.h:
Add experimental buffer checking in debug build (and denormal fixing for
now).
2009-10-27 Stefan Kost <ensonic@users.sf.net>
* configure.ac:
Turn off -Werror for automake as it warns about gnu make portability
issues.
2009-10-27 Stefan Kost <ensonic@users.sf.net>
* src/bml/common.c:
Add plain copy fallback when charset conversion fails.
2009-10-13 Stefan Kost <ensonic@users.sf.net>
* tests/Makefile.am:
Use $(LIBTOOL) instead of hardcoded version.
2009-09-28 Stefan Kost <ensonic@users.sf.net>
* docs/reference/Makefile.am:
Update gtk-doc makefiles rules.
2009-09-06 Stefan Kost <ensonic@users.sf.net>
* configure.ac:
Bump *all* versions.
2009-09-06 Stefan Kost <ensonic@users.sf.net>
* configure.ac:
Back to development.
=== release 0.5.0 ===
2009-09-05 Stefan Kost <ensonic@users.sf.net>
* NEWS:
Update NEWS.
2009-07-06 Stefan Kost <ensonic@users.sf.net>
* src/bml/common.c:
Don't crash on switching presets on voice-less machines.
2009-07-01 Stefan Kost <ensonic@users.sf.net>
* src/simsyn/simsyn.c:
Micro optimization.
2009-06-24 Stefan Kost <ensonic@users.sf.net>
* configure.ac:
Sync required versions with buzztrax module.
2009-06-21 Stefan Kost <ensonic@users.sf.net>
* src/bml/common.c:
Return TRUE when preset loading was successful.
2009-06-20 Stefan Kost <ensonic@users.sf.net>
* libgstbuzztrax/toneconversion.c:
Save rellocs.
2009-06-17 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbmlsrc.c:
* src/bml/gstbmltransform.c:
* src/bml/plugin.c:
* src/bml/utils.c:
* src/bml/utils.h:
Also close dll when last instance is gone. Handle non UTF-8 filenames.
2009-06-16 Stefan Kost <ensonic@users.sf.net>
* src/bml/common.c:
* src/bml/common.h:
* src/bml/gstbml.c:
* src/bml/gstbmlv.c:
* src/bml/plugin.c:
* src/bml/utils.c:
Remove old code. With that almost all the hashtables go and we're closing
all the related one-time leaks. Also fix wrongly registered help-file-uri.
Add a todo: for file-name conversion.
2009-06-12 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbmltransform.c:
Don't crash in describe for effects. That was missing from recent
refactoring.
* src/bml/utils.c:
Improved heuristics for enum detection.
2009-06-11 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbmlv.c:
* src/bml/utils.c:
Actually use UTF-8 and not ASCII for the conversion.
2009-06-11 Stefan Kost <ensonic@users.sf.net>
* src/bml/plugin.c:
Don't store empty categories.
2009-06-11 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbmlv.c:
* src/bml/utils.c:
Fix non UTF-8 strings from describe() calls.
2009-06-08 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbml.c:
More logging and fixing a early machine feature check.
* src/bml/plugin.c:
Fix a build warning and skip non supported filenames.
* src/bml/gstbmlv.c:
* src/bml/utils.c:
More logging.
2009-06-07 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbml.c:
* src/bml/plugin.c:
* src/bml/utils.c:
Use new plugin API for cache data, if available. Remove intermediate
printfs and make BUILD_STRUCTURE code path default.
2009-06-05 Stefan Kost <ensonic@users.sf.net>
* src/bml/plugin.c:
Unblacklist one more.
2009-06-04 Stefan Kost <ensonic@users.sf.net>
* src/bml/plugin.c:
No need to create an instance here anymore.
2009-06-04 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbml.c:
* src/bml/gstbml.h:
* src/bml/gstbmlsrc.c:
* src/bml/gstbmltransform.c:
* src/bml/gstbmlv.c:
* src/bml/gstbmlv.h:
* src/bml/plugin.c:
* src/bml/utils.c:
* src/bml/utils.h:
Rewrite to use new bml api. Yet untested.
2009-06-02 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbml.c:
* src/bml/utils.c:
Also cache category. Now we can do the registry api and enable this.
2009-06-01 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbml.c:
* src/bml/gstbmlv.c:
* src/bml/utils.c:
Now that all initialization is properly ordered, remove zero index hack.
2009-06-01 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbml.c:
* src/bml/gstbmlv.c:
* src/bml/plugin.c:
* src/bml/utils.c:
Get rid of global voice_type var. This was enforcing that we need to
create all types initialy.
2009-05-28 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbml.c:
* src/bml/gstbmlsrc.c:
* src/bml/gstbmlsrc.h:
* src/bml/gstbmltransform.c:
* src/bml/gstbmltransform.h:
* src/bml/gstbmlv.c:
* src/bml/gstbmlv.h:
* src/bml/plugin.c:
* src/bml/utils.c:
* src/bml/utils.h:
Remove base_init for voice types. Refactor the _get_type funaction to
reuse existing data. More (hidden) feactoring for new registry feature.
2009-05-26 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbml.c:
* src/bml/plugin.c:
Don't build typename for monophonic machines. Start big refactoring to
support adding wrapped plugin data to registry.
2009-05-24 Stefan Kost <ensonic@users.sf.net>
* src/bml/plugin.c:
Planning for better plugin detail caching.
2009-05-14 Stefan Kost <ensonic@users.sf.net>
* src/bml/utils.c:
Don't call bm_init() when the tempo changes. This resets parameters and
voices. We might need more fine-grained api here.
2009-05-10 Stefan Kost <ensonic@users.sf.net>
* autogen.sh:
aclocal gather all the necessary macros. And libtoolize installs m4 files.
They must be present before running aclocal. Without this patch, autoconf
complains about unknown libtool macros (using 2.2.6a-4 on Debian).
2009-04-30 Stefan Kost <ensonic@users.sf.net>
* NEWS:
Prepare for pre-releasing.
* src/bml/gstbml.c:
* src/bml/plugin.c:
* src/bml/utils.c:
Look for data files in data dirs too.
2009-04-29 Stefan Kost <ensonic@users.sf.net>
* src/bml/gstbmlsrc.c:
* src/bml/gstbmltransform.c:
* src/bml/gstbmlv.c:
* src/bml/utils.c:
Fix format string warnings, by removing some obsolete log.
2009-04-22 Stefan Kost <ensonic@users.sf.net>
* libgstbuzztrax/toneconversion.c:
* src/bml/common.c:
Clang checker fixes.
2009-04-20 Stefan Kost <ensonic@users.sf.net>
* src/fluidsynth/gstfluidsynth.c:
Fix copy'n'paste error in var-name, that broke the build.
2009-04-17 Stefan Kost <ensonic@users.sf.net>
* src/bml/common.c: