forked from rbrito/deprecated-lame-mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
40042 lines (22552 loc) · 885 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)
--
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 <[email protected]> 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 <[email protected]> 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 <[email protected]> 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 <[email protected]>
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,
macosx/Makefile.in, macosx/English.lproj/Makefile.in,
macosx/LAME.xcodeproj/Makefile.in, misc/Makefile.in,
mpglib/Makefile.in, vc_solution/Makefile.in, config.h.in:
regen
2011-04-20 12:51 aleidinger
* configure.in:
- correct the VBR check message to something more correct (curses)
- check for libiconv and use it in the frontend
2011-04-19 15:36 robert
* doc/man/lame.1, frontend/parse.c:
lame(1) manpage patch - ID: 3161674
Typo in --longhelp - ID: 3288886
replaced strnicmp, isn't portable
2011-04-15 20:17 robert
* libmp3lame/lame.c:
Bug fix: when aborting an encode before any samples were fed into the encoder, an assert was falsely triggered.
2011-04-14 20:48 robert
* frontend/parse.c:
Allow -Z switch in none alpha builds (for now)
2011-04-14 19:36 robert
* doc/html/history.html, frontend/parse.c, libmp3lame/presets.c,
libmp3lame/version.h:
3.99 beta phase
2011-04-08 23:50 robert
* misc/mk_mp3.sh:
mk_mp3.sh - script to encode and tag CDs
2011-04-08 22:55 robert
* libmp3lame/psymodel.c:
some code cleanup: unused vars, defines, etc.
2011-04-08 19:26 robert
* frontend/: lame_main.c, main.c, main.h:
Unicode support for extra options passed via environment varialbe LAMEOPT
2011-04-07 23:03 robert
* frontend/get_audio.c:
quick fix for tracker item 3277412: Segmentation fault at layer2.c:105 with
--decode
(problem sample contains multiple ID3v2 tags)
2011-04-07 23:01 robert
* libmp3lame/: psymodel.c, util.h:
- some code cleanup
- calculate short block thm from long blocks, in case we eventually
may need it for pre-echo control of the next granule
2011-04-05 19:17 jaz001
* doc/html/detailed.html:
corrected spelling.
2011-04-04 19:40 robert
* libmp3lame/psymodel.c:
small update for the pre-echo control
2011-04-04 11:49 aleidinger
* ChangeLog:
Update upto now.
2011-04-04 11:48 aleidinger
* make_changelog.sh:
Add the script to generate the changelog, not added to Makefile.am as it
does not make sense to distribute it.
I keep the "cvs log" output in '../log_output', the script expects it there.
2011-04-04 09:54 aleidinger
* Makefile.in, config.h.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,
macosx/Makefile.in, macosx/English.lproj/Makefile.in,
macosx/LAME.xcodeproj/Makefile.in, misc/Makefile.in,
mpglib/Makefile.in, vc_solution/Makefile.in:
regen
2011-04-04 09:51 aleidinger
* aclocal.m4:
regen
2011-04-04 09:49 aleidinger
* configure.in:
- depend upon at least autoconf 2.68, this should fix the variable type
size check in configure on Windows (mingw)
- readd check for termcap lib (needed for brhist)
- remove float8 (requested by Robert Hegemann)
- my gcc moans about -march=generic not being supported (anymore), use
'native' instead of 'generic' in one place
2011-04-04 09:45 aleidinger
* Makefile.am.global:
Depend upon automake 1.11.
2011-04-04 09:42 aleidinger
* libmp3lame/i386/Makefile.am:
Create the directory in any case, seems to prevent a race condition.
2011-04-04 09:41 aleidinger
* configMS.h:
Remove superflous brhist define.
2011-04-04 09:40 aleidinger
* INSTALL:
Remove superflous explication about brhist switch.
2011-04-04 09:36 aleidinger
* depcomp, install-sh, ltmain.sh, missing, frontend/depcomp,
libmp3lame/depcomp, misc/depcomp, mpglib/depcomp:
Update files from automake 1.11 and libtool 2.2.10.
2011-04-03 22:26 robert
* libmp3lame/: psymodel.c, version.h:
pre-echo control for short blocks is dependent on previous frame.
maybe we can relax it later, to speed-up things again.
2011-03-25 19:57 robert
* frontend/parse.c:
dropping note about mpglib being GPL, because we use HIP for decoding.
2011-03-24 20:19 robert
* doc/html/detailed.html, doc/man/lame.1, frontend/parse.c,
libmp3lame/id3tag.c:
new switches controlling the string encoding mode for ID3v2 tags:
--id3v2-latin1 turns on ID3v2 tags, text encoding ISO-8859-1
--id3v2-ucs2 turns on ID3v2 only tags, text encoding UCS-2
Similar experimental switches removed.
2011-03-24 10:25 robert
* doc/html/history.html:
fixing glitch in Joseph's name
2011-03-24 10:21 robert
* doc/html/history.html:
updating history with info about latest changes
2011-03-22 20:35 robert
* ChangeLog, libmp3lame/version.h:
updating ChangeLog
2011-03-05 20:05 robert
* libmp3lame/: presets.c, quantize_pvt.c:
adapting some parameters for vbr-old/cbr/abr, because of the now used psy model
2011-03-05 18:54 robert
* libmp3lame/: encoder.c, presets.c, psymodel.c, quantize_pvt.c:
now all modes use the same (latest) psy model
code cleanup
2011-03-05 14:06 robert
* mpglib/layer3.c:
fix for a possible out of bounds array access
re ID: 3091776 crash at III_dequantize_sample
This bug may be fixed now, don't have original problem sample to be sure.
2011-03-02 16:56 rbrito
* debian/changelog:
debian: Update changelog.
2011-03-02 16:56 rbrito
* debian/changelog:
Put my SF email or we get warnings from lintian.
2011-03-02 16:54 rbrito
* debian/control:
Verified that the packaging conforms to the Policy version 3.9.1
2011-03-02 16:54 rbrito
* debian/control:
Verified that the packaging conforms to the Policy version 3.9.0
2011-03-02 16:54 rbrito
* debian/control:
Remove unused Conflicts: and Replaces: fields.
They were never part of any stable release and 3rd party sites were,
perhaps, faster than us in providing changed packages (when the packaging
was not up-to-date).
2011-03-02 16:53 rbrito
* debian/control:
Verified that the packaging conforms to the Policy version 3.8.4
2011-03-02 16:53 rbrito
* debian/control:
Verified that the packaging conforms to the Policy version 3.8.3
2011-03-02 16:52 rbrito
* debian/control:
Verified that the packaging conforms to the Policy version 3.8.2
2011-03-02 16:52 rbrito
* debian/control:
Verified that the packaging conforms to the Policy version 3.8.1.0
2011-03-02 16:52 rbrito
* debian/control:
Fix lintian's debhelper-but-no-misc-depends from the binary packages.
2011-03-02 16:51 rbrito
* debian/changelog:
Update debian/changelog.
2011-03-02 16:50 rbrito
* debian/control:
debian/control: Change B-D on nasm to allow any i386 platform (no amd64, though).
2011-03-02 16:50 rbrito
* debian/control:
debian/control: Rewrap the Build-Depends field for legibility.
This also buys us some diff-friendliness.
2011-03-02 16:48 rbrito
* debian/: changelog, rules:
debian: Transition to the debhelper 7 format.
This format is easier to manage and other people should find it easy to
adapt to downstream necessities.
2011-03-01 00:34 robert
* testcase.mp3, libmp3lame/lame.c, libmp3lame/vbrquantize.c:
- new VBR: mpeg2.5 at 8 kHz doesn't use some scalefactor bands
2011-02-27 21:08 robert
* libmp3lame/lame.c:
small update for q_map
2011-02-27 01:52 robert
* libmp3lame/: lame.c, presets.c:
last patch made manual lowpass setting impossable (for VBR)
2011-02-27 00:52 robert
* Makefile.unix, libmp3lame/lame.c, libmp3lame/presets.c,
libmp3lame/psymodel.c, libmp3lame/version.h:
make use of resampling at lower VBR quality levels
2011-02-22 19:00 robert
* libmp3lame/: bitstream.c, encoder.c, lame.c, psymodel.c,
quantize.c, quantize_pvt.c, version.h:
Starting to use newer VBR psy-model for CBR and ABR encoding too
bug tracker ID: 3187397 - Strange compression behavior
2011-02-22 17:58 robert
* libmp3lame/: bitstream.c, lame.c, presets.c, psymodel.c,
quantize_pvt.c, version.c:
some code cleanup
2011-02-13 22:54 rbrito
* frontend/brhist.c:
frontend: remove unused variable and computation from brhist.c
2011-02-13 16:36 robert
* libmp3lame/: lame.c, quantize.c, quantize_pvt.c, version.h:
make vbr_mt the default vbr mode
2011-02-13 13:50 robert
* frontend/parse.c, include/lame.h, libmp3lame/lame.c,
libmp3lame/presets.c, libmp3lame/set_get.c:
new mono encoding switches:
-ml encodes left channel only
-mr encodes right channel only
2011-02-12 16:16 robert
* frontend/main.h, libmp3lame/presets.c, libmp3lame/vbrquantize.c:
small fixes for compiler warnings
(vbrquantize.c) bug fix, out of bounds memory write
2011-02-11 20:17 robert
* libmp3lame/: lame.c, presets.c, psymodel.c, quantize.c,
vbrquantize.c, version.h:
- reintroduction of fast encoding mode (-q7 / -f) (vbr_mt / vbr_mtrh)
- minor fix for sfb21 encoding (vbr_mt / vbr_mrth)
- small tunings
2010-12-08 15:28 robert
* Dll/: BladeMP3EncDLL.c, BladeMP3EncDLL.h:
fixing some compile issues when compiling as C++ code
bug tracker ID: 3125235: make -f Makefile.mingw32 fails
2010-12-05 12:25 robert
* Dll/BladeMP3EncDLL.c:
fixing some compile issues when compiling as C++ code
bug tracker ID: 3125235: make -f Makefile.mingw32 fails