File: ChangeLog

package info (click to toggle)
libdca 0.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,480 kB
  • sloc: ansic: 14,041; sh: 101; makefile: 72
file content (916 lines) | stat: -rw-r--r-- 29,004 bytes parent folder | download | duplicates (2)
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
------------------------------------------------------------------------
r78 | courmisch | 2007-04-10 12:17:36 +0000 (Tue, 10 Apr 2007) | 2 lines
Changed paths:
   M /trunk/configure.ac

Autoupdate

------------------------------------------------------------------------
r77 | courmisch | 2007-04-10 12:16:59 +0000 (Tue, 10 Apr 2007) | 2 lines
Changed paths:
   M /trunk/configure.ac

Bump version

------------------------------------------------------------------------
r76 | courmisch | 2007-04-10 12:14:52 +0000 (Tue, 10 Apr 2007) | 2 lines
Changed paths:
   M /trunk/include/audio_out.h

Const pointer to string constants

------------------------------------------------------------------------
r75 | courmisch | 2007-04-10 12:09:22 +0000 (Tue, 10 Apr 2007) | 2 lines
Changed paths:
   M /trunk/libao/audio_out_aif.c
   M /trunk/libao/audio_out_float.c
   M /trunk/libao/audio_out_null.c
   M /trunk/libao/audio_out_peak.c
   M /trunk/libdca/downmix.c
   M /trunk/libdca/parse.c

Fix some compiler warnings

------------------------------------------------------------------------
r74 | courmisch | 2007-04-10 12:07:27 +0000 (Tue, 10 Apr 2007) | 2 lines
Changed paths:
   M /trunk/libao/audio_out_wav.c

Fix if statement

------------------------------------------------------------------------
r73 | sam | 2007-04-08 14:52:02 +0000 (Sun, 08 Apr 2007) | 2 lines
Changed paths:
   M /trunk/include/dts.h

  * fixed typo in compat header.

------------------------------------------------------------------------
r71 | courmisch | 2007-04-08 09:20:15 +0000 (Sun, 08 Apr 2007) | 2 lines
Changed paths:
   M /trunk/ChangeLog
   M /trunk/configure.ac

libdca 0.0.4

------------------------------------------------------------------------
r70 | courmisch | 2007-04-08 09:09:37 +0000 (Sun, 08 Apr 2007) | 2 lines
Changed paths:
   M /trunk/COPYING
   M /trunk/NEWS
   M /trunk/include/audio_out.h
   M /trunk/include/dca.h
   M /trunk/include/dts.h
   M /trunk/include/tendra.h
   M /trunk/libao/audio_out.c
   M /trunk/libao/audio_out_aif.c
   M /trunk/libao/audio_out_al.c
   M /trunk/libao/audio_out_float.c
   M /trunk/libao/audio_out_internal.h
   M /trunk/libao/audio_out_null.c
   M /trunk/libao/audio_out_oss.c
   M /trunk/libao/audio_out_solaris.c
   M /trunk/libao/audio_out_wav.c
   M /trunk/libao/audio_out_win.c
   M /trunk/libao/convert2s16.c
   M /trunk/libdca/bitstream.c
   M /trunk/libdca/bitstream.h
   M /trunk/libdca/dca_internal.h
   M /trunk/libdca/downmix.c
   M /trunk/libdca/parse.c
   M /trunk/libdca/tables.h
   M /trunk/libdca/tables_adpcm.h
   M /trunk/libdca/tables_fir.h
   M /trunk/libdca/tables_huffman.h
   M /trunk/libdca/tables_quantization.h
   M /trunk/libdca/tables_vq.h
   M /trunk/src/dcadec.c
   M /trunk/src/extract_dca.c
   M /trunk/src/gettimeofday.c
   M /trunk/src/gettimeofday.h
   M /trunk/test/compare.c

Update News and FSF address

------------------------------------------------------------------------
r69 | courmisch | 2007-04-08 08:59:26 +0000 (Sun, 08 Apr 2007) | 2 lines
Changed paths:
   M /trunk/src

Fix svn:ignore

------------------------------------------------------------------------
r68 | courmisch | 2007-04-08 08:56:38 +0000 (Sun, 08 Apr 2007) | 2 lines
Changed paths:
   M /trunk/configure.ac

Bump version

------------------------------------------------------------------------
r67 | courmisch | 2007-04-08 08:55:38 +0000 (Sun, 08 Apr 2007) | 3 lines
Changed paths:
   M /trunk/libdca/configure.incl

