This repository has been archived by the owner on Feb 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 60
/
ChangeLog
40204 lines (22643 loc) · 889 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.
- 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)
--
2016-01-29 21:06 aleidinger
* aclocal.m4, config.h.in, config.sub, Makefile.in, compile,
config.guess, depcomp, install-sh, ltmain.sh, missing,
ACM/Makefile.in, ACM/ADbg/Makefile.in, ACM/ddk/Makefile.in,
ACM/tinyxml/Makefile.in, Dll/Makefile.in, doc/Makefile.in,
doc/html/Makefile.in, doc/man/Makefile.in, dshow/Makefile.in,
frontend/Makefile.in, frontend/depcomp, include/Makefile.in,
libmp3lame/Makefile.in, libmp3lame/depcomp,
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,
misc/depcomp, mpglib/Makefile.in, mpglib/depcomp,
vc_solution/Makefile.in, configure:
regen
2016-01-29 21:06 aleidinger
* HACKING, Makefile.MSVC, Makefile.am.global, Makefile.unix,
configure.in, Dll/Makefile.mingw32, 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
* frontend/get_audio.c, frontend/main.c, libmp3lame/lame.c,
libmp3lame/machine.h, Makefile.MSVC:
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
* frontend/get_audio.c, frontend/main.h, frontend/parse.c,
libmp3lame/gain_analysis.c, libmp3lame/id3tag.h,
libmp3lame/machine.h, libmp3lame/psymodel.c:
applying submitted patches
#64: fixes undefined references when compiling with mingw32 (send by Patrick)
#59: changes static_assert into a more portable form (send by Doug Cook)
#55: fixes issues with wave files >2GB (send by lvqcl)
plus some minor changes to reduce compiler warnings with GCC v4.7.1
2013-12-08 19:49 jaz001
* LICENSE, USAGE, doc/html/detailed.html, doc/man/lame.1,
frontend/parse.c:
Documentation updates:
-q setting rewording in all docs
general updates in USAGE and man page.
Small updates in the --help, --longhelp , and --preset help
2013-06-12 09:16 rbrito
* aclocal.m4, configure.in, doc/html/Makefile.am,
doc/man/Makefile.am, libmp3lame/i386/Makefile.am:
Make autotools files compatible with automake >= 1.12
Newer autotools versions don't seem to support ansi2knr, which is probably
not a problem, given the last decades of compilers accepting ANSI C (and the
rest of the LAME code being written in ANSI C itself).
This fixes ticket #60, with a patch of Brennan Shacklett, from the Gentoo
community.
2013-06-12 09:06 rbrito
* aclocal.m4, configure.in, doc/html/Makefile.am:
Kill spurious trailing whitespace from some files.
2013-06-11 08:41 rbrito
* frontend/brhist.c:
frontend: brhist: Fix type of formatting string parameter.
2013-06-11 08:41 rbrito
* frontend/get_audio.c:
frontend: get_audio: Add missing formatting string parameter.
2013-06-11 08:19 rbrito
* Dll/Example.cpp:
Dll/Example.cpp: Remove (some) spurious whitespace.
2013-06-11 08:19 rbrito
* Dll/Example.cpp:
Dll/Example.cpp: Remove resource leaks in example code.
2013-06-11 07:26 rbrito
* config.guess, config.sub:
config.{sub,guess}: Update files to pick up newer arches.
This closes ticket #406. Perhaps a better solution would be to rewrite part
of our autotools system, but, then, perhaps not.
2013-06-11 06:46 rbrito
* include/libmp3lame.sym:
libmp3lame: Regenerate libmp3lame.sym from header file.
Part of patch submitted by Reimar Döffinger on ticket #63.
We should review this to check if there are any symbols that we don't want
exported.
2013-06-11 06:45 rbrito
* libmp3lame/Makefile.am:
libmp3lame: Consider the symbols in libmp3lame.sym.
This is part of the patch sent by Reimar Döffinger in ticket #63.
2013-03-20 20:38 robert
* frontend/timestatus.c, doc/html/history.html:
fix for tracker item 3608583: input file name displayed with wrong character encoding (windows)
2012-10-25 18:46 robert
* doc/html/history.html, frontend/lame_main.c, frontend/main.c,
frontend/parse.c:
fix for tracker item 3580176: environment variable LAMEOPT doesn't work anymore
2012-10-13 14:10 robert
* doc/html/history.html, frontend/parse.c:
fix for tracker item 3544957: scale (empty) silent encode without warning
switches with missing argument values will be ignored. (Those with integer or floating point values, at least)
2012-10-13 11:50 robert
* doc/html/history.html, frontend/parse.c:
fix for tracker item 3565659: no progress indication with pipe input :(
2012-10-13 10:36 robert
* doc/html/history.html, frontend/parse.c:
fix for tracker item 3567844: problem with Tag genre
2012-10-13 09:33 robert
* doc/html/history.html, frontend/parse.c:
fix for tracker item ID 3558466: Bug in path handling
2012-10-09 21:39 robert
* libmp3lame/version.h:
bump version
2012-10-09 21:37 robert
* libmp3lame/: psymodel.c, util.h:
trying to improve strong tonal samples (lead-voice.wav)
2012-10-09 21:35 robert
* frontend/parse.c:
ignore developer-only switches, but parse them for command line compatibility reasons
2012-10-06 15:54 robert
* libmp3lame/psymodel.c:
- code refactorings
- changed "mask adding", get the max of 3 different ones
2012-10-06 11:44 robert
* frontend/parse.c, libmp3lame/presets.c:
+ new command line option "--gain x", more convenient to adjust replay gain, just use whatever decibel value LAME reported before.
+ out-dir option mentioned in long help text
2012-07-19 20:57 robert
* doc/html/history.html, frontend/get_audio.c, mpglib/interface.c,
libmp3lame/version.h:
Improved detection of MPEG audio data in RIFF WAVE files.
see tracker item 3545112: Invalid sampling detection
2012-07-11 18:31 jaz001
* doc/html/: detailed.html, usage.html:
Updates to reflect recent changes in hydrogenaudio wiki.
2012-06-19 00:15 rbrito
* doc/html/history.html:
Update the HTML changelog.
2012-06-19 00:00 rbrito
* Makefile.am, configure.in:
Don't use use the debian directory as build target.
Include debian as extra directory instead of directory part of
subdirectories used in build.
Patch stolen from:
http://anonscm.debian.org/gitweb/?p=pkg-multimedia/lame.git;a=tree;f=debian/patches
2012-06-18 20:52 rbrito
* libmp3lame/i386/Makefile.am:
libmp3lame: Fix possible race condition causing build failures.
This was discovered in automated builds by the Debian project and the patch
provided is by Andres Mejia <amejia@debian.org>.
Please, note that only part of the patch (the one touching Makefile.am) was
applied, since the changes in Makefile.in should be picked up when
regenerating files with autotools.
Signed-off-by: Rogério Brito <rbrito@ime.usp.br>
2012-06-18 20:51 rbrito
* acinclude.m4:
acinclude.m4: Include GTK-1 autoconf directives in build system.
Resurrect knowledge of how to deal with GTK1. This was transplanted back
from aclocal.m4 with a patch provided by Andres Mejia <amejia@debian.org>,
from Debian's packaging of lame, even though the original code is attributed
to Owen Taylor and dated 97-11-3.
Anyway, with this part not lost again, we can easily regenerate autotools'
files with a simple `autoconf -vfi` invocation.
Signed-off-by: Rogério Brito <rbrito@ime.usp.br>
2012-06-18 20:48 rbrito
* configure.in:
configure.in: Rewrap for (human) legibility.
This also helps by being diff-friendly if we change only one of the parts of
a long line.
Signed-off-by: Rogério Brito <rbrito@ime.usp.br>
2012-02-28 19:07 robert
* doc/html/history.html:
bug-fix release 3.99.5
2012-02-28 18:57 robert
* ChangeLog, configure, configure.in, testcase.mp3,
doc/html/history.html (lame3_99):
bug-fix release 3.99.5
2012-02-19 00:02 robert
* libmp3lame/: gain_analysis.c, machine.h:
rearranging gain analysis kernel table and calc loops to allow better code vectorization
2012-02-18 13:08 robert
* frontend/get_audio.c, frontend/lame_main.c, frontend/main.c,
frontend/parse.c, libmp3lame/mpglib_interface.c, mpglib/layer2.c:
removing VC11 x86-64 compiler warnings
2012-02-14 14:24 robert
* libmp3lame/: VbrTag.c, bitstream.c, encoder.c, id3tag.c, lame.c,
machine.h, mpglib_interface.c, psymodel.c, util.c, util.h:
some code refactorings
2012-02-14 11:06 robert
* ChangeLog, doc/html/history.html (lame3_99), ChangeLog,
doc/html/history.html:
updating history/changelog
2012-02-11 12:11 robert
* frontend/get_audio.c:
Bug fix for tracker item ID: 3486753 Artifacts at the beginning of decoded file
2012-02-11 12:10 robert
* mpglib/layer3.c:
some hidden global temporary variable removed, could have been some multi threading issue
2012-02-11 12:00 robert
* frontend/get_audio.c (lame3_99):
Bug fix for tracker item ID: 3486753 Artifacts at the beginning of decoded file
2012-02-11 11:03 robert
* mpglib/layer3.c (lame3_99):
some hidden global temporary variable removed, could have been some multi threading issue
2012-02-10 18:13 rbrito
* config.h.in, configure.in:
autotools: Fix compilation on alpha using proper ifdef guards.
Thanks to Andres Mejia <amejia004@gmail.com> for the patch (with minor
whitespace adjustments).
2012-02-10 18:11 rbrito
* doc/html/history.html:
doc: Correctly spell Fabian Greffrath's name to give proper credit.
2012-02-10 18:06 rbrito
* config.h.in, configure.in (lame3_99):
autotools: Fix compilation on alpha using proper ifdef guards.
Thanks to Andres Mejia <amejia004@gmail.com> for the patch (with minor
whitespace adjustments).
2012-02-10 18:05 rbrito
* doc/html/history.html (lame3_99):
doc: Correctly spell Fabian Greffrath's name to give proper credit.
2012-02-07 13:52 robert
* configMS.h (lame3_99), configMS.h:
reduce compiler warnings for SSE2 build with VC 11
2012-02-07 13:40 robert
* configMS.h, frontend/parse.c, libmp3lame/l3side.h,
libmp3lame/machine.h, libmp3lame/quantize_pvt.c,
libmp3lame/vbrquantize.c, libmp3lame/version.h (lame3_99):
- workaround for cygwin build problem
- fix "fast floating point math" problem (possible bitrate bloat on quiet pieces)
2012-02-07 13:36 robert
* configMS.h, libmp3lame/l3side.h, libmp3lame/machine.h,
libmp3lame/quantize_pvt.c, libmp3lame/vbrquantize.c:
- workaround for cygwin build problem
- fix "fast floating point math" problem (possible bitrate bloat on quiet pieces)
2012-01-25 13:01 robert
* ChangeLog, doc/html/history.html:
updating Changelog and History
2012-01-25 12:47 robert
* configure, configure.in, testcase.mp3 (lame3_99):
Bug-fix release 3.99.4
2012-01-25 12:33 robert
* ChangeLog, testcase.mp3, doc/html/history.html (lame3_99):
updating history and changelog
2012-01-19 14:27 robert
* frontend/parse.c (lame3_99):
fix for tracker item ID: 3475581 - lame crashes at .w64 input file
2012-01-19 12:15 robert
* frontend/parse.c:
fix for tracker item ID: 3475581 - lame crashes at .w64 input file
2012-01-08 23:49 robert
* include/lame.h, libmp3lame/id3tag.c, libmp3lame/id3tag.h,
libmp3lame/quantize.c, libmp3lame/quantize_pvt.c,
libmp3lame/util.c, libmp3lame/version.h (lame3_99),
include/lame.h, libmp3lame/id3tag.c, libmp3lame/id3tag.h,
libmp3lame/quantize_pvt.c, libmp3lame/util.c:
Addressing things brought to attention by tracker item ID: 3463197: 3.99.x problem WFED and PCST frames
+ WFED and PCST frames can now be added, to tag podcasts iTunes recognizes
+ USER frames are now supported
+ COMM frames can now have a description, when passed via --tv "COMM=<description>=<full text>"
- possible divide-by-zero exception should be fixed
- adding malformed user-defined-frames could result in abnormal program termination, fixed
2011-12-04 12:35 robert
* libmp3lame/: lame.rc (lame3_99), lame.rc:
re tracker ID: 3449748 Incomplete resource definition file
A translation value seems to be mandatory by convention.
2011-11-26 19:49 robert
* ChangeLog, configure, configure.in (lame3_99):
releasing 3.99.3
2011-11-26 18:26 robert
* doc/html/history.html, libmp3lame/id3tag.c:
bug fix for tracker item ID: 3441349: --tg does not handle genre number when adding unicode tag
2011-11-26 18:15 robert
* doc/html/history.html, libmp3lame/id3tag.c, libmp3lame/version.h
(lame3_99):
bug fix for tracker item ID: 3441349: --tg does not handle genre number when adding unicode tag
2011-11-18 09:51 robert
* doc/html/history.html, libmp3lame/VbrTag.c, libmp3lame/version.c:
merge with 3.99 branch modifications
2011-11-18 09:39 robert
* ChangeLog (lame3_99):
releasing 3.99.2
2011-11-18 09:30 robert
* configure, configure.in (lame3_99):
releasing 3.99.2 stable
2011-11-18 09:18 robert
* testcase.mp3, doc/html/history.html, libmp3lame/VbrTag.c,
libmp3lame/version.c, libmp3lame/version.h (lame3_99):
Due to some bugs in 3rd party HW/SW decoders, those were not
be able to make use of LAME's extended info tag anymore,
resulting in problems with things like gapless playback.
2011-11-18 08:38 robert
* frontend/: get_audio.c, get_audio.h, lame_main.c (lame3_99):
copy old id3v2 tag
2011-11-10 21:39 robert
* libmp3lame/version.c (lame3_99):
small fix
2011-11-10 18:46 robert
* libmp3lame/version.c:
small fix
2011-11-10 13:19 robert
* frontend/: get_audio.c, get_audio.h, lame_main.c:
when transcoding, copy old id3v2 tag. feature requests:
ID: 1985551 lame --pass-ID3-tags-unscathed
ID: 977304 ID3 tags lost when transcoding
2011-11-09 00:15 robert
* libmp3lame/: quantize.c, quantize_pvt.c:
aiming for a more balanced bit reservoir usage
2011-11-08 19:36 robert
* libmp3lame/quantize_pvt.c:
at lower sample rates, make a cut at last usable scalefactor band
2011-11-08 18:19 robert
* libmp3lame/quantize.c:
8kHz mpeg2.5 uses fewer scale factor bands.
2011-11-06 18:34 robert
* libmp3lame/encoder.c:
use same meaning of PE in cbr and vbr modes
2011-11-05 17:53 robert
* configure, configure.in, doc/html/history.html,
libmp3lame/version.h:
main-branch open for next development cycle
2011-11-05 17:33 robert
* ChangeLog, configure, configure.in (lame3_99):
releasing 3.99.1
2011-11-05 17:00 robert
* doc/html/history.html, libmp3lame/version.h (lame3_99):
releasing 3.99.1 stable
2011-11-05 16:32 robert
* misc/: Makefile.am, Makefile.in:
adding mk_mp3.sh to dist files
2011-11-02 00:20 robert
* Makefile.MSVC, libmp3lame/machine.h:
fixing vc6 compile problem, VC6 seems to miss exporting some inline functions from math.h.
2011-11-01 19:50 robert
* libmp3lame/id3tag.c:
oops, fixing writing unicode strings in id3tags
2011-11-01 16:59 robert
* doc/html/history.html, frontend/parse.c, libmp3lame/id3tag.c:
Fixes for several issues with ID3v2 unicode tags, using Big-Endian text
encodings. Because of several other software (like Windows Media Player),
LAME writes Little-Endian unicode tags only.
Thanks to Taihei Monma, for reporting these issues.
Tracker items: [ 3431203, 3431222, 3431241 ]
2011-10-18 21:54 robert
* Dll/BladeMP3EncDLL.h:
Fixing typedef HBE_STREAM, has to be a pointer type.
2011-10-18 21:51 robert
* libmp3lame/: lame.c, util.c:
Fixing a small display problem for x64 platform
2011-10-17 23:15 robert
* libmp3lame/id3tag.c:
bug fix: ID3 tags are always added
2011-10-16 13:09 robert
* frontend/: Makefile.am, Makefile.in:
file rtp.h was missing in distribution list
2011-10-15 15:46 robert
* doc/html/history.html:
Updating history
2011-10-15 14:37 robert
* ChangeLog:
updating Changelog
2011-10-15 14:31 robert
* testcase.mp3, debian/Makefile.am, debian/Makefile.in,
doc/html/detailed.html, libmp3lame/version.h:
preparing release
2011-10-15 12:38 robert
* misc/mk_mp3.sh:
updating script for building mp3 collection from lossless archive
2011-10-06 23:12 robert
* ChangeLog:
updating changelog
2011-10-06 23:07 robert
* frontend/: get_audio.c, parse.c:
let iconv use transliteration
2011-10-04 15:37 robert
* frontend/parse.c:
fixing compiler warning
2011-10-04 11:42 robert
* frontend/: get_audio.c, lame_main.c, main.h, parse.c:
using our input file reading functions when reading from stdin
allow -s to overwrite input samplerate for non RAW input files too
2011-10-03 13:28 robert
* doc/html/history.html, frontend/lame_main.c:
fix for tracker item ID: 3034259 Fix for confusing fatal error: can't update LAME-tag frame!
2011-10-03 13:22 robert
* libmp3lame/id3tag.c, frontend/parse.c:
making sure, the id3v1 tags get filled
2011-10-02 21:45 robert
* doc/html/history.html, frontend/get_audio.c:
Bug fix for tracker item ID: 3368977 Wave Parser doesn't pad chunks
2011-10-02 18:39 robert
* frontend/: portableio.c, portableio.h:
removing portableio.[ch] files, not needed anymore
2011-10-02 18:24 robert
* frontend/parse.c, libmp3lame/id3tag.c:
fixing some compiler warnings
2011-10-02 17:13 robert
* Makefile.MSVC, frontend/Makefile.am, frontend/Makefile.in,
frontend/get_audio.c, frontend/mp3rtp.c, Makefile.unix,
vc_solution/vc9_lame_lame.vcproj,
vc_solution/vc9_lame_mp3rtp.vcproj,
vc_solution/vc9_lame_mp3x.vcproj:
replacing "portableio" by own code in get_audio.c
2011-10-02 14:52 robert
* doc/html/detailed.html, doc/man/lame.1, libmp3lame/id3tag.c,
frontend/main.c, frontend/main.h, frontend/parse.c,
include/lame.def, include/lame.h:
clearify, unicode tags are utf-16
2011-09-28 19:11 robert
* doc/html/history.html, libmp3lame/id3tag.c, frontend/parse.c,
vc_solution/vc9_lame.sln, vc_solution/vc9_lame_lame.vcproj,
vc_solution/vc9_lame_mp3rtp.vcproj,
vc_solution/vc9_lame_mp3x.vcproj,
vc_solution/vc9_libmp3lame.vcproj,
vc_solution/vc9_libmp3lame_dll.vcproj,
vc_solution/vc9_mpglib.vcproj:
bug fix for tracker item 3395813: id3tag_set_fieldvalue for URL link frames Broken
now one can add URL link frames to the ID3v2 tag, like:
--tv "WOAR=www.mypage.com" --tv "WXXX=get remixes here=www.dj.org"
2011-09-25 17:08 robert
* libmp3lame/version.h:
increasing patch level
2011-07-26 11:48 rbrito
* frontend/parse.c:
frontend: Update licensing message.
Patch supplied by Andres Mejia <mcitadel@gmail.com> according to previous
discussions in the mailing lists `lame-dev` and `pkg-multimedia-maintainers`.
http://lists.alioth.debian.org/pipermail/pkg-multimedia-maintainers/2011-July/020417.html
2011-06-17 06:22 aleidinger
* Makefile.am.global:
Remove ansi2knr part. It will be deprecated and subsequently removed from
automake.
Notified by: Stefano Lattarini <stefano.lattarini@gmail.com>
2011-05-24 20:45 robert
* Makefile.unix, libmp3lame/psymodel.c, libmp3lame/quantize_pvt.c:
small change in addition of simultaneous maskings
2011-05-24 20:40 robert
* mpglib/layer2.c:
workaround for tracker item 3301963:"assertion failed in layer 2 decoding"
2011-05-07 16:05 rbrito
* README, Dll/BladeMP3EncDLL.c, Dll/BladeMP3EncDLL.h,
Dll/Example.cpp, debian/copyright, frontend/brhist.c,
frontend/brhist.h, frontend/get_audio.c, frontend/get_audio.h,
frontend/gpkplotting.c, frontend/gpkplotting.h,
frontend/gtkanal.c, frontend/gtkanal.h, frontend/lame_main.c,
frontend/lametime.c, frontend/lametime.h, frontend/main.c,
frontend/main.h, frontend/mp3rtp.c, frontend/parse.c,
frontend/rtp.c, frontend/rtp.h, frontend/timestatus.c,
frontend/timestatus.h, include/lame.h, libmp3lame/VbrTag.c,
libmp3lame/VbrTag.h, libmp3lame/bitstream.c,
libmp3lame/bitstream.h, libmp3lame/encoder.c,
libmp3lame/encoder.h, libmp3lame/fft.h, libmp3lame/id3tag.c,
libmp3lame/l3side.h, libmp3lame/lame-analysis.h,
libmp3lame/lame.c, libmp3lame/machine.h,
libmp3lame/mpglib_interface.c, libmp3lame/newmdct.c,
libmp3lame/newmdct.h, libmp3lame/presets.c,
libmp3lame/psymodel.c, libmp3lame/psymodel.h,
libmp3lame/quantize.c, libmp3lame/quantize.h,
libmp3lame/quantize_pvt.c, libmp3lame/quantize_pvt.h,
libmp3lame/reservoir.c, libmp3lame/reservoir.h,
libmp3lame/set_get.c, libmp3lame/set_get.h, libmp3lame/tables.c,
libmp3lame/tables.h, libmp3lame/takehiro.c, libmp3lame/util.c,
libmp3lame/util.h, libmp3lame/vbrquantize.c,
libmp3lame/vbrquantize.h, libmp3lame/version.c,
libmp3lame/version.h, libmp3lame/vector/lame_intrin.h,
libmp3lame/vector/xmm_quantize_sub.c, test/lame_test.cpp:
Make explicit that the licence is the Library GPLv2.
According to Jonas Smedegaard, there is no Lesser GPLv2, only Lesser GPLv2.1.
Thanks to Andres.
2011-05-07 15:56 rbrito
* frontend/parse.c:
Fix some warnings in 64-bit arches. Changing s/size_t/unsigned int/
This should not be a problem with the variables in question, as they can't
be much larger than what an unsigned int is able to hold.
Patch from:
http://git.debian.org/?p=pkg-multimedia/lame.git;a=blob;f=debian/patches/07-field-width-fix.patch
Sent by Andres.
2011-05-07 15:44 rbrito
* configure.in:
Work round buggy softfloat optimization in ARM EABI compilers.
A bug present in gcc-4.[123] up to 4.3.3 makes a buggy optimization
for single-precision floats when -ffinite-math-only (enabled by -ffast-math)
Refer to the following.
https://sourceforge.net/tracker/index.php?func=detail&aid=2681646&group_id=290&atid=100290
https://trac.xiph.org/ticket/1526
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39501
Thanks to Andres Mejia. This fixes SF bug 2681646.
2011-05-07 15:35 rbrito
* libmp3lame/i386/nasm.h:
Disable executable patch.
Patch from Russell Coker to disable executable stack from Christian
Marillat's packaging. Sent by Andres Mejia.
2011-05-07 01:23 rbrito
* README:
Tweak slightly the disclaimer of patents from the README file.
This change was proposed by me with suggestions made by Andres Mejia.
2011-05-06 20:14 rbrito
* libmp3lame/lame.c:
libmp3lame: lame: Put some parentheses to shut up some static analysis tools.
The statement
frames_left -= ((frame_num != gfc->ov_enc.frame_number) ? 1 : 0);
could probably be written as
frames_left -= (frame_num != gfc->ov_enc.frame_number);
unless we know of some platform where a boolean evaluation does not result
in a 1 in case of it being true.
2011-05-06 19:59 rbrito
* README:
Remove problematic restriction to the LGPL, to make it legally OK.
Also update the copyright years of the LAME team.
2011-04-20 13:03 aleidinger
* config.rpath:
looks like this is needed now
2011-04-20 12:52 aleidinger
* aclocal.m4, Makefile.in, configure, 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,