forked from xbmc/xbmc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
19315 lines (10920 loc) · 413 KB
/
Copy pathChangeLog
File metadata and controls
19315 lines (10920 loc) · 413 KB
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
ChangeLog for LAME
-==================-
- All dates/times are in GMT.
- This file contains the complete changelog, even commit logs of
non official branches. An entry of the form "filename (branchname):"
may not apply to the source you get with this package.
- Generated from cvs log entries
(cvs2cl --gmt -S --branches --no-wrap --header ChangeLog.header)
--
2010-03-22 20:28 robert
* doc/html/history.html (lame3_98):
updating latest changes
2010-03-22 20:25 robert
* configure, configure.in (lame3_98):
Update version number in preparation for release.
2010-03-22 20:19 robert
* doc/html/history.html (lame3_98):
updating latest changes
2010-03-22 20:08 robert
* dshow/: Mpegac.cpp, Mpegac.h, Property.rc, README (lame3_98):
Joseph Flynn's direct show improvements
2010-03-22 14:43 robert
* mpglib/README (lame3_98):
update licence information/header in decoder files
2010-03-22 14:30 robert
* mpglib/common.c (lame3_98):
update licence information/header in decoder files
2010-03-22 14:17 robert
* mpglib/AUTHORS, mpglib/Makefile.am, mpglib/Makefile.in,
mpglib/common.c, mpglib/common.h, mpglib/dct64_i386.c,
mpglib/dct64_i386.h, mpglib/decode_i386.c, mpglib/decode_i386.h,
mpglib/huffman.h, mpglib/interface.c, mpglib/interface.h,
mpglib/l2tables.h, mpglib/layer1.c, mpglib/layer1.h,
mpglib/layer2.c, mpglib/layer2.h, mpglib/layer3.c,
mpglib/layer3.h, mpglib/mpg123.h, mpglib/mpglib.h,
mpglib/tabinit.c, mpglib/tabinit.h, LICENSE (lame3_98):
update licence information/header in decoder files
2010-03-22 11:49 robert
* vc_solution/vc9_mpglib.vcproj (lame3_98):
adding header file to project
2010-03-21 12:34 robert
* libmp3lame/version.h (lame3_98):
Update version number in preparation for release.
2010-03-21 12:28 robert
* debian/: Makefile.am, Makefile.in (lame3_98):
Bug fix for tracker item ID: 2964898: Missing debian/compat
2010-03-21 12:15 robert
* libmp3lame/util.c (lame3_98):
Bug fix for tracker item ID 2963080: Missing #ifdef/#endif in util.c ?
2010-03-21 12:11 robert
* libmp3lame/reservoir.c (lame3_98):
Bug fix for tracker item ID: 2973877: A problem regarding the new drain code
2010-02-27 03:57 robert
* dshow/: dshow.dsp, dshow.dsw (lame3_98):
Fixing line ending problem in VC project files, when checked out via make dist.
2010-02-27 02:58 robert
* ChangeLog (lame3_98):
updating Changelog
2010-02-27 02:51 robert
* doc/html/history.html (lame3_98):
updating history text
2010-02-26 23:23 robert
* Dll/: Example_vc6.dsp, LameDll_vc6.dsp (lame3_98):
Bug fix for tracker ID: 2688413
lib name problem in VS6
2010-02-26 22:59 robert
* dshow/dshow.dsw (lame3_98):
seems dshow workspace got messed up some time ago
2010-02-26 22:33 robert
* Makefile.am, Makefile.in (lame3_98):
add some missing files used by "make dist" to the configure magic
2010-02-26 22:24 robert
* libmp3lame/: Makefile.in, Makefile.am (lame3_98):
add some missing files used by "make dist" to the configure magic
2010-02-26 03:40 robert
* include/Makefile.am, include/Makefile.in, libmp3lame/Makefile.am,
libmp3lame/Makefile.in, libmp3lame/lame.rc (lame3_98):
adding some files missing after "make dist"
2010-02-26 03:04 robert
* Makefile.in (lame3_98):
adding vc_solution path to configure magic
2010-02-26 02:49 robert
* configure, mpglib/Makefile.in (lame3_98):
adding vc_solution path to configure magic
2010-02-26 01:59 robert
* Makefile.am, configure.in (lame3_98):
adding vc_solution dir, used for "make dist"
2010-02-26 01:56 robert
* vc_solution/: Makefile.am, Makefile.in (lame3_98):
initial check in, used by "make dist"
2010-02-26 00:55 robert
* libmp3lame/i386/Makefile.am (lame3_98):
Tracker item ID: 2807676:
Error when building Lame with NASM support
Patch reported by Bernhard Doebler.
2010-02-25 23:33 robert
* testcase.mp3 (lame3_98):
updating testcase for 3.98.3
2010-02-24 08:54 rbrito
* debian/: changelog, control, copyright, rules (lame3_98):
Update the debian packaging for the new release.
2010-02-20 21:08 robert
* libmp3lame/lame.c (lame3_98):
Bug fix for tracker ID: 2824296
wrong enc_padding value in LAME 3.99a & 3.98.3 (from CVS)
2010-02-20 21:01 robert
* libmp3lame/VbrTag.c (lame3_98):
Bug fix for tracker ID: 2872590
LameTAG: "Music length" missmatch in Lame3.98
2010-02-19 00:44 robert
* libmp3lame/id3tag.c (lame3_98):
Bug fix for tracker ID: 2887359
Wrong length in ID3v2 tag when num_samples isn't set
2010-02-19 00:30 robert
* Dll/BladeMP3EncDLL.c (lame3_98):
Bug fix for tracker ID: 2893101
Access Violation in BladeMP3EncDLL if UNICODE was defined.
2010-02-19 00:03 robert
* doc/man/lame.1 (lame3_98):
Bug fix for tracker ID: 2928684
Error in man page about "fast insane"
2010-02-18 22:42 robert
* libmp3lame/reservoir.c (lame3_98):
Revisiting the FhG decoder problem (FhG V1.5 build 50, ships with MS Windows):
enabling the new drain code seems to solve that issue better, than restricting the buffer size.
2009-12-11 22:44 robert
* frontend/parse.c (lame3_98):
Tracker ID: 2891879
Because of Windows API change, there was a problem with prority switch. Should work again.
2009-03-31 22:37 robert
* libmp3lame/: util.c, util.h (lame3_98):
fix for tracker item 2723518: resampling in 3.98 and 3.99alpha
2009-03-30 19:48 robert
* libmp3lame/lame.c (lame3_98):
ensure we padd at least 288 samples
2009-03-29 14:43 robert
* libmp3lame/lame.c (lame3_98):
workaround for FFMPEG bug, which uses to call lame_encode_flush more than once in loop
2009-03-28 22:09 robert
* libmp3lame/lame.c (lame3_98):
avoid extra frame at end
2009-02-07 11:18 robert
* Dll/Makefile.mingw32 (lame3_98):
applying patch from item tracker: [ 2406420 ] compile lame_enc.dll under cygwin
2009-01-18 15:44 robert
* libmp3lame/bitstream.c, libmp3lame/lame.c, libmp3lame/psymodel.c,
frontend/get_audio.c, frontend/gtkanal.c, frontend/lametime.c,
frontend/main.c, include/lame.h, libmp3lame/quantize_pvt.c,
libmp3lame/vector/xmm_quantize_sub.c, mpglib/interface.c,
mpglib/mpglib.h (lame3_98):
replacing C++ style comments by C style comments
2009-01-18 13:59 robert
* doc/: html/switchs.html, man/lame.1 (lame3_98):
fix for bug tracker item [ 2051870 ] documentation clarifications
2009-01-18 13:10 robert
* doc/man/lame.1 (lame3_98):
fix for bug tracker item 2423650
2008-11-09 14:14 robert
* vc_solution/Makefile.in (lame3_98):
file Makefile.in was added on branch lame3_98 on 2010-02-26 01:56:52 +0000
2008-11-09 14:13 aleidinger
* vc_solution/Makefile.in:
regen
2008-11-09 14:06 robert
* vc_solution/Makefile.am (lame3_98):
file Makefile.am was added on branch lame3_98 on 2010-02-26 01:56:52 +0000
2008-11-09 14:06 aleidinger
* vc_solution/Makefile.am:
Add missing automake Makefile.
2008-11-01 20:41 robert
* ACM/ACM.cpp, ACM/ACMStream.cpp, ACM/AEncodeProperties.cpp,
ACM/lameACM.def, dshow/Mpegac.cpp, dshow/aboutprp.cpp,
vc_solution/vc9_lame_acm.vcproj,
vc_solution/vc9_lame_acm_adbg.vcproj,
vc_solution/vc9_lame_acm_tinyxml.vcproj,
vc_solution/vc9_lame_config.vsprops,
vc_solution/vc9_lame_dll.vcproj,
vc_solution/vc9_lame_dll_example.vcproj,
vc_solution/vc9_lame_dshow.vcproj,
vc_solution/vc9_lame_lame.vcproj,
vc_solution/vc9_lame_mp3x.vcproj,
vc_solution/vc9_libmp3lame.vcproj,
vc_solution/vc9_libmp3lame_dll.vcproj,
vc_solution/vc9_mpglib.vcproj (lame3_98):
moving common VS projects settings into own property page
2008-11-01 13:32 robert
* dshow/Mpegac.cpp, dshow/REG.CPP, dshow/REG.H,
vc_solution/vc9_lame_acm.vcproj,
vc_solution/vc9_lame_acm_adbg.vcproj,
vc_solution/vc9_lame_acm_tinyxml.vcproj,
vc_solution/vc9_lame_dll.vcproj,
vc_solution/vc9_lame_dll_example.vcproj,
vc_solution/vc9_lame_dshow.vcproj (lame3_98):
- VC6 upgrade property pages removed, not needed
- Name clash with our CRegKey class and ATL::CRegKey class solved by putting ours in namespace Lame.
2008-10-23 23:35 robert
* mpglib/: README, TODO, common.c, common.h, dct64_i386.c,
dct64_i386.h, decode_i386.c, decode_i386.h, huffman.h,
interface.c, interface.h, l2tables.h, layer1.c, layer1.h,
layer2.c, layer2.h, layer3.c, layer3.h, mpg123.h, mpglib.h,
tabinit.c, tabinit.h (lame3_98):
exchanging mpglib by libhip from main-branch
2008-10-21 22:06 robert
* include/lame.h (lame3_98):
fix small issues with C99
2008-10-12 19:46 robert
* libmp3lame/version.h (lame3_98):
Adding resources to EXE and DLL
2008-10-12 19:33 robert
* libmp3lame/lame.rc, libmp3lame/logoe.ico, libmp3lame/version.c,
libmp3lame/version.h, vc_solution/vc9_lame_lame.vcproj,
vc_solution/vc9_libmp3lame_dll.vcproj (lame3_98):
Adding resources to EXE and DLL
2008-10-11 19:12 robert
* ChangeLog (lame3_98):
updating Changelog
2008-10-11 19:08 robert
* frontend/gtkanal.c, libmp3lame/mpglib_interface.c,
libmp3lame/util.h (lame3_98):
fixing mp3x build
2008-10-11 18:04 robert
* doc/html/history.html, frontend/get_audio.c, frontend/gtkanal.c,
frontend/parse.c, libmp3lame/bitstream.c, libmp3lame/id3tag.c,
libmp3lame/lame.c, libmp3lame/mpglib_interface.c,
libmp3lame/util.c, libmp3lame/util.h, mpglib/.cvsignore,
mpglib/common.c, mpglib/interface.c, mpglib/layer3.c,
mpglib/mpg123.h, mpglib/mpglib.h, include/lame.def,
include/lame.h, vc_solution/vc9_libmp3lame.vcproj,
vc_solution/vc9_libmp3lame_dll.vcproj (lame3_98):
Library API change: lame_decode functions are now obsolete but still present, please use hip_decode instead.
The reason for this change is: lame_decode functions use a single global variable within the library to store decoder setup, hip_decode functions don't.
The encoder now uses hip_decode internally and it is now possible to use clipdetect feature while reencoding mp3 to mp3.
2008-10-07 20:24 robert
* doc/html/history.html, frontend/parse.c, libmp3lame/version.h
(lame3_98):
- let ignore-tag-errors effect albumart option too
- updating history
2008-09-22 20:21 robert
* libmp3lame/: takehiro.c, version.h (lame3_98):
source merging resultet in bug: loop var was incremented twice
now fixed
2008-09-21 15:53 robert
* testcase.mp3 (lame3_98):
updating testcase.mp3 to current version
2008-09-21 15:51 robert
* ChangeLog (lame3_98):
updating Changelog of branch lame3_98
2008-09-19 07:30 rbrito
* debian/: changelog, control, rules (lame3_98):
Various improvements to the packaging. Thanks to Fabian.
2008-09-19 07:08 rbrito
* doc/man/lame.1 (lame3_98):
Remove warnings from nroff while processing the manpage.
2008-09-14 11:51 robert
* doc/html/history.html, doc/html/id3.html, doc/man/lame.1,
frontend/parse.c, include/lame.def, include/lame.h,
libmp3lame/id3tag.c, libmp3lame/id3tag.h, USAGE (lame3_98):
Fixing some ID3 tagging issues:
- some sloppier search for genre names
- new switch --pad-id3v2-size <n> which allows some user defined padding
2008-09-13 21:44 robert
* doc/html/id3.html, libmp3lame/id3tag.c (lame3_98):
fixing typo
2008-08-31 19:35 robert
* libmp3lame/i386/nasm.h (lame3_98):
fixing the fix to get it assemble for ELF again
2008-08-31 12:26 robert
* libmp3lame/i386/: choose_table.nas, fft3dn.nas, fftsse.nas,
nasm.h (lame3_98):
fixing none PIC assembling problem
2008-08-25 12:57 rbrito
* debian/changelog, libmp3lame/i386/choose_table.nas,
libmp3lame/i386/fft3dn.nas, libmp3lame/i386/fftsse.nas
(lame3_98):
Fix text relocations and update debian changelog.
Thanks to the PaX Team and Gentoo people.
2008-08-25 12:43 rbrito
* libmp3lame/i386/nasm.h (lame3_98):
Fix to executable stack (thanks to Gentoo people)
2008-08-25 12:38 rbrito
* libmp3lame/i386/Makefile.am (lame3_98):
Fixes building of asm with libtool 2.2 (thanks to Gentoo people)
2008-08-16 12:48 robert
* doc/man/lame.1 (lame3_98):
adding MPEG-2.5 bitrate table
2008-08-11 20:55 robert
* libmp3lame/takehiro.c (lame3_98):
loop rewritten; result of discussion with Michael Stoner
2008-08-06 17:12 robert
* frontend/parse.c (lame3_98):
add proper file closing
2008-08-06 17:06 robert
* doc/html/history.html, frontend/parse.c (lame3_98):
fix for tracker item [ 2039648 ] potential memory leak in parse_args() function in parse.c
2008-08-06 15:57 robert
* USAGE (lame3_98):
removing some obsolete switches
2008-08-06 15:52 robert
* doc/man/lame.1 (lame3_98):
removing some obsolete switches
2008-08-06 15:35 robert
* frontend/parse.c (lame3_98):
removing some obsolete switches
2008-08-06 15:24 robert
* doc/html/switchs.html (lame3_98):
removing internal switches
2008-08-06 11:55 robert
* libmp3lame/presets.c (lame3_98):
keeping "sfb21mod" as in 3.98 release
2008-08-05 17:26 robert
* doc/html/history.html, frontend/parse.c, libmp3lame/lame.c
(lame3_98):
bug fix for tracker item [ 2029282 ] Frequency filtering API broken in 3.98
2008-08-05 14:16 robert
* HACKING, Makefile.unix, configure.in, debian/changelog,
debian/rules, doc/html/history.html, doc/man/lame.1,
frontend/mp3rtp.c, frontend/rtp.c, libmp3lame/VbrTag.c,
libmp3lame/bitstream.c, libmp3lame/encoder.c,
libmp3lame/gain_analysis.c, libmp3lame/id3tag.c,
libmp3lame/lame.c, libmp3lame/presets.c, libmp3lame/psymodel.c,
libmp3lame/quantize.c, libmp3lame/quantize_pvt.c,
libmp3lame/quantize_pvt.h, libmp3lame/util.c,
libmp3lame/vbrquantize.c, libmp3lame/version.h, misc/abx.c
(lame3_98):
bug fixes from main branch
2008-07-03 22:04 robert
* libmp3lame/version.h (lame3_98):
preparing release
2008-06-30 23:31 robert
* configMS.h, dshow/Property.rc, dshow/aboutprp.cpp:
updating LAME version property
2008-06-29 21:40 rbrito
* configure, configure.in, debian/changelog:
New updated options for compiling with expopt (to be cleaned up latter).
Fixes to the Debian packaging for the pending release.
2008-06-29 03:25 rbrito
* doc/html/history.html:
Fixed my name on an older entry of the history.
2008-06-28 22:36 robert
* doc/html/: Makefile.am, Makefile.in:
removing presets.html, it is not in repository anymore
2008-06-27 20:47 robert
* Makefile.unix, testcase.mp3:
updating testcase for 3.98 stable release
2008-06-26 21:26 robert
* vc_solution/: vc9_lame.sln, vc9_lame_acm.vcproj,
vc9_lame_acm_adbg.vcproj, vc9_lame_acm_tinyxml.vcproj,
vc9_lame_dll.vcproj, vc9_lame_dll_example.vcproj,
vc9_lame_dshow.vcproj, vc9_lame_lame.vcproj,
vc9_lame_mp3x.vcproj, vc9_libmp3lame.vcproj,
vc9_libmp3lame_dll.vcproj, vc9_mpglib.vcproj:
removing blanks from configuration and project names (because of NASM rule)
2008-06-26 10:26 bouvigne
* doc/html/index.html, doc/man/lame.1, frontend/parse.c:
simplified --preset docs
2008-06-26 10:09 bouvigne
* doc/html/: history.html, index.html:
updated the html docs for 3.98
2008-06-26 08:57 bouvigne
* libmp3lame/psymodel.c:
revert my calc_energy changes
2008-06-25 21:59 robert
* mpglib/: layer2.c, layer3.c, mpg123.h:
cosmetic changes, some more compiler (gcc) warnings eliminated
2008-06-25 12:45 aleidinger
* ChangeLog:
recent changes
2008-06-25 12:43 aleidinger
* doc/html/history.html:
a little bit of history
2008-06-25 12:40 aleidinger
* configure:
regen
2008-06-25 12:37 aleidinger
* configure.in:
fix --diable-cpml switch
2008-06-25 12:17 aleidinger
* mpglib/Makefile.in, Makefile.in, ACM/Makefile.in,
ACM/ADbg/Makefile.in, ACM/ddk/Makefile.in,
ACM/tinyxml/Makefile.in, Dll/Makefile.in, debian/Makefile.in,
doc/Makefile.in, doc/html/Makefile.in, doc/man/Makefile.in,
dshow/Makefile.in, frontend/Makefile.in, include/Makefile.in,
libmp3lame/Makefile.in, libmp3lame/i386/Makefile.in,
libmp3lame/vector/Makefile.in, mac/Makefile.in,
macosx/Makefile.in, macosx/English.lproj/Makefile.in,
macosx/LAME.xcodeproj/Makefile.in, misc/Makefile.in:
regen (math lib change)
2008-06-25 12:13 aleidinger
* configure.in:
export the math lib, allow to disable the use of the alpha optimized math lib
2008-06-25 12:12 aleidinger
* libmp3lame/Makefile.am:
add the math lib explicitely to the build of the lib
2008-06-25 08:20 robert
* frontend/parse.c, mpglib/decode_i386.c, mpglib/interface.c,
mpglib/interface.h, mpglib/layer1.c, mpglib/layer2.c,
mpglib/mpglib.h:
Some cosmetic changes, now the vc9 compiles the workspace vc9_lame without any warning
2008-06-24 19:07 rbrito
* doc/html/history.html:
Add some modifications of mine to the history
2008-06-24 18:39 rbrito
* debian/: changelog, control, rules:
Updates to the Debian packaging.
2008-06-24 17:06 rbrito
* misc/abx.c:
Quick and dirty fix for some memory leak (detected via Valgrind).
2008-06-22 18:39 robert
* doc/html/: history.html, contributors.html:
tracker item [ lame-Patches-1990643 ] DShow direct file writer output
patch by Anton Sergunov (setosha)
2008-06-22 18:31 robert
* dshow/: Encoder.cpp, Encoder.h, Mpegac.cpp, Mpegac.h:
tracker item [ lame-Patches-1990643 ] DShow direct file writer output
patch by Anton Sergunov (setosha)
2008-06-22 18:29 robert
* vc_solution/: vc9_lame_acm.vcproj, vc9_lame_acm_adbg.vcproj,
vc9_lame_acm_tinyxml.vcproj, vc9_lame_dll_example.vcproj,
vc9_lame_dshow.vcproj:
linking against multithreaded (debug) DLL
2008-06-17 20:57 robert
* frontend/parse.c, libmp3lame/presets.c:
bug fix: preset INSANE wasn't a CBR preset anymore, but preset help said it should be
2008-06-10 19:24 rbrito
* misc/abx.c:
Fixes for consistency (lack of PATH on some commands)
2008-06-10 19:14 rbrito
* misc/abx.c:
Removing spurious whitespaces at the end of lines.
2008-06-10 16:10 rbrito
* misc/abx.c:
Corrected the abx.c file to work on Linux x86-64 (it should work on ia32 too).
I think that I can remove latter the commented lines. They were prejudicial
to playing the file on Linux (i.e., a 1min file was played in less than 5s,
which is not exactly something that useful for doing an abx test).
2008-05-24 08:40 aleidinger
* ChangeLog:
Add nearly a year of history.
2008-05-24 08:37 aleidinger
* Makefile.in, configure:
regen
2008-05-24 08:31 aleidinger
* macosx/: Makefile.in, English.lproj/Makefile.in,
LAME.xcodeproj/Makefile.in:
regen
2008-05-24 08:28 aleidinger
* configure.in, macosx/Makefile.am,
macosx/English.lproj/Makefile.am,
macosx/LAME.xcodeproj/Makefile.am:
Add some more macosx stuff
2008-05-22 17:32 audiofileeng
* macosx/: English.lproj/InfoPlist.strings,
LAME.xcodeproj/project.pbxproj:
adding files in subdirectories in macosx
2008-05-22 06:26 aleidinger
* Makefile.am, configure.in, macosx/Makefile.am:
add the new macosx directory
2008-05-21 03:05 audiofileeng
* macosx/: Info.plist, LAME_Prefix.pch:
added XCode framework project for Mac OS X
2008-05-19 07:41 bouvigne
* libmp3lame/: psymodel.c, util.h:
faster calc_energy: don't loop if there is a single line within the band
2008-05-18 17:49 bouvigne
* libmp3lame/psymodel.c:
faster calc_energy: dont' loop if there is a single line within the band
2008-05-14 07:43 rbrito
* debian/watch:
New file for detecting new versions of the package.
2008-05-14 07:42 rbrito
* debian/: changelog, control, copyright, lame.docs,
libmp3lame0-dev.docs, libmp3lame0-dev.files, rules:
Updates to the Debian packaging.
2008-04-28 20:32 robert
* frontend/get_audio.c:
fixing LIBSNDFILE compile problem found by Rogério Brito
2008-04-23 01:50 robert
* frontend/main.c, frontend/parse.h, libmp3lame/lame.c,
libmp3lame/lame_global_flags.h, libmp3lame/machine.h,
libmp3lame/psymodel.c:
fix for bug-tracker item:[ 1948101 ] Memory not freed (lame-3.97, lame-3.98b8)
plus, we didn't call lame_close in decode-only case
2008-04-22 23:01 robert
* libmp3lame/machine.h, libmp3lame/newmdct.c,
libmp3lame/quantize.c, libmp3lame/quantize_pvt.c,
mpglib/interface.c, mpglib/layer1.c:
fixing a problem if you are using --fast-math compiler switch
2008-04-13 22:03 robert
* doc/html/history.html, libmp3lame/version.h:
updating history, we are now at 3.98 beta 8
2008-04-13 21:27 robert
* frontend/get_audio.c, frontend/main.h, frontend/parse.c,
libmp3lame/psymodel.c:
found some problem in Naoki's additive masking code and fixed it for VBR_NEW
2008-04-13 13:45 robert
* testcase.mp3, frontend/get_audio.c:
changed compile-time test for machine byte order into run-time test,
this should solve issues PPC users seem to have
2008-04-13 02:52 robert
* libmp3lame/psymodel.c:
some SNR testcode to try with -Z3
2008-04-12 18:18 robert
* frontend/parse.c, frontend/timestatus.c, include/lame.def,
include/lame.h, libmp3lame/VbrTag.c, libmp3lame/bitstream.c,
libmp3lame/encoder.c, libmp3lame/fft.c,
libmp3lame/gain_analysis.c, libmp3lame/id3tag.c,
libmp3lame/lame.c, libmp3lame/lame_global_flags.h,
libmp3lame/mpglib_interface.c, libmp3lame/newmdct.c,
libmp3lame/presets.c, libmp3lame/psymodel.c,
libmp3lame/quantize.c, libmp3lame/quantize_pvt.c,
libmp3lame/reservoir.c, libmp3lame/set_get.c,
libmp3lame/tables.c, libmp3lame/takehiro.c, libmp3lame/util.c,
libmp3lame/vbrquantize.c:
extended VBR quality scale: 0, ..., 9.999 as floating point value
2008-04-06 15:07 robert
* doc/html/history.html, frontend/main.c:
updating history.html
2008-04-06 02:38 robert
* libmp3lame/lame_global_flags.h, libmp3lame/presets.c,
libmp3lame/psymodel.c, libmp3lame/set_get.c,
libmp3lame/version.h, mpglib/layer3.c:
some simpler spreading function for VBR NEW
2008-04-05 17:38 robert
* Makefile.unix, frontend/brhist.c, frontend/brhist.h,
frontend/main.c, frontend/parse.c, frontend/timestatus.c:
removing "#ifdef/#endif" from code bocks, which were always compiled in
2008-04-05 17:13 robert
* lame.spec.in, debian/copyright, libmp3lame/id3tag.c, misc/abx.c,
misc/lameGUI.html:
changing some links from "www.mp3dev.org/mp3" to "www.mp3dev.org"
and from "www.sulaco.org/mp3" to "www.mp3dev.org"
2008-03-20 22:28 robert
* include/lame.h:
keep 'lame_mp3_tags_fid' alive at least for next stable release
2008-03-12 11:23 robert
* libmp3lame/psymodel.c, vc_solution/vc9_libmp3lame.vcproj,
vc_solution/vc9_libmp3lame_dll.vcproj,
vc_solution/vc9_mpglib.vcproj:
bug fix: stack corruption in vbrpsy_compute_masking_s
2008-03-11 21:57 robert
* libmp3lame/: set_get.c, vbrquantize.c:
fixing some more compiler warnings
2008-03-11 21:17 robert
* libmp3lame/VbrTag.c, libmp3lame/fft.c, libmp3lame/id3tag.c,
libmp3lame/lame.c, libmp3lame/mpglib_interface.c,
libmp3lame/quantize.c, libmp3lame/takehiro.c, libmp3lame/util.c,
libmp3lame/vbrquantize.c, vc_solution/vc9_libmp3lame.vcproj,
vc_solution/vc9_libmp3lame_dll.vcproj:
fixing some more compiler warnings
2008-03-11 00:56 robert
* libmp3lame/set_get.c:
fixing some more compiler warnings
2008-03-11 00:21 robert
* vc_solution/vc9_libmp3lame.vcproj:
update for nasm file config
2008-03-10 23:47 robert
* libmp3lame/: bitstream.c, encoder.c, gain_analysis.c, id3tag.c,
lame.c, machine.h, mpglib_interface.c, newmdct.c, psymodel.c,
quantize.c, quantize.h, quantize_pvt.c, quantize_pvt.h,
set_get.c, util.h, vbrquantize.c, vbrquantize.h:
fixing some compiler warnings
2008-03-09 22:37 robert
* frontend/parse.c:
for now, keep old ID3 tag switches passing raw character encoded strings
some experimental switches for Linux systems:
(ID3v1/ID3v2)
--lTtitle <some song title to be stored as Latin-1 string>
--lArtist <some artist to be stored as Latin-1 string>
--lAlbum <some album title to be stored as Latin-1 string>
--lGenre <some genre to be stored as Latin-1 string>
--lComment <some comment to be stored as Latin-1 string>
--lFieldvalue <some fieldvalue to be stored as Latin-1 string>
(ID3v2)
--uTitle <some song title to be store as UCS-2 string>