Only use -prefer-non-pic optimization if --without-pic is used.
Afterall, most Linux/*BSD distributions always want PIC.

------------------------------------------------------------------------
r66 | courmisch | 2007-04-08 08:23:47 +0000 (Sun, 08 Apr 2007) | 2 lines
Changed paths:
   M /trunk/libao/Makefile.am
   M /trunk/libdca/Makefile.am
   M /trunk/src/Makefile.am

Fix linking with -lm

------------------------------------------------------------------------
r65 | courmisch | 2007-04-08 07:48:54 +0000 (Sun, 08 Apr 2007) | 3 lines
Changed paths:
   M /trunk/Makefile.am
   M /trunk/NEWS
   M /trunk/configure.ac
   D /trunk/debian

Remove Debian packaging
as I assume it will be migrated to pkg-multimedia repo

------------------------------------------------------------------------
r64 | courmisch | 2007-04-07 18:44:06 +0000 (Sat, 07 Apr 2007) | 2 lines
Changed paths:
   M /trunk/ChangeLog

libdca-0.0.3 release

------------------------------------------------------------------------
r63 | courmisch | 2007-04-07 18:42:46 +0000 (Sat, 07 Apr 2007) | 2 lines
Changed paths:
   M /trunk/vc++/Makefile.am
   A /trunk/vc++/dcadec.dsp (from /trunk/vc++/dtsdec.dsp:62)
   A /trunk/vc++/dcadec.dsw (from /trunk/vc++/dtsdec.dsw:62)
   D /trunk/vc++/dtsdec.dsp
   D /trunk/vc++/dtsdec.dsw
   A /trunk/vc++/libdca.dsp (from /trunk/vc++/libdts.dsp:62)
   D /trunk/vc++/libdts.dsp

Updat VC++ files

------------------------------------------------------------------------
r62 | courmisch | 2007-04-07 18:10:32 +0000 (Sat, 07 Apr 2007) | 2 lines
Changed paths:
   M /trunk/doc/libdca.txt
   M /trunk/include/dca.h
   M /trunk/include/dts.h
   M /trunk/libdca/Makefile.am
   M /trunk/libdca/bitstream.c
   M /trunk/libdca/bitstream.h
   M /trunk/libdca/dca_internal.h
   M /trunk/libdca/downmix.c
   M /trunk/libdca/parse.c
   M /trunk/libdca/tables.h
   M /trunk/src/dcadec.c
   M /trunk/test/globals

Complete API renaming

------------------------------------------------------------------------
r61 | courmisch | 2007-04-07 18:00:02 +0000 (Sat, 07 Apr 2007) | 2 lines
Changed paths:
   M /trunk/include/dca.h
   M /trunk/include/dts.h
   M /trunk/libao/audio_out_aif.c
   M /trunk/libao/audio_out_al.c
   M /trunk/libao/audio_out_float.c
   M /trunk/libao/audio_out_null.c
   M /trunk/libao/audio_out_oss.c
   M /trunk/libao/audio_out_peak.c
   M /trunk/libao/audio_out_solaris.c
   M /trunk/libao/audio_out_wav.c
   M /trunk/libao/audio_out_win.c
   M /trunk/libao/convert2s16.c
   M /trunk/libdca/dca_internal.h
   M /trunk/libdca/downmix.c
   M /trunk/libdca/parse.c
   M /trunk/src/dcadec.c

Update name of all constants

------------------------------------------------------------------------
r60 | courmisch | 2007-04-07 17:49:34 +0000 (Sat, 07 Apr 2007) | 2 lines
Changed paths:
   M /trunk/NEWS

Fix name

------------------------------------------------------------------------
r59 | courmisch | 2007-04-07 17:44:05 +0000 (Sat, 07 Apr 2007) | 2 lines
Changed paths:
   M /trunk/libdca/Makefile.am

Provide compat link for static linking

------------------------------------------------------------------------
r58 | courmisch | 2007-04-07 17:28:22 +0000 (Sat, 07 Apr 2007) | 2 lines
Changed paths:
   M /trunk/doc/libdca.txt
   M /trunk/include/dca.h
   M /trunk/include/dts.h
   M /trunk/libdca/bitstream.c
   M /trunk/libdca/bitstream.h
   M /trunk/libdca/dca_internal.h
   M /trunk/libdca/parse.c
   M /trunk/libdca/tables_huffman.h
   M /trunk/src/dcadec.c

Update state structure name while retaining API and ABI compatibility

------------------------------------------------------------------------
r57 | courmisch | 2007-04-07 12:43:16 +0000 (Sat, 07 Apr 2007) | 2 lines
Changed paths:
   M /trunk/libao/audio_out.c
   M /trunk/libao/audio_out_aif.c
   M /trunk/libao/audio_out_al.c
   M /trunk/libao/audio_out_float.c
   M /trunk/libao/audio_out_null.c
   M /trunk/libao/audio_out_oss.c
   M /trunk/libao/audio_out_peak.c
   M /trunk/libao/audio_out_solaris.c
   M /trunk/libao/audio_out_wav.c
   M /trunk/libao/audio_out_win.c
   M /trunk/libao/convert2s16.c
   M /trunk/libdca/bitstream.c
   M /trunk/libdca/downmix.c
   M /trunk/libdca/parse.c
   M /trunk/src/dcadec.c

Use dca.h

------------------------------------------------------------------------
r56 | courmisch | 2007-04-07 12:43:09 +0000 (Sat, 07 Apr 2007) | 2 lines
Changed paths:
   M /trunk/libdca/Makefile.am

Fix build

------------------------------------------------------------------------
r55 | courmisch | 2007-04-07 12:38:32 +0000 (Sat, 07 Apr 2007) | 2 lines
Changed paths:
   M /trunk/include/Makefile.am
   A /trunk/include/dca.h (from /trunk/include/dts.h:52)
   M /trunk/include/dts.h

Update public header file name and provide backward compatibility stub

------------------------------------------------------------------------
r54 | courmisch | 2007-04-07 12:34:33 +0000 (Sat, 07 Apr 2007) | 3 lines
Changed paths:
   M /trunk/src/Makefile.am
   A /trunk/src/dcadec.1 (from /trunk/src/dtsdec.1:52)
   D /trunk/src/dtsdec.1
   A /trunk/src/extract_dca.1 (from /trunk/src/extract_dts.1:52)
   D /trunk/src/extract_dts.1

- Rename manpages and provide symlinks
- Fix manpages referencing A52 instead of DTS

------------------------------------------------------------------------
r53 | courmisch | 2007-04-07 12:17:05 +0000 (Sat, 07 Apr 2007) | 2 lines
Changed paths:
   M /trunk/libdca/Makefile.am

Build fix

------------------------------------------------------------------------
r52 | courmisch | 2007-04-07 10:31:33 +0000 (Sat, 07 Apr 2007) | 2 lines
Changed paths:
   M /trunk/README

Update README

------------------------------------------------------------------------
r51 | courmisch | 2007-04-07 10:30:09 +0000 (Sat, 07 Apr 2007) | 2 lines
Changed paths:
   M /trunk/include/dts.h
   M /trunk/libao/audio_out_aif.c
   M /trunk/libao/audio_out_al.c
   M /trunk/libao/audio_out_float.c
   M /trunk/libao/audio_out_internal.h
   M /trunk/libao/audio_out_oss.c
   M /trunk/libao/audio_out_peak.c
   M /trunk/libao/audio_out_solaris.c
   M /trunk/libao/audio_out_wav.c
   M /trunk/libao/audio_out_win.c
   M /trunk/libao/convert2s16.c
   M /trunk/libdca/dca_internal.h
   M /trunk/vc++/config.h

Fix defines that were broken in previous commits

------------------------------------------------------------------------
r50 | courmisch | 2007-04-07 10:25:25 +0000 (Sat, 07 Apr 2007) | 2 lines
Changed paths:
   M /trunk/configure.ac
   M /trunk/libdca/configure.incl
   M /trunk/src/Makefile.am
   M /trunk/src/configure.incl
   M /trunk/test/Makefile.am

Update executables and CFLAGS name

------------------------------------------------------------------------
r49 | courmisch | 2007-04-07 10:11:08 +0000 (Sat, 07 Apr 2007) | 2 lines
Changed paths:
   M /trunk/libdca/Makefile.am
   M /trunk/libdca/bitstream.c
   A /trunk/libdca/dca_internal.h (from /trunk/libdca/dts_internal.h:48)
   M /trunk/libdca/downmix.c
   D /trunk/libdca/dts_internal.h
   M /trunk/libdca/parse.c
   M /trunk/src/Makefile.am
   A /trunk/src/dcadec.c (from /trunk/src/dtsdec.c:48)
   D /trunk/src/dtsdec.c
   A /trunk/src/extract_dca.c (from /trunk/src/extract_dts.c:48)
   D /trunk/src/extract_dts.c

Update internal file names

------------------------------------------------------------------------
r48 | courmisch | 2007-04-07 10:05:39 +0000 (Sat, 07 Apr 2007) | 2 lines
Changed paths:
   M /trunk/README
   M /trunk/include/dts.h
   M /trunk/libao/audio_out_wav.c
   M /trunk/libdca/bitstream.c
   M /trunk/libdca/bitstream.h
   M /trunk/libdca/downmix.c
   M /trunk/libdca/dts_internal.h
   M /trunk/libdca/parse.c
   M /trunk/libdca/tables.h
   M /trunk/libdca/tables_adpcm.h
   M /trunk/libdca/tables_fir.h
   M /trunk/libdca/tables_huffman.h
   M /trunk/libdca/tables_quantization.h
   M /trunk/libdca/tables_vq.h
   M /trunk/src/dtsdec.c
   M /trunk/src/extract_dts.c
   M /trunk/test/compare.c

More name and URL updates

------------------------------------------------------------------------
r47 | courmisch | 2007-04-07 09:53:30 +0000 (Sat, 07 Apr 2007) | 2 lines
Changed paths:
   M /trunk/include/dts.h
   M /trunk/libao/audio_out_wav.c
   M /trunk/libdca/bitstream.c
   M /trunk/libdca/bitstream.h
   M /trunk/libdca/downmix.c
   M /trunk/libdca/dts_internal.h
   M /trunk/libdca/parse.c
   M /trunk/libdca/tables.h
   M /trunk/libdca/tables_adpcm.h
   M /trunk/libdca/tables_fir.h
   M /trunk/libdca/tables_huffman.h
   M /trunk/libdca/tables_quantization.h
   M /trunk/libdca/tables_vq.h
   M /trunk/src/dtsdec.c
   M /trunk/src/extract_dts.c
   M /trunk/test/compare.c

Update project name and URL

------------------------------------------------------------------------
r46 | courmisch | 2007-04-06 18:09:46 +0000 (Fri, 06 Apr 2007) | 2 lines
Changed paths:
   M /trunk/configure.ac
   M /trunk/libdca/Makefile.am
   A /trunk/libdca/libdts.pc.in (from /trunk/libdca/libdca.pc.in:45)

Provide correct libdts.pc

------------------------------------------------------------------------
r45 | courmisch | 2007-04-06 18:05:11 +0000 (Fri, 06 Apr 2007) | 2 lines
Changed paths:
   M /trunk/Makefile.am
   M /trunk/configure.ac
   D /trunk/doc/Makefile.am
   A /trunk/doc/libdca.txt (from /trunk/doc/libdts.txt:43)
   D /trunk/doc/libdts.txt
   M /trunk/libdca
   A /trunk/libdca/libdca.pc.in (from /trunk/libdca/libdts.pc.in:44)
   D /trunk/libdca/libdts.pc.in
   M /trunk/src/Makefile.am

More renaming (partially brokn)

------------------------------------------------------------------------
r44 | courmisch | 2007-04-06 17:57:12 +0000 (Fri, 06 Apr 2007) | 2 lines
Changed paths:
   M /trunk/Makefile.am
   M /trunk/configure.ac
   A /trunk/libdca (from /trunk/libdts:43)
   M /trunk/libdca/Makefile.am
   D /trunk/libdts

Change package name to libdca

------------------------------------------------------------------------
r43 | courmisch | 2007-04-06 17:52:37 +0000 (Fri, 06 Apr 2007) | 2 lines
Changed paths:
   M /trunk/configure.ac
   M /trunk/include/Makefile.am
   M /trunk/libao/Makefile.am
   M /trunk/libdts/Makefile.am
   M /trunk/src/Makefile.am

Use libtool

------------------------------------------------------------------------
r42 | courmisch | 2007-04-06 17:41:15 +0000 (Fri, 06 Apr 2007) | 2 lines
Changed paths:
   M /trunk/bootstrap

Please welcome autoreconf

------------------------------------------------------------------------
r41 | courmisch | 2007-04-06 15:54:26 +0000 (Fri, 06 Apr 2007) | 2 lines
Changed paths:
   M /trunk/configure.ac

Fix CPU tuning flags (pointed out by M. Moriarty)

------------------------------------------------------------------------
r40 | courmisch | 2007-04-05 17:52:03 +0000 (Thu, 05 Apr 2007) | 2 lines
Changed paths:
   M /trunk/test/Makefile.am

Mark scripts as such

------------------------------------------------------------------------
r39 | courmisch | 2007-04-05 17:51:49 +0000 (Thu, 05 Apr 2007) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/configure.ac

News for libdca 0.0.3

------------------------------------------------------------------------
r38 | courmisch | 2007-04-05 17:47:53 +0000 (Thu, 05 Apr 2007) | 2 lines
Changed paths:
   M /trunk/configure.ac
   M /trunk/libao/Makefile.am
   M /trunk/src/Makefile.am

Automake fixes

------------------------------------------------------------------------
r37 | courmisch | 2007-04-05 17:46:34 +0000 (Thu, 05 Apr 2007) | 2 lines
Changed paths:
   M /trunk/test/regression

Handle directories with white spaces properly

------------------------------------------------------------------------
r36 | courmisch | 2007-04-05 17:38:21 +0000 (Thu, 05 Apr 2007) | 3 lines
Changed paths:
   M /trunk/bootstrap
   M /trunk/configure.ac

- Bump version number to 0.0.3
- Fix support for automake 1.10 and bump requirement to 1.7

------------------------------------------------------------------------
r35 | mru | 2006-10-29 23:53:41 +0000 (Sun, 29 Oct 2006) | 2 lines
Changed paths:
   M /trunk/src/dtsdec.c

fix typo in -s option handling

------------------------------------------------------------------------
r34 | courmisch | 2006-09-30 13:02:49 +0000 (Sat, 30 Sep 2006) | 2 lines
Changed paths:
   M /trunk/libao/audio_out_wav.c

Another incorrect type aliasing on big endian

------------------------------------------------------------------------
r33 | courmisch | 2006-09-30 12:53:39 +0000 (Sat, 30 Sep 2006) | 2 lines
Changed paths:
   M /trunk/libao/audio_out_wav.c

Fix previous commit

------------------------------------------------------------------------
r32 | courmisch | 2006-09-25 15:40:08 +0000 (Mon, 25 Sep 2006) | 2 lines
Changed paths:
   M /trunk/libao/audio_out_wav.c

Fix another aliasing bug

------------------------------------------------------------------------
r31 | courmisch | 2006-09-25 15:38:23 +0000 (Mon, 25 Sep 2006) | 2 lines
Changed paths:
   M /trunk/test/compile
   M /trunk/test/globals
   M /trunk/test/regression

Add missing execute bit

------------------------------------------------------------------------
r30 | courmisch | 2006-09-25 15:32:48 +0000 (Mon, 25 Sep 2006) | 2 lines
Changed paths:
   M /trunk/libdts/bitstream.h

Fix type-punning bug

------------------------------------------------------------------------
r29 | courmisch | 2006-09-25 15:11:17 +0000 (Mon, 25 Sep 2006) | 2 lines
Changed paths:
   M /trunk/libao/audio_out_oss.c

Merge FreeBSD-specific OSS patch from FreeBSD tree

------------------------------------------------------------------------
r28 | titer | 2004-07-23 12:20:07 +0000 (Fri, 23 Jul 2004) | 2 lines
Changed paths:
   M /trunk/configure.ac
   M /trunk/test/Makefile.am

 Added check for -lm

------------------------------------------------------------------------
r27 | gbazin | 2004-07-09 08:36:59 +0000 (Fri, 09 Jul 2004) | 1 line
Changed paths:
   M /trunk/libdts/parse.c
   M /trunk/libdts/tables.h
   M /trunk/libdts/tables_huffman.h

* ALL: shut-up compiler warnings (patch by Michael Roitzsch <mroi at users dot sourceforge dot net>).
------------------------------------------------------------------------
r26 | sam | 2004-07-05 09:26:48 +0000 (Mon, 05 Jul 2004) | 4 lines
Changed paths:
   M /trunk/bootstrap
   M /trunk/libdts/bitstream.c

  * bootstrap:
    + Run libtoolize before aclocal (when we eventually use libtool, of course).
    + Support automake 1.8.

------------------------------------------------------------------------
r24 | gbazin | 2004-02-29 12:25:40 +0000 (Sun, 29 Feb 2004) | 2 lines
Changed paths:
   M /trunk/ChangeLog

* ChangeLog: updated for the libdts-0.0.2 release.

------------------------------------------------------------------------
r23 | gbazin | 2004-02-29 12:04:29 +0000 (Sun, 29 Feb 2004) | 2 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/NEWS
   M /trunk/configure.ac

* ALL: release of libdts-0.0.2

------------------------------------------------------------------------
r22 | gbazin | 2004-02-29 11:43:19 +0000 (Sun, 29 Feb 2004) | 2 lines
Changed paths:
   M /trunk/libao/audio_out.c
   M /trunk/libao/audio_out_internal.h
   M /trunk/libao/audio_out_wav.c
   M /trunk/libao/convert2s16.c

* libao/*: modified wav audio_out to output float multichannel wav files.

------------------------------------------------------------------------
r21 | gbazin | 2004-02-25 20:44:33 +0000 (Wed, 25 Feb 2004) | 2 lines
Changed paths:
   M /trunk/vc++/inttypes.h
   M /trunk/vc++/libao.dsp

* vc++/inttypes.h, vc++/libao.dsp: msvc fixes, courtesy of John Adcock.

------------------------------------------------------------------------
r20 | gbazin | 2004-02-25 13:53:52 +0000 (Wed, 25 Feb 2004) | 3 lines
Changed paths:
   M /trunk/libdts/dts_internal.h
   M /trunk/vc++/libdts.dsp

* libdts/dts_internal.h: removed unused prototypes.
* vc++/libdts.dsp: include the right files (not tested).

------------------------------------------------------------------------
r19 | sam | 2004-02-25 13:03:33 +0000 (Wed, 25 Feb 2004) | 5 lines
Changed paths:
   M /trunk/bootstrap
   M /trunk/configure.ac
   M /trunk/debian/rules
   M /trunk/libdts/Makefile.am
   M /trunk/src/Makefile.am

  * configure.ac libdts/Makefile.am:
    + On non-MS systems, build libdts_pic.a in addition to libdts.a.
  * bootstrap:
    + Disabled libtool until we build a real shared library.

------------------------------------------------------------------------
r18 | sam | 2004-02-24 19:39:03 +0000 (Tue, 24 Feb 2004) | 7 lines
Changed paths:
   M /trunk/ChangeLog
   M /trunk/debian/changelog
   M /trunk/libdts/Makefile.am

  * libdts/Makefile.am:
    + Added missing tables_vq.h to the distributed files.
  * debian/changelog:
    + First Debian upload.
  * ChangeLog:
    + Generated a changelog using svn log -v.

------------------------------------------------------------------------
r17 | sam | 2004-02-24 19:30:41 +0000 (Tue, 24 Feb 2004) | 5 lines
Changed paths:
   M /trunk
   M /trunk/Makefile.am
   M /trunk/debian/Makefile.am
   D /trunk/debian/dirs
   M /trunk/debian/rules
   M /trunk/include/Makefile.am

  * include/Makefile.am:
    + Install dts.h directly into /usr/include.
  * debian/rules:
    + Updated accordingly.

------------------------------------------------------------------------
r16 | sam | 2004-02-24 19:17:59 +0000 (Tue, 24 Feb 2004) | 13 lines
Changed paths:
   M /trunk
   D /trunk/INSTALL
   M /trunk/Makefile.am
   M /trunk/README
   M /trunk/bootstrap
   A /trunk/configure.ac (from /trunk/configure.in:14)
   D /trunk/configure.in
   M /trunk/include
   D /trunk/include/config.h.in

  * configure.ac:
    + Renamed configure.in into configure.ac.
    + Renamed package to libdts (was dtsdec).
    + Put config.h into . instead of include/.
  * bootstrap:
    + Imported libdvdcss's bootstrap script (handles multiple automake
      installations).
  * Makefile.am:
    + Split SUBDIRS into SUBDIRS and DIST_SUBDIRS.
  * README:
    + Merged INSTALL into README.
    + Fixed a couple of URLs.

------------------------------------------------------------------------
r15 | sam | 2004-02-24 19:16:03 +0000 (Tue, 24 Feb 2004) | 3 lines
Changed paths:
   M /trunk/libdts/bitstream.c

  * bitstream.c:
    + Minor 64 bit fix.

------------------------------------------------------------------------
r14 | sam | 2004-02-24 17:15:46 +0000 (Tue, 24 Feb 2004) | 10 lines
Changed paths:
   M /trunk/bootstrap
   M /trunk/configure.in
   M /trunk/include
   M /trunk/libdts/Makefile.am
   M /trunk/src/Makefile.am

  * bootstrap:
    + Abort if any of the autotools fails.
    + Check for libtoolize's real name (can be glibtoolize under OS X).
    + Move ltmain.sh to autotools/ if libtoolize created it in '.'.
    + Call autoconf before autoheader and automake to avoid unnecessary calls
      to automake during the make process.
  * configure.in:
    + Use AM_CONFIG_HEADER instead of AC_CONFIG_HEADERS.
    + Substitute LIBAO_LIBS and LIBDTS_LIBS so that automake does not fail.

------------------------------------------------------------------------
r13 | sam | 2004-02-24 16:49:27 +0000 (Tue, 24 Feb 2004) | 3 lines
Changed paths:
   M /trunk/Makefile.am
   M /trunk/configure.in
   A /trunk/debian
   A /trunk/debian/Makefile.am
   A /trunk/debian/changelog
   A /trunk/debian/compat
   A /trunk/debian/control
   A /trunk/debian/copyright
   A /trunk/debian/dirs
   A /trunk/debian/rules

  * debian/*:
    + Added Debian packaging information.

------------------------------------------------------------------------
r12 | gbazin | 2004-02-23 22:37:39 +0000 (Mon, 23 Feb 2004) | 2 lines
Changed paths:
   M /trunk/src/dtsdec.c

* src/dtsdec.c: make sure we read enough data for dts_syncinfo().

------------------------------------------------------------------------
r11 | gbazin | 2004-02-13 17:57:21 +0000 (Fri, 13 Feb 2004) | 3 lines
Changed paths:
   M /trunk/ChangeLog
   M /trunk/NEWS
   M /trunk/TODO
   M /trunk/configure.in
   M /trunk/libdts/parse.c
   M /trunk/libdts/tables_adpcm.h
   M /trunk/libdts/tables_quantization.h
   A /trunk/libdts/tables_vq.h

* ALL: bumped version number to 0.0.2-svn
* libdts/parse.c, libdts/tables_vq.h: added support for high frequencies VQ.

------------------------------------------------------------------------
r10 | gbazin | 2004-02-11 18:01:25 +0000 (Wed, 11 Feb 2004) | 3 lines
Changed paths:
   M /trunk/README
   M /trunk/libdts/dts_internal.h

* README: remove useless line.
* libdts/dts_internal.h: fixed array size for high freq VQ.

------------------------------------------------------------------------
r9 | gbazin | 2004-02-11 17:58:49 +0000 (Wed, 11 Feb 2004) | 2 lines
Changed paths:
   M /trunk/test

* test: forgot the svn:ignore property for this directory.

------------------------------------------------------------------------
r8 | gbazin | 2004-02-11 17:57:53 +0000 (Wed, 11 Feb 2004) | 2 lines
Changed paths:
   M /trunk
   M /trunk/autotools
   M /trunk/doc
   M /trunk/include
   M /trunk/libao
   M /trunk/libdts
   M /trunk/src
   M /trunk/vc++

* ALL: added svn:ignore properties.

------------------------------------------------------------------------
r7 | bidon | 2004-02-08 20:49:14 +0000 (Sun, 08 Feb 2004) | 2 lines
Changed paths:
   M /trunk/ChangeLog
   M /trunk/NEWS

* ALL: 0.0.1 release

------------------------------------------------------------------------
r6 | bidon | 2004-02-08 19:54:41 +0000 (Sun, 08 Feb 2004) | 2 lines
Changed paths:
   M /trunk/ChangeLog
   M /trunk/NEWS
   M /trunk/README
   M /trunk/TODO
   M /trunk/configure.in
   M /trunk/include/dts.h
   M /trunk/libdts/bitstream.c
   M /trunk/libdts/bitstream.h
   M /trunk/libdts/downmix.c
   M /trunk/libdts/dts_internal.h
   M /trunk/libdts/parse.c
   M /trunk/libdts/tables.h
   M /trunk/libdts/tables_adpcm.h
   M /trunk/libdts/tables_fir.h
   M /trunk/libdts/tables_huffman.h
   M /trunk/libdts/tables_quantization.h
   M /trunk/src/dtsdec.c
   M /trunk/src/extract_dts.c
   M /trunk/test/compare.c

* ALL: preparing for the first release.

------------------------------------------------------------------------
r5 | gbazin | 2004-02-08 18:52:52 +0000 (Sun, 08 Feb 2004) | 2 lines
Changed paths:
   M /trunk/libdts/downmix.c
   M /trunk/libdts/parse.c

* libdts/downmix.c: a few correction to the input/output downmixing table.

------------------------------------------------------------------------
r4 | gbazin | 2004-02-08 14:21:23 +0000 (Sun, 08 Feb 2004) | 2 lines
Changed paths:
   M /trunk/libdts/parse.c

* libdts/parse.c: support for LFE channel.

------------------------------------------------------------------------
r3 | gbazin | 2004-02-08 01:50:58 +0000 (Sun, 08 Feb 2004) | 3 lines
Changed paths:
   M /trunk/libdts/dts_internal.h
   M /trunk/libdts/parse.c

* libdts/dts_internal.h: added debug flag and high freq VQ array.
* libdts/parse.c: make sure the VQ encoded high frequencies are initialised to 0 (we can't decode them for now).

------------------------------------------------------------------------
r2 | gbazin | 2004-02-06 22:34:19 +0000 (Fri, 06 Feb 2004) | 2 lines
Changed paths:
   M /trunk/libdts/bitstream.h

* libdts/bitstream.h: fixed stupid endianness mistake.

------------------------------------------------------------------------
r1 | gbazin | 2004-02-05 00:34:30 +0000 (Thu, 05 Feb 2004) | 2 lines
Changed paths:
   A /branches
   A /tags
   A /trunk
   A /trunk/AUTHORS
   A /trunk/COPYING
   A /trunk/ChangeLog
   A /trunk/INSTALL
   A /trunk/Makefile.am
   A /trunk/NEWS
   A /trunk/README
   A /trunk/TODO
   A /trunk/acinclude.m4
   A /trunk/autotools
   A /trunk/autotools/Makefile.am
   A /trunk/bootstrap
   A /trunk/configure.in
   A /trunk/doc
   A /trunk/doc/Makefile.am
   A /trunk/doc/libdts.txt
   A /trunk/include
   A /trunk/include/Makefile.am
   A /trunk/include/audio_out.h
   A /trunk/include/config.h.in
   A /trunk/include/dts.h
   A /trunk/include/tendra.h
   A /trunk/libao
   A /trunk/libao/Makefile.am
   A /trunk/libao/audio_out.c
   A /trunk/libao/audio_out_aif.c
   A /trunk/libao/audio_out_al.c
   A /trunk/libao/audio_out_float.c
   A /trunk/libao/audio_out_internal.h
   A /trunk/libao/audio_out_null.c
   A /trunk/libao/audio_out_oss.c
   A /trunk/libao/audio_out_peak.c
   A /trunk/libao/audio_out_solaris.c
   A /trunk/libao/audio_out_wav.c
   A /trunk/libao/audio_out_win.c
   A /trunk/libao/configure.incl
   A /trunk/libao/convert2s16.c
   A /trunk/libdts
   A /trunk/libdts/Makefile.am
   A /trunk/libdts/bitstream.c
   A /trunk/libdts/bitstream.h
   A /trunk/libdts/configure.incl
   A /trunk/libdts/downmix.c
   A /trunk/libdts/dts_internal.h
   A /trunk/libdts/libdts.pc.in
   A /trunk/libdts/parse.c
   A /trunk/libdts/tables.h
   A /trunk/libdts/tables_adpcm.h
   A /trunk/libdts/tables_fir.h
   A /trunk/libdts/tables_huffman.h
   A /trunk/libdts/tables_quantization.h
   A /trunk/src
   A /trunk/src/Makefile.am
   A /trunk/src/configure.incl
   A /trunk/src/dtsdec.1
   A /trunk/src/dtsdec.c
   A /trunk/src/extract_dts.1
   A /trunk/src/extract_dts.c
   A /trunk/src/getopt.c
   A /trunk/src/getopt.h
   A /trunk/src/gettimeofday.c
   A /trunk/src/gettimeofday.h
   A /trunk/test
   A /trunk/test/Makefile.am
   A /trunk/test/compare.c
   A /trunk/test/compile
   A /trunk/test/globals
   A /trunk/test/regression
   A /trunk/test/tests
   A /trunk/vc++
   A /trunk/vc++/Makefile.am
   A /trunk/vc++/config.h
   A /trunk/vc++/dtsdec.dsp
   A /trunk/vc++/dtsdec.dsw
   A /trunk/vc++/inttypes.h
   A /trunk/vc++/libao.dsp
   A /trunk/vc++/libdts.dsp

Inital import

------------------------------------------------------------------------