-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
25209 lines (17052 loc) · 627 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
ChangeLog for LAME
-==================-
- All dates/times are in GMT.
- Generated from svn log entries (svn2cl)
--
2021-03-09 10:52 aleidinger
* ACM/ADbg/Makefile.in, ACM/Makefile.in, ACM/ddk/Makefile.in,
ACM/tinyxml/Makefile.in, Dll/Makefile.in, 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/English.lproj/Makefile.in,
macosx/LAME.xcodeproj/Makefile.in, macosx/Makefile.in,
misc/Makefile.in, mpglib/Makefile.in, vc_solution/Makefile.in:
regen
2021-03-09 10:52 aleidinger
* configure:
regen
2021-03-09 10:52 aleidinger
* aclocal.m4:
regen
2021-03-09 10:35 aleidinger
* configure.in:
- Remove cases which matches all previous cases, this was not
intended.
- In the clang case, do the same as for gcc, if someone provied
CFLAGS on his own,
do not add flags on our own.
2020-08-25 10:24 aleidinger
* vc_solution/README.vs2019.txt, vc_solution/vs2019_lame.sln,
vc_solution/vs2019_lame_config.props,
vc_solution/vs2019_lame_lame.vcxproj,
vc_solution/vs2019_libmp3lame.vcxproj,
vc_solution/vs2019_libmp3lame_dll.vcxproj,
vc_solution/vs2019_libmpg123_config.props,
vc_solution/vs2019_libsndfile_config.props:
Add 64-bit support.
Submitted by: Michael Fink via [patches:#94]
2020-08-25 10:18 aleidinger
* include/lame.def, include/libmp3lame.sym:
Add hip_decode_init_gapless() to the linker exports.
Submitted by: Michael Fink via [patches:#92]
2020-08-25 10:14 aleidinger
* frontend/get_audio.c:
Fix the "Could not close audio input file" message when decoding
from mp3
or transcoding. The message only occurred on Win32 builds of
lame.exe.
Submitted by: Michael Fink via [patches:#93]
2020-08-19 14:06 aleidinger
* ACM/acm.rc, Dll/BladeMP3EncDLL.c, LICENSE, Makefile.MSVC,
debian/copyright, doc/man/lame.1, dshow/Property.rc,
libmp3lame/id3tag.c, misc/abx.c:
Fix the homepage of LAME. The old www.mp3dev.org is pointing to
the
sourceforge page.
2020-08-19 13:13 aleidinger
* libmp3lame/i386/nasm.h:
Fix nasm include file (UTF-8 BOM which nasm does't know about).
Submitted by: KO Myung-Hun via [patches:#81]
2020-08-19 12:56 aleidinger
* vc_solution/Makefile.am, vc_solution/Makefile.in,
vc_solution/README.vs2019.txt, vc_solution/arch_nasm.vsprops,
vc_solution/arch_sse2.vsprops, vc_solution/arch_x87.vsprops,
vc_solution/vc9_lame.sln, vc_solution/vc9_lame_acm.vcproj,
vc_solution/vc9_lame_acm_adbg.vcproj,
vc_solution/vc9_lame_acm_tinyxml.vcproj,
vc_solution/vc9_lame_clients.sln,
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_mp3rtp.vcproj,
vc_solution/vc9_lame_mp3x.vcproj,
vc_solution/vc9_lame_test.vcproj,
vc_solution/vc9_libmp3lame.vcproj,
vc_solution/vc9_libmp3lame_dll.vcproj,
vc_solution/vc9_mpglib.vcproj, vc_solution/vc9_nasm.rules,
vc_solution/vs2019_arch_nasm.props,
vc_solution/vs2019_arch_sse2.props,
vc_solution/vs2019_arch_x87.props,
vc_solution/vs2019_gtk_config.props, vc_solution/vs2019_lame.sln,
vc_solution/vs2019_lame_acm.vcxproj,
vc_solution/vs2019_lame_acm.vcxproj.filters,
vc_solution/vs2019_lame_acm_adbg.vcxproj,
vc_solution/vs2019_lame_acm_adbg.vcxproj.filters,
vc_solution/vs2019_lame_acm_tinyxml.vcxproj,
vc_solution/vs2019_lame_clients.sln,
vc_solution/vs2019_lame_config.props,
vc_solution/vs2019_lame_dshow.vcxproj,
vc_solution/vs2019_lame_dshow.vcxproj.filters,
vc_solution/vs2019_lame_enc_dll.vcxproj,
vc_solution/vs2019_lame_enc_dll.vcxproj.filters,
vc_solution/vs2019_lame_lame.vcxproj,
vc_solution/vs2019_lame_lame.vcxproj.filters,
vc_solution/vs2019_lame_mp3rtp.vcxproj,
vc_solution/vs2019_lame_mp3rtp.vcxproj.filters,
vc_solution/vs2019_lame_mp3x.vcxproj,
vc_solution/vs2019_lame_mp3x.vcxproj.filters,
vc_solution/vs2019_lame_test.vcxproj,
vc_solution/vs2019_libmp3lame.vcxproj,
vc_solution/vs2019_libmp3lame.vcxproj.filters,
vc_solution/vs2019_libmp3lame_dll.vcxproj,
vc_solution/vs2019_libmpg123_config.props,
vc_solution/vs2019_libsndfile_config.props,
vc_solution/vs2019_nasm.props, vc_solution/vs2019_nasm.targets,
vc_solution/vs2019_nasm.xml,
vc_solution/vs2019_win71sdk_config.props:
- add files to build LAME with Visual Studio 2019
- remove the old project files for VC 9
- add a readme with a description about what you can do with the
files
Submitted by: Michael Fink via [patches:#91]
2020-08-19 12:45 aleidinger
* frontend/get_audio.c:
On Win32 compiles it can happen that lame.exe and libmp3lame.dll
use
different C++ runtimes, which maintail different FILE* lists, and
fileno() would produce invalid file numbers for those msvcrt
instances.
So use mpg123_replace_reader_handle() / mpg123_open_handle() here
instead of mpg123_open_fd().
Submitted by: Michael Fink via [patches:#90]
2020-08-19 12:36 aleidinger
* libmp3lame/version.h:
Change the URL of the LAME webpage to the canonical https
location.
Submitted by: Michael Fink via [patches:#89]
2020-08-19 12:29 aleidinger
* ACM/ACM.cpp:
An obsolete method TranslateURL() is called which is not strictly
necessary.
The patch is in the ACM module, which is the ancient Windows
"Audio Codec
Manager". Applying this patch is necessary before applying the
Visual Studio
2019 project files patch.
Submitted by: Michael Fink via [patches:#88]
2020-07-11 10:24 aleidinger
* ACM/ADbg/Makefile.in, ACM/Makefile.in, ACM/ddk/Makefile.in,
ACM/tinyxml/Makefile.in, Dll/Makefile.in, 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/English.lproj/Makefile.in,
macosx/LAME.xcodeproj/Makefile.in, macosx/Makefile.in,
misc/Makefile.in, mpglib/Makefile.in, vc_solution/Makefile.in:
Replace mpeg decoder with external libmpg123 - step 1/2 part 3/3
Step 1 is to allow to use external libmp123 (preferred) or
interal mpglib to decode mpeg audio.
Patch by Thomas Orgis <thomas-forum@orgis.org>, with some
minor modifications to the autotools build by me.
Part 3: Regenerate automake stuff.
Step 2 would be to remove the internal mpglib.
2020-07-11 10:23 aleidinger
* config.h.in, configure:
Replace mpeg decoder with external libmpg123 - step 1/2 part 2/3
Step 1 is to allow to use external libmp123 (preferred) or
interal mpglib to decode mpeg audio.
Patch by Thomas Orgis <thomas-forum@orgis.org>, with some
minor modifications to the autotools build by me.
Part 2: regenerate autoconf stuff
Step 2 would be to remove the internal mpglib.
2020-07-11 10:23 aleidinger
* configure.in:
Replace mpeg decoder with external libmpg123 - step 1/2 part 1/3
Step 1 is to allow to use external libmp123 (preferred) or
interal mpglib to decode mpeg audio.
Patch by Thomas Orgis <thomas-forum@orgis.org>, with some
minor modifications to the autotools build by me.
Part 1: commit the source files and the input files for the
build.
Step 2 would be to remove the internal mpglib.
2020-07-11 10:22 aleidinger
* frontend/Makefile.am, frontend/get_audio.c, frontend/parse.c,
include/lame.h, libmp3lame/Makefile.am,
libmp3lame/mpglib_interface.c, libmp3lame/util.h,
mpglib/Makefile.am, mpglib/common.h, mpglib/mpglib.h,
mpglib/tabinit.c, mpglib/tabinit.h:
Replace mpeg decoder with external libmpg123 - step 1/2 part 1/3
Step 1 is to allow to use external libmp123 (preferred) or
interal mpglib to decode mpeg audio.
Patch by Thomas Orgis <thomas-forum@orgis.org>, with some
minor modifications to the autotools build by me.
Part 1: commit the source files and the input files for the
build.
Step 2 would be to remove the internal mpglib.
2020-05-08 16:02 aleidinger
* doc/html/history.html:
Add recent changes.
2020-05-08 15:33 aleidinger
* configure:
regen
2020-05-08 15:32 aleidinger
* configure.in:
Disable Takehiros IEEE hack by default, add an option for
not so modern CPU architectures to enable it.
While I'm here, make some whitespace fixes in user visible
parts of the --help option.
2020-05-07 07:51 aleidinger
* libmp3lame/Makefile.in:
regen
2020-05-07 07:51 aleidinger
* libmp3lame/Makefile.am, libmp3lame/VbrTag.c,
libmp3lame/VbrTagCrc.h:
Faster CRC calculation by Robert Kausch from the fre:ac project
(https://freac.org/developer-blog-mainmenu-9/14-freac/277-fastcrc).
The gain here is small, but measurable. If you encode multiple
independent streams at once and if there are not small (not just
a few minutes of play time), you may notice a difference.
2020-05-06 13:17 aleidinger
* include/libmp3lame.sym:
Remove lame_init_old from symbols file. It is made static in
lame.h and as
such is not available as a symbold for export in libmp3lame.
2020-05-06 12:31 aleidinger
* ACM/ADbg/Makefile.in, ACM/Makefile.in, ACM/ddk/Makefile.in,
ACM/tinyxml/Makefile.in, Dll/Makefile.in, Makefile.in, configure,
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/English.lproj/Makefile.in,
macosx/LAME.xcodeproj/Makefile.in, macosx/Makefile.in,
misc/Makefile.in, mpglib/Makefile.in, vc_solution/Makefile.in:
regen
2020-05-06 12:31 aleidinger
* config.h.in:
regen
2020-05-06 12:30 aleidinger
* aclocal.m4:
regen
2020-05-06 12:29 aleidinger
* compile, config.guess, config.sub, depcomp, install-sh, missing:
Update do recent autotools.
2020-05-06 12:08 aleidinger
* configure.in:
Fix case statements with character ranges. Autoconf is eating up
the single '[' and ']'. Duplicating them escapes them.
Reported as part of [bugs:#491].
While I'm here add gcc v10.* until v19.x to the gcc optimization
parts.
2020-05-06 10:06 aleidinger
* ChangeLog:
Add 2 years of changes.
2019-07-23 12:20 robert
* doc/html/history.html:
udating history
2019-07-23 09:34 robert
* ACM/ddk/msacmdrv.h:
fix for tracker item #444 msacmdrv.h (structure packing
alignment)
2019-07-23 09:18 robert
* ACM/ACM.cpp, ACM/AEncodeProperties.cpp:
fixed some uninitialzed variables
2019-07-19 13:27 robert
* libmp3lame/quantize.c:
bug fix for tracker item 501 Encoder: Assertion
`eov->bitrate_index <= cfg->vbr_max_bitrate_index' failed
When encoding a file in ABR mode, the resulting frame size could
exceed the targeted amount of bits.
This happens, when analog silence is detected and 'analog slince
bits' is larger than 'target bits'.
2019-06-28 13:05 robert
* doc/html/history.html, libmp3lame/lame.c:
bug fix for tracker item #500 Buffer overflow in encoder
2019-01-10 23:25 robert
* libmp3lame/vector/xmm_quantize_sub.c:
bug tracker item #496: A critical bug in init_xrpow_core_sse
2018-04-06 19:40 robert
* doc/html/history.html, frontend/console.c, frontend/console.h,
frontend/timestatus.c, frontend/timestatus.h:
- patch #82: Take advantage of terminal width on printing file
names
- some code refactorings
2018-04-05 23:31 robert
* ACM/tinyxml/tinyxml.cpp, ACM/tinyxml/tinyxmlparser.cpp,
Dll/Example.cpp, dshow/Encoder.cpp, dshow/Encoder.h,
dshow/Mpegac.cpp, dshow/Mpegac.h, frontend/get_audio.c,
frontend/get_audio.h, frontend/lame_main.c, frontend/main.c,
frontend/main.h, frontend/parse.c, frontend/parse.h,
frontend/rtp.c, libmp3lame/quantize.c, libmp3lame/reservoir.h,
libmp3lame/set_get.c, libmp3lame/util.c, libmp3lame/util.h,
misc/abx.c, misc/scalartest.c, test/lame_test.cpp:
fixing some issues found by the cppcheck tool
2018-03-17 10:53 robert
* configure.in, doc/html/history.html, frontend/main.c,
frontend/parse.c, libmp3lame/i386/nasm.h, libmp3lame/version.h:
patch #80 OS/2 patches, submitted by KO Myung-Hun
2018-01-23 20:05 robert
* frontend/get_audio.c:
Apple AIF format 'fl32' now possible to read, even without
libsndfile
2017-10-25 16:12 rjamorim
* doc/html/about.html, doc/html/abr.html, doc/html/cbr.html,
doc/html/contact.html, doc/html/contributors.html,
doc/html/detailed.html, doc/html/images/valid-html401.png,
doc/html/index.html, doc/html/introduction.html,
doc/html/list.html, doc/html/ms_stereo.html, doc/html/usage.html,
doc/html/vbr.html:
Comprehensive HTML formatting. Code now is much more readable
2017-10-25 16:02 rjamorim
* doc/html/links.html:
Minor fix
2017-10-25 15:59 rjamorim
* doc/html/history.html:
Fixed lots of formatting
2017-10-24 18:41 rjamorim
* doc/html/styles/lame.css:
Made the style more similar to the webpage's
2017-10-24 18:30 rjamorim
* doc/html/history.html:
Ooops. Missed one remote image in the history
2017-10-24 18:17 rjamorim
* doc/html/links.html:
Updated links information based on web site
2017-10-24 17:20 rjamorim
* doc/html/about.html, doc/html/abr.html, doc/html/cbr.html,
doc/html/contact.html, doc/html/contributors.html,
doc/html/detailed.html, doc/html/images/sflogo.gif,
doc/html/index.html, doc/html/introduction.html,
doc/html/links.html, doc/html/list.html, doc/html/ms_stereo.html,
doc/html/usage.html, doc/html/vbr.html:
Replaced remote SF logo with local one. Because we care about
privacy!
2017-10-23 19:50 robert
* configure.in, frontend/parse.c:
lame patches ticket #75: Fix for completing svn-r6410
submitted by Elio Blanca
2017-10-23 19:17 robert
* doc/man/lame.1, frontend/get_audio.c:
some changes in spelling, suggested by Fabian Greffrath
2017-10-14 15:41 robert
* frontend/parse.c:
bug tracker item #487: v3.100 breaks Windows compatibility
the change is incomplete, we need to add 'HAVE_LANGINFO' to our
autoconf magic
2017-10-14 14:17 aleidinger
* ChangeLog:
svn2cl does not include branches anymore, this is "current-branch
only" now
2017-10-14 14:14 aleidinger
* Makefile.in:
regen
2017-10-14 14:12 aleidinger
* ChangeLog.header, Makefile.am, doc/html/contact.html,
doc/html/contributors.html, doc/html/links.html,
make_changelog.sh:
switch references from CVS to SVN
2017-10-13 20:39 aleidinger
* doc/html/history.html:
release date of lame 3.100
2017-10-13 20:27 aleidinger
* ChangeLog, vc_solution/Makefile.in:
update
2017-10-13 20:21 aleidinger
* vc_solution/Makefile.am:
list each file explicitely, make dist does not like globs.
2017-10-13 20:16 aleidinger
* testcase.mp3:
Update testcase for 3.100 release.
Build on FreeBSD 64bit, clang 5.0.0, no advanced compiler
flags/optimisations.
2017-10-10 19:31 aleidinger
* ChangeLog:
update
2017-09-26 12:25 robert
* frontend/parse.c:
forcing MS for j-stereo mode only
2017-09-26 12:14 robert
* Dll/BladeMP3EncDLL.c, frontend/parse.c, libmp3lame/lame.c:
forcing MS for j-stereo mode only
2017-09-26 10:31 robert
* libmp3lame/lame.c:
set 'use of safe joint' for joint-stereo only, (only effects a
bit in vbr tag, sometimes)
2017-09-21 11:00 robert
* libmp3lame/gain_analysis.c, libmp3lame/machine.h:
+ fix multiple_of macro
2017-09-19 16:58 robert
* libmp3lame/version.h:
release candidate
2017-09-19 16:57 robert
* frontend/parse.c:
patch for bug #484: Lame doesn't recognize user locale correctly
2017-09-06 19:40 aleidinger
* ChangeLog:
update
2017-09-06 19:38 aleidinger
* libmp3lame/psymodel.c:
Add missing (at least in FreeBSD) include for FLT_EPSILON.
2017-09-06 15:07 robert
* frontend/get_audio.c, libmp3lame/fft.c,
libmp3lame/gain_analysis.c, libmp3lame/psymodel.c,
libmp3lame/quantize_pvt.c, libmp3lame/set_get.c,
libmp3lame/takehiro.c, libmp3lame/util.c, libmp3lame/util.h,
mpglib/interface.c, mpglib/tabinit.c:
small fixes
2017-08-31 14:14 robert
* frontend/lame_main.c, include/lame.def, include/lame.h,
include/libmp3lame.sym, libmp3lame/bitstream.c,
libmp3lame/lame.c, libmp3lame/set_get.c:
another go to fix bug #474: Buffer Overflow possible when input
sample rate very low
- do_copy_buffer did not check buffer size, when size was zero!
0 was a bad choice for the purpose of not checking, because
it was possible to get there, even when checking was demeanded!
2017-08-30 20:48 robert
* libmp3lame/lame.c:
fix for bug #474: Buffer Overflow possible when input sample rate
very low
When the input sample rate is very low, like 1 Hz, resampling to
8 kHz can result in a buffer overflow.
Found by Gustavo Grieco.
2017-08-30 14:11 robert
* frontend/lame_main.c, frontend/parse.c, frontend/parse.h:
fix for bug #473: Buffer Overflow possible in lame_main.c
- replaced parse_nogap_filename by generateOutPath
(now there is only one function building the output file names)
- all nogap file names are now build before any encoding starts
- decode and nogap are no valid combination of arguments anymore,
wouldn't work as expected
2017-08-28 15:39 robert
* libmp3lame/id3tag.c:
fix for bug #472: NULL Pointer Dereference in
id3v2AddAudioDuration
- plus some more pointer checks
2017-08-28 12:48 robert
* frontend/gtkanal.c:
fixing resource leak, hip deocder wasn't closed on quit
2017-08-26 13:20 robert
* libmp3lame/lame.c, libmp3lame/set_get.c:
lame_init_params:
- removed some impossible returns
2017-08-26 10:54 robert
* libmp3lame/encoder.c:
more of psy downgrade
2017-08-24 20:43 robert
* frontend/mp3rtp.c:
- free was called twice for some argument c-string
2017-08-23 13:22 robert
* mpglib/interface.c, mpglib/layer1.c:
hip layer 1 decode: testing for illegal bit allocation value
2017-08-22 23:31 robert
* mpglib/layer2.c:
fix for bug #470: global-buffer-overflow mpglib/layer2.c:144
II_step_one
2017-08-22 19:44 robert
* libmp3lame/id3tag.c, libmp3lame/id3tag.h, libmp3lame/util.c:
id3v2: set 'language'property to a valid language code (COMM
field)
2017-08-22 16:02 robert
* doc/html/history.html, frontend/get_audio.c,
frontend/lame_main.c:
fixing bug i#434: --clipdetect scale suggestion unaware of
--scale input value
2017-08-21 17:10 robert
* frontend/get_audio.c:
fix for bug #469 Unable to build without mpglib
2017-08-20 20:06 robert
* mpglib/layer3.c:
It looks like 'intensity stereo' decoding is broken. This change
prevents a buffer overflow (read) and instead prints an
indication, that there is something wrong.
2017-08-20 13:56 robert
* mpglib/layer3.c:
fixing map for mixed-block band infos
2017-08-19 20:17 robert
* mpglib/layer3.c:
fix for #467: stack-buffer-overflow mpglib/layer3.c:945
III_dequantize_sample
fix for #468 global-buffer-overflow mpglib/layer3.c:1244
III_i_stereo
2017-08-19 14:20 robert
* mpglib/common.c:
fix for bug #465: global-buffer-overflow layer2.c:144 II_step_one
- mpeg-2.5 is only supported by Layer3
2017-08-19 12:51 aleidinger
* ChangeLog:
update
2017-08-18 22:06 robert
* mpglib/layer3.c:
fix for bug #466: "stack-buffer-overflow in
./mpglib/layer3.c:1264 III_i_stereo"
2017-08-18 21:56 robert
* frontend/get_audio.c, frontend/lame_main.c:
fix for bug #464: attempting double-free
2017-08-15 19:51 robert
* libmp3lame/set_get.c:
estimation of total number of frames changed
2017-08-15 15:40 aleidinger
* make_changelog.sh:
add comment how to generate the input file
2017-08-15 15:35 aleidinger
* ChangeLog:
update ChangeLog
2017-08-15 15:20 aleidinger
* ACM/ADbg/Makefile.in, ACM/Makefile.in, ACM/ddk/Makefile.in,
ACM/tinyxml/Makefile.in, Dll/Makefile.in, Makefile.in,
aclocal.m4, configure, 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/English.lproj/Makefile.in,
macosx/LAME.xcodeproj/Makefile.in, macosx/Makefile.in,
misc/Makefile.in, mpglib/Makefile.in, vc_solution/Makefile.in:
regenerate
2017-08-15 15:16 aleidinger
* configure.in:
Improve compiler version detection (clang changed version
string).
Add some future GCC versions in the optimisation part.
2017-08-15 15:15 aleidinger
* include/lame.def:
Add lame_encode_buffer_interleaved_int() by Michael Fink.
LAME Patch #27.
2017-08-15 14:51 aleidinger
* include/lame.h, include/libmp3lame.sym, libmp3lame/lame.c:
patch #27: Add lame_encode_buffer_interleaved_int() by Michael
Fink
2017-08-15 14:46 aleidinger
* compile, config.sub, depcomp, frontend/depcomp, install-sh,
libmp3lame/depcomp, misc/depcomp, missing, mpglib/depcomp:
update to a more recent autotools version
2017-08-13 16:18 robert
* libmp3lame/set_get.c:
prevent some rare overflow in estimation of total number of
frames
in case samplerate-out is higher than samplerate-in
(it is a visual glitch only)
2017-08-13 13:57 robert
* doc/html/history.html, frontend/get_audio.c,
libmp3lame/version.h:
- sanity check when reading pcm data, avoid buffer overflow
- version 3.100 beta 0
2017-08-12 18:56 robert
* frontend/get_audio.c, frontend/lame_main.c, frontend/main.c,
mpglib/common.c, mpglib/interface.c:
- avoid calling exit in library
- free up resources after error condition in frontend
2017-08-12 18:14 robert
* mpglib/layer3.c:
- workaround for heap corruption while decoding layer3
- some fix for mpeg2.5 decoding with mixed block feature, taken
from Takehiro's branch
2017-08-08 17:52 robert
* doc/man/lame.1:
fix typo
2017-08-08 13:56 robert
* doc/html/history.html, libmp3lame/vector/xmm_quantize_sub.c:
Fix for bug ticket [ #449 ] Make sure functions with SSE
instructions maintain their own properly aligned stack. Thanks to
Fabian Greffrath
2017-08-08 13:26 robert
* doc/html/history.html, mpglib/interface.c:
Fix for bug ticket #445: dereference of a null pointer possible
in loop. Thanks to Renu Tyagi
2017-08-08 12:40 robert
* doc/html/history.html, frontend/lame_main.c:
Fix for bug ticket #447: Fix dereference NULL and Buffer not NULL
terminated issues. Thanks to Surabhi Mishra
2017-08-06 18:15 robert
* frontend/get_audio.c, libmp3lame/VbrTag.c, libmp3lame/lame.c,
libmp3lame/set_get.c, libmp3lame/util.h:
in case of illegal sample rate and number of channel, let lame
print an error message
2017-08-03 13:07 rjamorim
* HACKING, INSTALL, LICENSE, README, README.WINGTK, TODO:
Typos, formatting, grammar...
2017-08-03 13:06 rjamorim
* ACM/lame.ico:
Updated icon to the current LAME logo
2017-08-03 12:32 rjamorim
* USAGE:
Updated USAGE: fixed typos, formatting, some grammar
2017-08-02 19:56 robert
* doc/html/history.html:
- reverting psymodel to that of version 3.99.5
- changing version back to 3.99.5 to ease binary mp3 file
comparisons with version 3.99.5
Committed on the Free edition of March Hare Software CVSNT
Client.
Upgrade to CVS Suite for more features and support:
http://march-hare.com/cvsnt/
2017-08-02 19:48 robert
* libmp3lame/psymodel.c, libmp3lame/quantize.c,
libmp3lame/quantize_pvt.c, libmp3lame/util.h,
libmp3lame/version.h:
- reverting psymodel to that of version 3.99.5
- changing version back to 3.99.5 to ease binary mp3 file
comparisons with version 3.99.5
Committed on the Free edition of March Hare Software CVSNT
Client.
Upgrade to CVS Suite for more features and support:
http://march-hare.com/cvsnt/
2016-01-29 21:36 aleidinger
* ChangeLog:
update history
2016-01-29 21:09 aleidinger
* ACM/ADbg/Makefile.in, ACM/Makefile.in, ACM/ddk/Makefile.in,
ACM/tinyxml/Makefile.in, Dll/Makefile.in, Makefile.in,
aclocal.m4, compile, config.guess, config.h.in, config.sub,
configure, depcomp, doc/Makefile.in, doc/html/Makefile.in,
doc/man/Makefile.in, dshow/Makefile.in, frontend/Makefile.in,
frontend/depcomp, include/Makefile.in, install-sh,
libmp3lame/Makefile.in, libmp3lame/depcomp,
libmp3lame/i386/Makefile.in, libmp3lame/vector/Makefile.in,
ltmain.sh, mac/Makefile.in, macosx/English.lproj/Makefile.in,
macosx/LAME.xcodeproj/Makefile.in, macosx/Makefile.in,
misc/Makefile.in, misc/depcomp, missing, mpglib/Makefile.in,
mpglib/depcomp, vc_solution/Makefile.in:
regen
2016-01-29 21:06 aleidinger
* Dll/Makefile.mingw32, HACKING, Makefile.MSVC, Makefile.am.global,
Makefile.unix, configure.in, libmp3lame/Makefile.am:
- better check for SSE intrinsics [1]
- don't define NDEBUG in release builds
-> asserts trigger segfaults even in release builds
-> quick and user-unfriendly fix until user-fiendly error checks
are
implemented
- fix spelling mistakes in HACKING file [2]
- enable cross-compiling for mingw [3]
- fix linker path for libmpelame for mingw [3]
- fix out-of-source-tree builds [4]
- update files to automake 1.15, autconf 2.69
- update compiler version detection (detect clang and add
optimization
for at least 3.7.x)
Submitted by: dim@FreeBSD.org [1], FreeBSD PR 206620
tridecethtwelve@users.sf.net [2] LAME patch #68
bardware@users.sf.net [3] LAME patch #70
m-a@users.sf.net [4] LAmE patch #67
2015-05-11 07:01 rbrito
* libmp3lame/lame.c:
libmp3lame: Remove redundant check for invalid sample rates.
Thanks Fabian Greffrath for letting me know that I screwed up. :)
Signed-off-by: Rogério Brito <rbrito@ime.usp.br>
2015-04-28 22:12 rbrito
* libmp3lame/lame.c:
libmp3lame: Add check for negative number of channels.
Thanks to Maks Naumov and Fabian Greffrath for the contribution.
2015-04-28 22:07 rbrito
* libmp3lame/util.c:
libmp3lame: Fix decision if sample rate ratio is an integer value
or not.
From Fabian Greffrath's original description:
If the sample rate of the input file is sufficiently close to an
integer
multiple of the output sample rate, the value of the intratio
variable is
calculated incorrectly. This leads to further values being
miscalculated
up to the joff variable which is used as an index to dereference
the
esv->blackfilt array. This leads top an overflow and causes a
segmentation fault.
See https://bugs.debian.org/778529 for a discussion.
2015-04-28 22:03 rbrito
* frontend/get_audio.c:
frontend: Avoid division by zero.
Avoid malformed wav causing floating point exception (integer
divide by
zero).
Kindly contributed by Fabian Greffrath
<fabian+debian@greffrath.com>. See
https://bugs.debian.org/777159 for a discussion.
2015-02-21 23:03 rbrito
* test/lametest.py:
test: lametest: Some more PEP-8 love.
This is mostly regarding not having parentheses around boolean
expressions.
2015-02-21 22:57 rbrito
* test/lametest.py:
test: lametest: Add some PEP-8 love.
2015-02-21 22:49 rbrito
* test/lametest.py:
test: lametest: Fix some trailing whitespace.
2015-02-21 22:35 rbrito
* libmp3lame/lame.c:
Add check for invalid input sample rate.
Patch by Maks Naumov <maksqwe1@ukr.net>, forwared to me by Fabian
Greffrath
<fabian@greffrath.com> from the Debian packaging.
Thanks for the contribution!
2014-10-01 17:54 jaz001
* doc/html/links.html:
links update.
2014-01-28 14:48 robert
* Makefile.MSVC, frontend/get_audio.c, frontend/main.c,
libmp3lame/lame.c, libmp3lame/machine.h:
some minor changes:
- do not disable replaygain calc and find peak sample, when not
writing LAME info header (patch tracker item #66)
- remove deprecated linker option from Makefile.MSVC (bug tracker
item #442)
2013-12-17 11:24 robert