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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
|
------------------------------------------------------------------------
r251 | jb | 2012-03-11 13:33:49 +0000 (Sun, 11 Mar 2012) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/configure.ac
M /trunk/doc/doxygen.cfg.in
Prepare 1.2.12
------------------------------------------------------------------------
r250 | jb | 2012-03-11 12:37:40 +0000 (Sun, 11 Mar 2012) | 3 lines
Changed paths:
M /trunk/AUTHORS
Update Authors file
------------------------------------------------------------------------
r249 | jb | 2012-02-18 16:22:03 +0000 (Sat, 18 Feb 2012) | 4 lines
Changed paths:
M /trunk/src/css.c
If unsure, assume the drive is of RPC-I type
This can happen when patched drives do not answer to ioctl_ReportRPC correctly
------------------------------------------------------------------------
r247 | jb | 2011-11-14 10:40:05 +0000 (Mon, 14 Nov 2011) | 3 lines
Changed paths:
M /trunk/ChangeLog
Update Changelog
------------------------------------------------------------------------
r246 | jb | 2011-11-14 10:27:32 +0000 (Mon, 14 Nov 2011) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/configure.ac
M /trunk/doc/doxygen.cfg.in
M /trunk/msvc/config.h
Bumping version to 1.2.11
------------------------------------------------------------------------
r245 | jb | 2011-11-14 10:26:47 +0000 (Mon, 14 Nov 2011) | 3 lines
Changed paths:
M /trunk/INSTALL
M /trunk/README
Update README and INSTALL to be a bit less out-of-date
------------------------------------------------------------------------
r244 | jb | 2011-10-26 05:10:24 +0000 (Wed, 26 Oct 2011) | 3 lines
Changed paths:
M /trunk/Makefile.am
Fix "doc" Makefile target
------------------------------------------------------------------------
r243 | jb | 2011-10-26 05:01:11 +0000 (Wed, 26 Oct 2011) | 12 lines
Changed paths:
M /trunk/src/common.h
Win32: Drop #define of snprintf() to _snprintf() if the former is undefined.
This workaround was added for MinGW originally, but nowadays MinGW supports
snprintf() directly so it has become unnecessary.
Furthermore this can play havoc with Cygwin which does not have a _snprintf()
declaration and gives implicit function declaration warnings. Depending on
compiler flags, this can be a fatal error.
Patch by Diego Biurrun - diego at biurrun d0t de
------------------------------------------------------------------------
r242 | jb | 2011-10-26 04:59:23 +0000 (Wed, 26 Oct 2011) | 8 lines
Changed paths:
M /trunk/src/device.c
Win32: consistently use snprintf() instead of _snprintf()
Both functions are available on Cygwin and MinGW nowadays so there is
no need to be inconsistent anymore.
Patch by Diego Biurrun - diego at biurrun d0t de
------------------------------------------------------------------------
r241 | jb | 2011-08-16 10:41:24 +0000 (Tue, 16 Aug 2011) | 4 lines
Changed paths:
M /trunk/INSTALL
M /trunk/README
Fix typos in README and INSTALL
Patch by bryce, ref http://trac.videolan.org/vlc/ticket/5200
------------------------------------------------------------------------
r240 | jb | 2011-03-23 15:00:06 +0000 (Wed, 23 Mar 2011) | 3 lines
Changed paths:
M /trunk/src/libdvdcss.h
Remove excessive whitespace
------------------------------------------------------------------------
r239 | jb | 2011-03-23 14:59:36 +0000 (Wed, 23 Mar 2011) | 5 lines
Changed paths:
M /trunk/src/css.c
Fix a small memleak
Reported by Thélesphonse Bigorneault
------------------------------------------------------------------------
r238 | jb | 2011-02-09 22:48:29 +0000 (Wed, 09 Feb 2011) | 3 lines
Changed paths:
M /trunk/doc/doxygen.cfg.in
Update documentation version
------------------------------------------------------------------------
r237 | reimar | 2010-09-25 14:21:47 +0000 (Sat, 25 Sep 2010) | 3 lines
Changed paths:
M /trunk/src/libdvdcss.c
Ensure dvdcss->css.p_disc_key is always initialized,
even if _dvdcss_disckey fails.
------------------------------------------------------------------------
r236 | jb | 2010-08-02 15:59:13 +0000 (Mon, 02 Aug 2010) | 9 lines
Changed paths:
M /trunk/src/css.h
M /trunk/src/device.h
M /trunk/src/libdvdcss.h
Make libdvdcss headers self-sufficient
This patch adds required #includes to libdvdcss headers so that they can be used
without other headers as prerequisites.
This leaves out limits.h and stdint.h, for the moment, since they aren't on all systems.
Patch by Diego Biurrun - diego at biurrun d0t de
------------------------------------------------------------------------
r235 | jb | 2010-08-02 15:41:14 +0000 (Mon, 02 Aug 2010) | 8 lines
Changed paths:
M /trunk/src/common.h
M /trunk/src/css.h
M /trunk/src/csstables.h
M /trunk/src/device.h
M /trunk/src/ioctl.h
M /trunk/src/libdvdcss.h
Add multiple inclusion guards to header files
Most header files in libdvdcss lack multiple inclusion guards, although they are
a sensible thing to have for header files. This adds them where currently missing.
Patch by Diego Biurrun - diego at biurrun d0t de
------------------------------------------------------------------------
r234 | jb | 2010-08-02 15:38:08 +0000 (Mon, 02 Aug 2010) | 7 lines
Changed paths:
M /trunk/src/bsdi_dvd.h
Use filename as multiple inclusion guard
For some reason bsdi_dvd.h does not use the (full) filename as multiple
inclusion guard.
Patch by Diego Biurrun - diego at biurrun d0t de
------------------------------------------------------------------------
r233 | jb | 2010-08-02 14:04:16 +0000 (Mon, 02 Aug 2010) | 7 lines
Changed paths:
M /trunk/doc/doxygen.cfg.in
Shut up doxygen run
Doxygen is terribly verbose by default and spams the console with useless by
the metric ton. This patch makes its output more terse and thus more sensible.
Patch by Diego Biurrun - diego at biurrun d0t de
------------------------------------------------------------------------
r232 | jb | 2010-08-02 13:56:10 +0000 (Mon, 02 Aug 2010) | 4 lines
Changed paths:
M /trunk/src
svn:ignore src/libdvdcss.pc
As tipped by Diego
------------------------------------------------------------------------
r231 | jb | 2010-05-10 10:03:06 +0000 (Mon, 10 May 2010) | 5 lines
Changed paths:
M /trunk/src/css.c
Try other methods also if GetBusKey fails instead of failing completely
Patch from MPlayer, from Reimar Döffinger, forwarded by Diego Biurrun
------------------------------------------------------------------------
r230 | sam | 2009-09-02 22:07:32 +0000 (Wed, 02 Sep 2009) | 3 lines
Changed paths:
M /trunk/src/libdvdcss.c
M /trunk/src/libdvdcss.h
Remove the RPC-II sanity check and only issue a warning. Capable drives are
far too common.
------------------------------------------------------------------------
r229 | sam | 2009-09-02 22:01:07 +0000 (Wed, 02 Sep 2009) | 2 lines
Changed paths:
M /trunk/src/device.c
Use 64-bit IO and binary mode on OS/2. Patch courtesy of KO Myung-Hun.
------------------------------------------------------------------------
r228 | sam | 2009-05-13 21:28:53 +0000 (Wed, 13 May 2009) | 1 line
Changed paths:
M /trunk/src/css.c
Prepend 0x to the region mask for clarity.
------------------------------------------------------------------------
r227 | sam | 2009-05-13 21:00:31 +0000 (Wed, 13 May 2009) | 1 line
Changed paths:
M /trunk/src/libdvdcss.c
Duh, typo in the RPC-II sanity check.
------------------------------------------------------------------------
r226 | sam | 2009-05-13 20:54:40 +0000 (Wed, 13 May 2009) | 2 lines
Changed paths:
M /trunk/src/libdvdcss.c
M /trunk/src/libdvdcss.h
Add support for the DVDCSS_IGNORE_RPC environment variable in order to
bypass our new RPC-II sanity check.
------------------------------------------------------------------------
r225 | sam | 2009-05-13 20:54:39 +0000 (Wed, 13 May 2009) | 1 line
Changed paths:
M /trunk/src/css.c
Add a debug message in the copyright information retrieval.
------------------------------------------------------------------------
r224 | sam | 2009-05-13 20:54:37 +0000 (Wed, 13 May 2009) | 3 lines
Changed paths:
M /trunk/src/css.c
M /trunk/src/libdvdcss.c
Check drive's RPC status before trying to access a scrambled disc. Patch
provided by Ori Avtalion <ori@avtalion.name> and refactored by Sam Hocevar
<sam@hocevar.net>.
------------------------------------------------------------------------
r223 | sam | 2009-05-13 20:54:35 +0000 (Wed, 13 May 2009) | 1 line
Changed paths:
M /trunk/src/libdvdcss.c
Fix a potential format string crash.
------------------------------------------------------------------------
r221 | sam | 2009-02-09 00:45:44 +0000 (Mon, 09 Feb 2009) | 1 line
Changed paths:
M /trunk/src/css.c
M /trunk/src/device.c
M /trunk/src/error.c
M /trunk/src/ioctl.c
M /trunk/src/libdvdcss.c
Remove occurrences of "this program" from the license headers.
------------------------------------------------------------------------
r220 | sam | 2009-02-09 00:45:33 +0000 (Mon, 09 Feb 2009) | 1 line
Changed paths:
M /trunk/AUTHORS
M /trunk/configure.ac
M /trunk/src/device.c
M /trunk/src/device.h
M /trunk/src/libdvdcss.c
M /trunk/src/libdvdcss.h
Adding OS/2 support, courtesy of KO Myung-Hun <komh@chollian.net>.
------------------------------------------------------------------------
r219 | jb | 2009-02-09 00:03:47 +0000 (Mon, 09 Feb 2009) | 5 lines
Changed paths:
M /trunk/src/common.h
M /trunk/src/css.c
M /trunk/src/css.h
M /trunk/src/csstables.h
M /trunk/src/device.c
M /trunk/src/device.h
M /trunk/src/dvdcss/dvdcss.h
M /trunk/src/error.c
M /trunk/src/ioctl.c
M /trunk/src/ioctl.h
M /trunk/src/libdvdcss.c
M /trunk/src/libdvdcss.h
Update the FSF address.
Patch by Diego Biurrun
------------------------------------------------------------------------
r218 | sam | 2008-08-29 19:00:14 +0000 (Fri, 29 Aug 2008) | 2 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/NEWS
M /trunk/configure.ac
M /trunk/msvc/config.h
* Bump version number to 1.2.10.
* Update NEWS and ChangeLog.
------------------------------------------------------------------------
r217 | sam | 2008-08-29 18:57:52 +0000 (Fri, 29 Aug 2008) | 2 lines
Changed paths:
M /trunk/src/Makefile.am
* src/Makefile.am: bump the library minor version since we ship an extra
symbole (dvdcss_is_scrambled).
------------------------------------------------------------------------
r216 | sam | 2008-08-29 18:57:51 +0000 (Fri, 29 Aug 2008) | 1 line
Changed paths:
M /trunk/configure.ac
M /trunk/src/Makefile.am
A /trunk/src/libdvdcss.pc.in
* Ship a .pc file with the library.
------------------------------------------------------------------------
r215 | sam | 2008-08-29 18:57:48 +0000 (Fri, 29 Aug 2008) | 1 line
Changed paths:
M /trunk/libdvdcss.spec
M /trunk/src/common.h
M /trunk/src/css.c
M /trunk/src/device.h
M /trunk/src/dvdcss/dvdcss.h
M /trunk/src/error.c
M /trunk/src/ioctl.c
M /trunk/src/ioctl.h
M /trunk/src/libdvdcss.c
M /trunk/src/libdvdcss.h
M /trunk/test/csstest.c
* Update copyeight information here and there.
------------------------------------------------------------------------
r214 | sam | 2008-08-29 18:57:45 +0000 (Fri, 29 Aug 2008) | 3 lines
Changed paths:
A /trunk/.gitignore
M /trunk/bootstrap
M /trunk/configure.ac
* bootstrap: update bootstrapping script.
* configure.ac: hide autotools files in .auto/.
* .gitignore: add an ignore file for git-svn users.
------------------------------------------------------------------------
r213 | sam | 2008-08-29 18:57:42 +0000 (Fri, 29 Aug 2008) | 2 lines
Changed paths:
M /trunk/src/libdvdcss.c
* libdvdcss.c: ignore failure to get the disc key in case we have a
chance to decrypt anyway afterwards. Patch courtesy of Diego Biurrun.
------------------------------------------------------------------------
r212 | sam | 2008-07-13 12:52:22 +0000 (Sun, 13 Jul 2008) | 2 lines
Changed paths:
M /trunk/src/css.c
M /trunk/src/css.h
M /trunk/src/csstables.h
M /trunk/src/device.c
M /trunk/src/device.h
M /trunk/src/dvdcss/dvdcss.h
M /trunk/src/ioctl.c
M /trunk/src/libdvdcss.c
M /trunk/src/libdvdcss.h
* Convert all source code to UTF-8, or Doxygen will fail to generate proper
LaTeX documents.
------------------------------------------------------------------------
r211 | sam | 2008-07-13 12:52:19 +0000 (Sun, 13 Jul 2008) | 1 line
Changed paths:
M /trunk/doc/doxygen.cfg.in
* Update outdated Doxygen configuration file using doxygen -u.
------------------------------------------------------------------------
r210 | massiot | 2008-07-12 12:19:57 +0000 (Sat, 12 Jul 2008) | 5 lines
Changed paths:
M /trunk/src/css.c
M /trunk/src/libdvdcss.c
* src/libdvdcss.c: initialize p_disc_key in the case when DVD is encrypted
but no ioctl is available ;
* src/css.c: initialize p_disc_key in the case when key decryption fails.
Patch by Kirill Belokurov.
------------------------------------------------------------------------
r209 | massiot | 2008-07-11 17:23:25 +0000 (Fri, 11 Jul 2008) | 3 lines
Changed paths:
M /trunk/src/dvdcss/dvdcss.h
M /trunk/src/libdvdcss.c
* src/libdvdcss.c: add dvdcss_is_scrambled() function, patch courtesy of
Olivier Rolland.
------------------------------------------------------------------------
r208 | robux4 | 2008-01-07 16:48:35 +0000 (Mon, 07 Jan 2008) | 1 line
Changed paths:
M /trunk/src/dvdcss/dvdcss.h
nicer comment, patch by Diego Biurrun
------------------------------------------------------------------------
r207 | robux4 | 2007-09-17 12:10:20 +0000 (Mon, 17 Sep 2007) | 1 line
Changed paths:
M /trunk/src/bsdi_dvd.h
M /trunk/src/dvdcss/dvdcss.h
M /trunk/src/ioctl.h
(from Diego Biurrun) Identifiers starting with two underscores or an underscore and capital letters are reserved for the system in C.
------------------------------------------------------------------------
r206 | robux4 | 2007-09-17 12:07:41 +0000 (Mon, 17 Sep 2007) | 4 lines
Changed paths:
M /trunk/src/libdvdcss.c
(from Diego Biurrun) This patch removes the following warning when compiling MPlayer:
libdvdcss.c:145: warning: redundant redeclaration of 'dvdcss_interface_2'
dvdcss/dvdcss.h:70: warning: previous declaration of 'dvdcss_interface_2' was here
------------------------------------------------------------------------
r205 | robux4 | 2007-07-29 10:14:53 +0000 (Sun, 29 Jul 2007) | 7 lines
Changed paths:
M /trunk/src/libdvdcss.c
Pathc from iive (via Diego Biurrun)
Date: Sat Jul 7 01:22:51 2007
Fix crash on some DVDs
sprintf(tmp,"%.02x",(char)0xef); would print "ffffffef" instead of "ef",
in this case this leads to local array buffer overflow and hard to trace stack corruption.
The quick, easy & dirty solution is to use (unsigned char) or (uint8_t)
------------------------------------------------------------------------
r204 | xtophe | 2007-07-15 22:23:39 +0000 (Sun, 15 Jul 2007) | 2 lines
Changed paths:
M /trunk/bootstrap
support automake 1.10
------------------------------------------------------------------------
r203 | robux4 | 2006-11-07 16:27:40 +0000 (Tue, 07 Nov 2006) | 2 lines
Changed paths:
M /trunk/src/common.h
M /trunk/src/device.c
fix cygwin compilation regarding the lseek change
(patch by Diego Biurrun)
------------------------------------------------------------------------
r202 | robux4 | 2006-11-01 14:31:51 +0000 (Wed, 01 Nov 2006) | 2 lines
Changed paths:
M /trunk/src/common.h
fix compilation on MINGW (patch by Diego Biurrun)
(lseek vs lseek64 typo)
------------------------------------------------------------------------
r201 | sam | 2006-09-19 23:03:53 +0000 (Tue, 19 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/libdvdcss.c
* Fixed spelling in documentation. Also testing buildbot.
------------------------------------------------------------------------
r200 | sam | 2006-09-19 22:28:06 +0000 (Tue, 19 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/css.c
M /trunk/src/libdvdcss.c
* Fix warnings due to signed / unsigned pointer targets.
------------------------------------------------------------------------
r199 | sam | 2006-09-19 22:27:46 +0000 (Tue, 19 Sep 2006) | 2 lines
Changed paths:
M /trunk/bootstrap
* Update bootstrap script.
------------------------------------------------------------------------
r198 | robux4 | 2006-09-13 13:12:23 +0000 (Wed, 13 Sep 2006) | 4 lines
Changed paths:
M /trunk/src/libdvdcss.c
fallback to USERPROFILE environment variable for caching CSS keys when
HOME is not set (for MinGW builds running outside of MinGW).
patch from MPlayer via Diego Biurrun (diego at biurrun dot de)
------------------------------------------------------------------------
r197 | robux4 | 2006-09-13 13:11:25 +0000 (Wed, 13 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/device.c
now accepts X:\ as a device name, as well as X:
patch from MPlayer via Diego Biurrun (diego at biurrun dot de)
------------------------------------------------------------------------
r196 | sam | 2006-03-30 14:31:12 +0000 (Thu, 30 Mar 2006) | 2 lines
Changed paths:
M /trunk/configure.ac
* Oops, forgot to commit configure.ac when removing the debian/ directory.
------------------------------------------------------------------------
r195 | sam | 2006-03-30 14:30:43 +0000 (Thu, 30 Mar 2006) | 3 lines
Changed paths:
M /trunk/Makefile.am
D /trunk/debian
* Removed the debian/ directory. Debian packaging is now handled
separately, in the pkg-multimedia repository.
------------------------------------------------------------------------
r194 | sam | 2006-01-26 20:48:06 +0000 (Thu, 26 Jan 2006) | 3 lines
Changed paths:
M /trunk/src/device.c
* src/device.c: reduced code duplication and fixed a pointer/integer
confusion in the OS X drive detection.
------------------------------------------------------------------------
r193 | sam | 2005-11-09 22:12:32 +0000 (Wed, 09 Nov 2005) | 3 lines
Changed paths:
M /trunk/src/common.h
* src/common.h: do not override lseek on Cygwin, only on mingw32. Cygwin
provides its own 64-bit offset lseek. Patch courtesy of the MPlayer team.
------------------------------------------------------------------------
r192 | sam | 2005-10-26 16:58:08 +0000 (Wed, 26 Oct 2005) | 2 lines
Changed paths:
M /trunk/debian/control
* debian/control: build-depend on tetex-extra (needed by doxygen).
------------------------------------------------------------------------
r191 | robux4 | 2005-09-04 08:49:23 +0000 (Sun, 04 Sep 2005) | 1 line
Changed paths:
M /trunk/src/dvdcss/dvdcss.h
* libdvdcss: more fixes for DLL building
------------------------------------------------------------------------
r190 | robux4 | 2005-09-04 08:31:58 +0000 (Sun, 04 Sep 2005) | 1 line
Changed paths:
M /trunk/msvc/config.h
* libdvdcss: the current version is 1.2.9
------------------------------------------------------------------------
r189 | robux4 | 2005-09-04 08:31:26 +0000 (Sun, 04 Sep 2005) | 1 line
Changed paths:
M /trunk/src/device.c
* libdvdcss: MSVC7 compilation fixes (shouldn't break mingw32)
------------------------------------------------------------------------
r188 | robux4 | 2005-09-04 08:25:26 +0000 (Sun, 04 Sep 2005) | 1 line
Changed paths:
M /trunk/src/common.h
M /trunk/src/ioctl.h
M /trunk/src/libdvdcss.h
* libdvdcss: MSVC7 compilation fixes (shouldn't break mingw32)
------------------------------------------------------------------------
r187 | robux4 | 2005-09-04 07:54:41 +0000 (Sun, 04 Sep 2005) | 1 line
Changed paths:
M /trunk/src/dvdcss/dvdcss.h
M /trunk/src/libdvdcss.c
* libdvdcss: oops mismatch #ifdef
------------------------------------------------------------------------
r186 | robux4 | 2005-09-04 07:43:15 +0000 (Sun, 04 Sep 2005) | 1 line
Changed paths:
M /trunk/AUTHORS
M /trunk/COPYING
M /trunk/ChangeLog
M /trunk/INSTALL
M /trunk/Makefile.am
M /trunk/NEWS
M /trunk/README
M /trunk/debian/Makefile.am
M /trunk/doc/Makefile.am
M /trunk/doc/doxygen.cfg.in
M /trunk/doc/footer.html
M /trunk/doc/header.html
M /trunk/msvc/config.h
M /trunk/msvc/csstest.dsp
M /trunk/msvc/libdvdcss.dsp
M /trunk/msvc/workspace.dsw
M /trunk/src/Makefile.am
M /trunk/src/bsdi_dvd.h
M /trunk/src/bsdi_ioctl.c
M /trunk/src/common.h
M /trunk/src/css.c
M /trunk/src/css.h
M /trunk/src/csstables.h
M /trunk/src/device.c
M /trunk/src/device.h
M /trunk/src/dvdcss/Makefile.am
M /trunk/src/dvdcss/dvdcss.h
M /trunk/src/error.c
M /trunk/src/ioctl.c
M /trunk/src/ioctl.h
M /trunk/src/libdvdcss.c
M /trunk/src/libdvdcss.h
M /trunk/test/Makefile.am
M /trunk/test/csstest.c
M /trunk/test/dvd_region.c
* libdvdcss: set EOL style in SVN
------------------------------------------------------------------------
r185 | robux4 | 2005-09-04 07:39:37 +0000 (Sun, 04 Sep 2005) | 1 line
Changed paths:
M /trunk/src/dvdcss/dvdcss.h
* libdvdcss: better DLL/library difference
------------------------------------------------------------------------
r184 | robux4 | 2005-09-04 07:36:01 +0000 (Sun, 04 Sep 2005) | 1 line
Changed paths:
M /trunk/src/dvdcss/dvdcss.h
* libdvdcss: allow building DLL exports
------------------------------------------------------------------------
r183 | sam | 2005-09-03 13:17:55 +0000 (Sat, 03 Sep 2005) | 4 lines
Changed paths:
M /trunk/configure.ac
M /trunk/doc
M /trunk/test
* configure.ac: patch from Diego Pettenò to let the user disable the
documentation build.
* test doc: added missing svn:ignore entries.
------------------------------------------------------------------------
r182 | massiot | 2005-09-01 17:12:42 +0000 (Thu, 01 Sep 2005) | 2 lines
Changed paths:
M /trunk/bootstrap
* Revert [181] since it breaks on some OS X versions.
------------------------------------------------------------------------
r181 | massiot | 2005-09-01 12:40:25 +0000 (Thu, 01 Sep 2005) | 3 lines
Changed paths:
M /trunk/bootstrap
* bootstrap: Use libtoolize instead of glibtoolize when it is available
because libtool under OS X sucks.
------------------------------------------------------------------------
r180 | massiot | 2005-08-31 19:07:00 +0000 (Wed, 31 Aug 2005) | 2 lines
Changed paths:
M /trunk/src/device.c
* src/device.c: Under Windows remove the trailing backslash.
------------------------------------------------------------------------
r179 | sam | 2005-08-30 10:20:18 +0000 (Tue, 30 Aug 2005) | 2 lines
Changed paths:
M /trunk/configure.ac
M /trunk/src/Makefile.am
* configure.ac: forward -framework options to the linker.
------------------------------------------------------------------------
r178 | massiot | 2005-08-30 09:48:19 +0000 (Tue, 30 Aug 2005) | 2 lines
Changed paths:
M /trunk/src/device.c
* src/device.c: Fixed compilation under Darwin.
------------------------------------------------------------------------
r177 | sam | 2005-08-29 22:25:20 +0000 (Mon, 29 Aug 2005) | 2 lines
Changed paths:
M /trunk/src/device.c
* src/device.c: tried to port the device autodetection to OS X.
------------------------------------------------------------------------
r176 | sam | 2005-08-29 22:02:55 +0000 (Mon, 29 Aug 2005) | 3 lines
Changed paths:
M /trunk/src/device.c
M /trunk/src/device.h
M /trunk/src/libdvdcss.c
* src/device.c: if the target is the empty string, attempt to autodetect
the DVD drive instead of giving up.
------------------------------------------------------------------------
r175 | sam | 2005-08-23 16:15:38 +0000 (Tue, 23 Aug 2005) | 3 lines
Changed paths:
M /trunk/doc/Makefile.am
D /trunk/doc/doxygen.cfg
A /trunk/doc/doxygen.cfg.in (from /trunk/doc/doxygen.cfg:174)
* doc/Makefile.am: fixed build in a separate directory. Patch courtesy
of Bernard Leak with a few additions.
------------------------------------------------------------------------
r173 | sam | 2005-07-11 12:32:57 +0000 (Mon, 11 Jul 2005) | 2 lines
Changed paths:
M /trunk/ChangeLog
* Updated ChangeLog.
------------------------------------------------------------------------
r172 | sam | 2005-07-11 12:31:58 +0000 (Mon, 11 Jul 2005) | 2 lines
Changed paths:
M /trunk/src/Makefile.am
* src/Makefile.am: bumped libtool version information.
------------------------------------------------------------------------
r171 | sam | 2005-07-11 12:25:18 +0000 (Mon, 11 Jul 2005) | 2 lines
Changed paths:
M /trunk/debian/changelog
M /trunk/debian/control
* debian/*: updated Debian packaging information.
------------------------------------------------------------------------
r170 | sam | 2005-07-11 12:23:07 +0000 (Mon, 11 Jul 2005) | 2 lines
Changed paths:
M /trunk/src/css.c
* src/css.c: grmbl, compile fix.
------------------------------------------------------------------------
r169 | massiot | 2005-07-11 12:15:10 +0000 (Mon, 11 Jul 2005) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/configure.ac
M /trunk/debian/changelog
M /trunk/libdvdcss.spec
* Bumped up version number to 1.2.9.
------------------------------------------------------------------------
r168 | sam | 2005-07-11 12:10:43 +0000 (Mon, 11 Jul 2005) | 2 lines
Changed paths:
M /trunk/src/css.c
* src/css.c: reworked my verbosity patch to fix a compilation issue.
------------------------------------------------------------------------
r167 | sam | 2005-07-11 11:58:58 +0000 (Mon, 11 Jul 2005) | 3 lines
Changed paths:
M /trunk/src/ioctl.c
* src/ioctl.c: under Solaris, use libsmedia for ioctls when available. Code
reworked from a patch courtesy of the MPlayer team.
------------------------------------------------------------------------
r166 | sam | 2005-07-11 11:41:15 +0000 (Mon, 11 Jul 2005) | 3 lines
Changed paths:
M /trunk/src/bsdi_ioctl.c
* src/bsdi_ioctl.c: use memset instead of bzero. Patch courtesy of the
MPlayer team.
------------------------------------------------------------------------
r165 | sam | 2005-07-11 11:32:33 +0000 (Mon, 11 Jul 2005) | 3 lines
Changed paths:
M /trunk/src/device.c
M /trunk/src/ioctl.h
* src/device.c src/ioctl.h: cosmetic fix that uses real Win32 types for
dynamically loaded functions and gets rid of lvalue casts.
------------------------------------------------------------------------
r164 | sam | 2005-07-11 11:25:47 +0000 (Mon, 11 Jul 2005) | 2 lines
Changed paths:
M /trunk/src/css.c
* src/css.c: be slightly more verbose in which keys we manipulate.
------------------------------------------------------------------------
r163 | sam | 2005-07-11 11:22:33 +0000 (Mon, 11 Jul 2005) | 2 lines
Changed paths:
M /trunk/bootstrap
* bootstrap: allow to bootstrap with aclocal/automake version 1.9.
------------------------------------------------------------------------
r162 | gbazin | 2004-09-02 12:17:13 +0000 (Thu, 02 Sep 2004) | 1 line
Changed paths:
M /trunk/src/common.h
* src/common.h: use lseeki64 for file seeking on win32 (works above the 2.1G boundary).
------------------------------------------------------------------------
r161 | sam | 2004-08-13 13:53:27 +0000 (Fri, 13 Aug 2004) | 4 lines
Changed paths:
M /trunk/src/css.c
* src/css.c:
+ Save the cached key as ASCII in hexadecimal form.
+ Overwrite cached files if the data was invalid.
------------------------------------------------------------------------
r160 | sam | 2004-08-13 13:40:44 +0000 (Fri, 13 Aug 2004) | 4 lines
Changed paths:
M /trunk/src/libdvdcss.c
* src/libdvdcss.c:
+ Recreate the cache dir information on each launch, in case the
information it contains ever changes.
------------------------------------------------------------------------
r159 | sam | 2004-08-11 23:26:35 +0000 (Wed, 11 Aug 2004) | 2 lines
Changed paths:
M /trunk
M /trunk/Makefile.am
D /trunk/autotools
M /trunk/bootstrap
M /trunk/configure.ac
* Don't put autotools/ under revision control.
------------------------------------------------------------------------
r158 | sam | 2004-08-11 23:24:54 +0000 (Wed, 11 Aug 2004) | 2 lines
Changed paths:
D /trunk/autotools/Makefile.am
* Don't put autotools/ under revision control.
------------------------------------------------------------------------
r157 | sam | 2004-08-11 23:04:39 +0000 (Wed, 11 Aug 2004) | 2 lines
Changed paths:
M /trunk/libdvdcss.spec
* libdvdcss.spec: updated Red Hat rules for RH9.
------------------------------------------------------------------------
r156 | sam | 2004-08-11 22:59:42 +0000 (Wed, 11 Aug 2004) | 4 lines
Changed paths:
M /trunk/src/libdvdcss.c
* src/libdvdcss.c:
+ Support for cache directory tags, as proposed on
http://www.brynosaurus.com/cachedir/spec.html .
------------------------------------------------------------------------
r155 | sam | 2004-08-11 22:15:30 +0000 (Wed, 11 Aug 2004) | 6 lines
Changed paths:
M /trunk/AUTHORS
M /trunk/src/libdvdcss.c
* src/libdvdcss.c:
+ Append the disc key to the cache directory name to avoid issues with
identical discs which have different encryption keys, thanks to Sven
Heithecker.
+ Use - instead of # as a separator in the cache filename.
------------------------------------------------------------------------
r154 | sam | 2004-07-05 09:17:20 +0000 (Mon, 05 Jul 2004) | 2 lines
Changed paths:
M /trunk/bootstrap
* bootstrap: fixed a syntax error.
------------------------------------------------------------------------
r153 | sam | 2004-07-05 09:15:35 +0000 (Mon, 05 Jul 2004) | 4 lines
Changed paths:
M /trunk/bootstrap
* bootstrap:
+ Run libtoolize before aclocal.
+ Support automake 1.8.
------------------------------------------------------------------------
r152 | sam | 2004-02-24 15:47:00 +0000 (Tue, 24 Feb 2004) | 2 lines
Changed paths:
M /trunk
D /trunk/.cvsignore
M /trunk/NEWS
M /trunk/README
M /trunk/autotools
D /trunk/autotools/.cvsignore
M /trunk/bootstrap
M /trunk/debian
D /trunk/debian/.cvsignore
M /trunk/doc
D /trunk/doc/.cvsignore
M /trunk/doc/footer.html
M /trunk/doc/header.html
M /trunk/msvc
D /trunk/msvc/.cvsignore
M /trunk/src
D /trunk/src/.cvsignore
M /trunk/src/bsdi_dvd.h
M /trunk/src/common.h
M /trunk/src/css.c
M /trunk/src/css.h
M /trunk/src/csstables.h
M /trunk/src/device.c
M /trunk/src/device.h
M /trunk/src/dvdcss
D /trunk/src/dvdcss/.cvsignore
M /trunk/src/dvdcss/dvdcss.h
M /trunk/src/error.c
M /trunk/src/ioctl.c
M /trunk/src/ioctl.h
M /trunk/src/libdvdcss.c
M /trunk/src/libdvdcss.h
M /trunk/test
D /trunk/test/.cvsignore
* Added proper SVN keywords to files and directories (for $Id and ignores).
------------------------------------------------------------------------
r141 | sam | 2003-12-11 15:13:40 +0000 (Thu, 11 Dec 2003) | 3 lines
Changed paths:
M /trunk/doc/.cvsignore
M /trunk/doc/doxygen.cfg
* doc/doxygen.cfg: Updated doxygen configuration.
* doc/.cvsignore: Ignore stamp files.
------------------------------------------------------------------------
r140 | sam | 2003-12-11 15:12:42 +0000 (Thu, 11 Dec 2003) | 5 lines
Changed paths:
M /trunk/src/device.c
* src/device.c:
+ Store the off_t values for seek and read in a temporary variable to
work around a strange gentoo gcc behaviour as seen here:
http://www.via.ecp.fr/via/ml/libdvdcss-devel/200312/msg00000.html
------------------------------------------------------------------------
r139 | sam | 2003-11-26 20:16:38 +0000 (Wed, 26 Nov 2003) | 2 lines
Changed paths:
M /trunk/libdvdcss.spec
* libdvdcss.spec: Fixed a syntax error (#1488).
------------------------------------------------------------------------
r138 | sam | 2003-11-06 10:12:38 +0000 (Thu, 06 Nov 2003) | 2 lines
Changed paths:
M /trunk/bootstrap
* bootstrap: remove autom4te.cache before running autoconf
------------------------------------------------------------------------
r137 | sam | 2003-09-15 17:12:46 +0000 (Mon, 15 Sep 2003) | 2 lines
Changed paths:
M /trunk/src/css.c
M /trunk/src/libdvdcss.c
* libdvdcss.c: Added more debug messages.
------------------------------------------------------------------------
r136 | sam | 2003-09-09 13:17:24 +0000 (Tue, 09 Sep 2003) | 2 lines
Changed paths:
M /trunk/configure.ac
M /trunk/src/css.c
M /trunk/src/device.c
* src/css.c, src/device.c: more meaningful error messages.
------------------------------------------------------------------------
r135 | sam | 2003-09-09 12:32:40 +0000 (Tue, 09 Sep 2003) | 4 lines
Changed paths:
M /trunk/.cvsignore
M /trunk/Makefile.am
M /trunk/NEWS
M /trunk/README
M /trunk/configure.ac
M /trunk/debian/Makefile.am
M /trunk/debian/changelog
A /trunk/debian/compat
M /trunk/debian/control
M /trunk/debian/rules
M /trunk/doc/Makefile.am
M /trunk/doc/footer.html
M /trunk/doc/header.html
M /trunk/test/csstest.c
* configure.ac: check for doxygen and latex to build documentation.
* doc/Makefile.am: conditionally build documentation.
* debian/*: use debian/compat instead of DH_COMPAT.
------------------------------------------------------------------------
r134 | sam | 2003-09-09 12:05:44 +0000 (Tue, 09 Sep 2003) | 2 lines
Changed paths:
M /trunk/bootstrap
* bootstrap: code clean-up.
------------------------------------------------------------------------
r133 | sam | 2003-09-09 10:03:48 +0000 (Tue, 09 Sep 2003) | 3 lines
Changed paths:
M /trunk/src/css.c
M /trunk/src/device.c
M /trunk/src/error.c
M /trunk/src/libdvdcss.c
M /trunk/src/libdvdcss.h
* Changed _dvdcss_error and _dvdcss_debug to print_error and print_debug
because they aren't libdvdcss functions.
------------------------------------------------------------------------
r132 | gbazin | 2003-07-29 19:49:13 +0000 (Tue, 29 Jul 2003) | 3 lines
Changed paths:
M /trunk/NEWS
* NEWS: forgot to update this one for the release.
------------------------------------------------------------------------
r131 | gbazin | 2003-07-29 19:03:02 +0000 (Tue, 29 Jul 2003) | 3 lines
Changed paths:
M /trunk/libdvdcss.spec
* libdvdcss.spec: fixed typo.
------------------------------------------------------------------------
r130 | gbazin | 2003-07-28 23:41:52 +0000 (Mon, 28 Jul 2003) | 3 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/configure.ac
M /trunk/debian/changelog
M /trunk/libdvdcss.spec
* ALL: bumped version number to 1.2.8
------------------------------------------------------------------------
r129 | sam | 2003-07-16 21:40:01 +0000 (Wed, 16 Jul 2003) | 7 lines
Changed paths:
M /trunk/src/css.c
* src/css.c:
+ Workaround in CrackTitleKey for strange discs that report read errors
seemingly at random. Testcase was on Linux 2.4.20, with a region 2 RPC2
drive, and the region 1 copy of "Chasing Amy".
+ Used macros instead of numerals where appropriate.
+ Fixed spelling here and there.
------------------------------------------------------------------------
r128 | gbazin | 2003-07-08 18:00:54 +0000 (Tue, 08 Jul 2003) | 3 lines
Changed paths:
M /trunk/src/device.c
* src/device.c: grmblgrmbl!! Fixed a bug that prevented encrypted dvds from working under win32.
------------------------------------------------------------------------
r127 | massiot | 2003-06-22 20:59:45 +0000 (Sun, 22 Jun 2003) | 2 lines
Changed paths:
M /trunk/src/Makefile.am
* Updated library version.
------------------------------------------------------------------------
r126 | sam | 2003-06-18 17:23:55 +0000 (Wed, 18 Jun 2003) | 2 lines
Changed paths:
M /trunk/src/libdvdcss.c
* ./src/libdvdcss.c: if DVDCSS_VERBOSE is greater than 2, do as if it was 2.
------------------------------------------------------------------------
r125 | sam | 2003-06-13 00:41:35 +0000 (Fri, 13 Jun 2003) | 12 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/NEWS
M /trunk/configure.ac
M /trunk/debian/changelog
M /trunk/debian/control
M /trunk/debian/rules
M /trunk/libdvdcss.spec
* Everything is ready for a 1.2.7 release.
* debian/control:
+ Set policy to 3.5.10.
+ Removed the leading "a" in the package description.
+ Set the source section to libs.
+ Set the -dev package section to libdevel.
+ Changed the debhelper build dependency to (>=3.0).
* debian/rules:
+ Added magic to avoid autotools timestamp skews on autobuilders (as if
libdvdcss was ever going to hit the Debian autobuilders anyway).
------------------------------------------------------------------------
r124 | sam | 2003-06-12 23:22:34 +0000 (Thu, 12 Jun 2003) | 6 lines
Changed paths:
M /trunk/src/libdvdcss.c
* ./src/libdvdcss.c: if DVDCSS_CACHE is not set, we force a default value.
- under Win32: C:\Documents and Settings\$USER\Application Data\dvdcss\
- under Unix and everything else: ${HOME}/.dvdcss/
- the special value DVDCSS_CACHE=off disables caching.
* ./src/libdvdcss.c: updated doxygen documentation accordingly.
------------------------------------------------------------------------
r123 | sam | 2003-06-12 23:15:18 +0000 (Thu, 12 Jun 2003) | 3 lines
Changed paths:
M /trunk/Makefile.am
M /trunk/configure.ac
* ./Makefile.am: put autotools/ in DIST_SUBDIRS instead of SUBDIRS.
* ./configure.ac: forgot to generate autotools/Makefile.
------------------------------------------------------------------------
r122 | sam | 2003-06-10 22:50:31 +0000 (Tue, 10 Jun 2003) | 4 lines
Changed paths:
M /trunk/Makefile.am
A /trunk/autotools
A /trunk/autotools/.cvsignore
A /trunk/autotools/Makefile.am
M /trunk/bootstrap
M /trunk/configure.ac
* ./configure.ac: make use of the autotools/ directory.
* ./bootstrap: libfool is a tool. Worked around its blatant ignorance of
the AC_CONFIG_AUX_DIR directive.
------------------------------------------------------------------------
r121 | sam | 2003-05-27 17:12:33 +0000 (Tue, 27 May 2003) | 4 lines
Changed paths:
M /trunk/debian/changelog
M /trunk/debian/control
* ./debian/control: removed libc6-dev from libdvdcss2-dev's dependencies
because it is part of build-essential and it isn't even called libc6-dev
on all architectures.
------------------------------------------------------------------------
r120 | sam | 2003-05-16 22:12:48 +0000 (Fri, 16 May 2003) | 2 lines
Changed paths:
M /trunk/src/css.c
* ./src/css.c: typos in comments.
------------------------------------------------------------------------
r119 | gbazin | 2003-04-11 10:00:29 +0000 (Fri, 11 Apr 2003) | 3 lines
Changed paths:
M /trunk/configure.ac
M /trunk/src/common.h
* configure.ac, src/common.h: fixes for the cygwin build using the mno-cygwin flag.
------------------------------------------------------------------------
r118 | yves | 2003-04-06 20:36:07 +0000 (Sun, 06 Apr 2003) | 2 lines
Changed paths:
M /trunk/libdvdcss.spec
better RH part thx Kipp Cannon <kipp@sgl.crestech.ca>
------------------------------------------------------------------------
r117 | gbazin | 2003-03-27 18:57:12 +0000 (Thu, 27 Mar 2003) | 3 lines
Changed paths:
M /trunk/src/libdvdcss.c
* src/libdvdcss.c: CSS key cache collisions patch, courtesy of Michael Roitzsch.
------------------------------------------------------------------------
r116 | gbazin | 2003-03-22 16:37:37 +0000 (Sat, 22 Mar 2003) | 3 lines
Changed paths:
M /trunk/src/libdvdcss.c
* src/libdvdcss.c: fix for NetBSD's mkdir that doesn't like trailing "/" on its argument. (courtesy of Christopher Richards)
------------------------------------------------------------------------
r115 | sam | 2003-03-10 18:01:40 +0000 (Mon, 10 Mar 2003) | 3 lines
Changed paths:
M /trunk/debian/changelog
M /trunk/src/Makefile.am
* ./debian/changelog: updated Debian changelog.
* ./src/Makefile.am: bumped version information.
------------------------------------------------------------------------
r114 | alexis | 2003-03-10 17:41:31 +0000 (Mon, 10 Mar 2003) | 2 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/libdvdcss.spec
- preparing the 1.2.6 release...
------------------------------------------------------------------------
r113 | massiot | 2003-03-09 23:50:42 +0000 (Sun, 09 Mar 2003) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/configure.ac
Bumped up to 1.2.6.
------------------------------------------------------------------------
r112 | gbazin | 2003-03-09 23:34:18 +0000 (Sun, 09 Mar 2003) | 3 lines
Changed paths:
M /trunk/src/common.h
M /trunk/src/error.c
* src/common.h, src/error.c: fixed the PATH_MAX breakage on win32.
------------------------------------------------------------------------
r111 | massiot | 2003-02-04 11:54:36 +0000 (Tue, 04 Feb 2003) | 2 lines
Changed paths:
M /trunk/src/css.c
M /trunk/src/device.c
M /trunk/src/error.c
Fixed compilation problems with PATH_MAX.
------------------------------------------------------------------------
r110 | massiot | 2003-01-29 22:59:35 +0000 (Wed, 29 Jan 2003) | 2 lines
Changed paths:
M /trunk/configure.ac
M /trunk/src/libdvdcss.c
Fixed MAX_PATH on Darwin.
------------------------------------------------------------------------
r109 | yves | 2003-01-28 07:58:22 +0000 (Tue, 28 Jan 2003) | 3 lines
Changed paths:
M /trunk/libdvdcss.spec
- release number is 1. do not forget to update it too, aka sam sux.
- fix a redhat "macro".
------------------------------------------------------------------------
r108 | sam | 2003-01-28 01:17:02 +0000 (Tue, 28 Jan 2003) | 6 lines
Changed paths:
M /trunk/ChangeLog
A /trunk/NEWS
M /trunk/configure.ac
M /trunk/debian/changelog
M /trunk/debian/rules
M /trunk/doc/doxygen.cfg
M /trunk/libdvdcss.spec
M /trunk/src/Makefile.am
M /trunk/test/Makefile.am
* updated ChangeLog.
* updated version numbers and timestamps everywhere.
* created NEWS file.
* ./configure.ac: BSD/OS compilation fix when a local copy of libdvd is
found on the system, thanks to Steven M. Schultz.
------------------------------------------------------------------------
r107 | sam | 2003-01-28 00:41:10 +0000 (Tue, 28 Jan 2003) | 3 lines
Changed paths:
M /trunk/src/libdvdcss.c
M /trunk/test/csstest.c
* ./test/csstest.c: we align our read buffer in case of raw device access.
* ./src/libdvdcss.c: updated documentation about raw devices.
------------------------------------------------------------------------
r106 | sam | 2003-01-27 16:57:19 +0000 (Mon, 27 Jan 2003) | 2 lines
Changed paths:
M /trunk/src/libdvdcss.c
* ./src/libdvdcss.c: disabled key cache when reading VOBs.
------------------------------------------------------------------------
r105 | sam | 2003-01-16 22:58:29 +0000 (Thu, 16 Jan 2003) | 2 lines
Changed paths:
M /trunk/src/ioctl.c
M /trunk/src/ioctl.h
* ./src/ioctl.c, ./src/ioctl.h: removed minor gcc-isms.
------------------------------------------------------------------------
r104 | yves | 2003-01-16 14:45:14 +0000 (Thu, 16 Jan 2003) | 3 lines
Changed paths:
M /trunk/libdvdcss.spec
* macros to fix build on redhat system. put %define redhat80 to 1.
* few fixes.
------------------------------------------------------------------------
r103 | sam | 2002-12-19 16:50:50 +0000 (Thu, 19 Dec 2002) | 4 lines
Changed paths:
M /trunk/src/device.c
* ./src/device.c: seek() calls don't do anything if we're already at the
right position.
* ./src/device.c: we now handle partial reads.
------------------------------------------------------------------------
r102 | sam | 2002-12-19 15:44:30 +0000 (Thu, 19 Dec 2002) | 2 lines
Changed paths:
M /trunk/configure.ac
M /trunk/src/css.c
M /trunk/src/libdvdcss.c
* ./configure.ac: added warning flags whenever possible.
------------------------------------------------------------------------
r101 | sam | 2002-12-19 15:36:04 +0000 (Thu, 19 Dec 2002) | 3 lines
Changed paths:
M /trunk/configure.ac
M /trunk/src/device.c
M /trunk/src/libdvdcss.h
* ./src/device.c: dvdcss->i_pos now gets updated on each seek and each
read. Partial reads are not handled yet, but it's a step.
------------------------------------------------------------------------
r100 | sam | 2002-12-19 15:29:53 +0000 (Thu, 19 Dec 2002) | 3 lines
Changed paths:
M /trunk/src/bsdi_dvd.h
M /trunk/src/bsdi_ioctl.c
* ./src/bsdi_ioctl.c, ./src/bsdi_dvd.h: updated the bsdi libdvd with
Steven M. Schultz's latest changes.
------------------------------------------------------------------------
r99 | sam | 2002-12-19 12:37:30 +0000 (Thu, 19 Dec 2002) | 2 lines
Changed paths:
M /trunk/configure.ac
M /trunk/msvc/config.h
M /trunk/src/device.c
M /trunk/src/device.h
M /trunk/src/libdvdcss.c
M /trunk/src/libdvdcss.h
* Ported the library build to Cygwin.
------------------------------------------------------------------------
r98 | sam | 2002-12-11 13:12:10 +0000 (Wed, 11 Dec 2002) | 2 lines
Changed paths:
M /trunk/src/bsdi_dvd.h
M /trunk/src/bsdi_ioctl.c
M /trunk/src/device.c
M /trunk/src/dvdcss/dvdcss.h
M /trunk/src/libdvdcss.c
* minor coding style fixes.
------------------------------------------------------------------------
r97 | sam | 2002-12-10 10:43:25 +0000 (Tue, 10 Dec 2002) | 2 lines
Changed paths:
M /trunk/msvc/csstest.dsp
M /trunk/msvc/libdvdcss.dsp
M /trunk/msvc/workspace.dsw
* ./msvc/*: grmbl, for some reason the project files were empty.
------------------------------------------------------------------------
r96 | sam | 2002-12-10 10:38:12 +0000 (Tue, 10 Dec 2002) | 2 lines
Changed paths:
M /trunk/configure.ac
A /trunk/msvc
A /trunk/msvc/.cvsignore
A /trunk/msvc/config.h
A /trunk/msvc/csstest.dsp
A /trunk/msvc/libdvdcss.dsp
A /trunk/msvc/workspace.dsw
M /trunk/src/device.c
M /trunk/src/libdvdcss.c
M /trunk/test/csstest.c
* ./msvc/*: MS VC++ project files.
------------------------------------------------------------------------
r95 | babal | 2002-12-06 00:16:57 +0000 (Fri, 06 Dec 2002) | 3 lines
Changed paths:
M /trunk/src/css.c
M /trunk/src/device.c
M /trunk/src/error.c
M /trunk/src/libdvdcss.c
- Early versions of Mingw32 (at least until 1.2) do not include
<limits.h> automatically, so PATH_MAX was undefined.
------------------------------------------------------------------------
r94 | sam | 2002-12-05 10:24:42 +0000 (Thu, 05 Dec 2002) | 4 lines
Changed paths:
M /trunk/configure.ac
M /trunk/src/common.h
M /trunk/src/css.c
M /trunk/src/css.h
M /trunk/src/csstables.h
M /trunk/src/device.c
M /trunk/src/device.h
M /trunk/src/error.c
M /trunk/src/ioctl.c
M /trunk/src/ioctl.h
M /trunk/src/libdvdcss.c
M /trunk/src/libdvdcss.h
* ./src/libdvdcss.c: fixed Win32 mkdir() call.
* ALL: removed trailing spaces in files.
* ALL: moved everything to C99 integer types.
------------------------------------------------------------------------
r93 | sam | 2002-12-02 12:58:23 +0000 (Mon, 02 Dec 2002) | 2 lines
Changed paths:
M /trunk/bootstrap
* ./bootstrap: we also look for glibtoolize (Closes: #37).
------------------------------------------------------------------------
r92 | jlj | 2002-12-02 07:38:21 +0000 (Mon, 02 Dec 2002) | 2 lines
Changed paths:
M /trunk/src/device.h
./src/device.h: Applied FreeBSD compile fix from Steven M. Schultz.
------------------------------------------------------------------------
r91 | jlj | 2002-11-25 18:44:31 +0000 (Mon, 25 Nov 2002) | 3 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/src/ioctl.c
M /trunk/src/ioctl.h
M /trunk/test/dvd_region.c
* ./src/ioctl.[ch]: Implemented ioctl_SendRPC.
* ./test/dvd_region.c: enabled set_region.
------------------------------------------------------------------------
r90 | sam | 2002-11-24 17:34:23 +0000 (Sun, 24 Nov 2002) | 3 lines
Changed paths:
M /trunk/src/css.c
M /trunk/src/device.c
M /trunk/src/error.c
M /trunk/src/libdvdcss.c
M /trunk/src/libdvdcss.h
* ./src/css.c, ./src/libdvdcss.c: applied a patch from the MPlayer folks
to cache title keys on disk.
------------------------------------------------------------------------
r89 | sam | 2002-11-21 12:13:20 +0000 (Thu, 21 Nov 2002) | 3 lines
Changed paths:
M /trunk/debian/control
* ./debian/control: set the package sections to libs and devel instead of
graphics.
------------------------------------------------------------------------
r88 | alexis | 2002-11-17 23:46:44 +0000 (Sun, 17 Nov 2002) | 6 lines
Changed paths:
M /trunk/libdvdcss.spec
Changes in order to support RedHat and RPM 4.1 (courtesy of Ryurick
Hristev and Kenton Groombridge).
I have already uploaded new RPM packages on the FTP site (1.2.4-2) and
updated the download page. Please test and give feedback.
------------------------------------------------------------------------
r87 | jlj | 2002-11-15 18:39:08 +0000 (Fri, 15 Nov 2002) | 2 lines
Changed paths:
M /trunk/src/ioctl.c
M /trunk/src/ioctl.h
* ./src/ioctl.[ch]: ReportRPC win32 changes. Needs testing.
------------------------------------------------------------------------
r86 | gbazin | 2002-11-14 15:12:34 +0000 (Thu, 14 Nov 2002) | 3 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/debian/changelog
M /trunk/libdvdcss.spec
* updated the changelogs for the 1.2.4 release.
------------------------------------------------------------------------
r85 | sam | 2002-11-14 12:41:47 +0000 (Thu, 14 Nov 2002) | 6 lines
Changed paths:
M /trunk/bootstrap
M /trunk/configure.ac
M /trunk/libdvdcss.spec
* ./configure.ac: explicitly set AC_CONFIG_AUX_DIR(.) so that people who
do bootstrap without paying attention to error messages don't screw up
packages :-)
* ./libdvdcss.spec: removed bootstrap from the build phase.
* ./bootstrap: we accept automake 1.7.
------------------------------------------------------------------------
r84 | gbazin | 2002-11-14 12:38:57 +0000 (Thu, 14 Nov 2002) | 9 lines
Changed paths:
M /trunk/src/css.c
M /trunk/src/ioctl.c
* src/css.c src/ioctl.c, src/libdvdcss.c: changed the work-around to detect
if the dvd is encrypted on Win2K in non-administrator mode.
Because we cannot use an ioctl to get the copyright status of the DVD,
we try to get the disc key and if this succeed, we assume the DVD is
encrypted, otherwise we assume it to be unencrypted.
I hope this logic is not too much flawed... at least it seems to be working
with the few DVDs I've got.
------------------------------------------------------------------------
r83 | jlj | 2002-11-14 01:32:37 +0000 (Thu, 14 Nov 2002) | 2 lines
Changed paths:
M /trunk/src/ioctl.c
* ./src/ioctl.c: Broke OpenBSD port with my previous commit. Fixed.
------------------------------------------------------------------------
r82 | alexis | 2002-11-13 23:43:01 +0000 (Wed, 13 Nov 2002) | 3 lines
Changed paths:
M /trunk/libdvdcss.spec
Added ./bootstrap for the build target
------------------------------------------------------------------------
r81 | gbazin | 2002-11-13 23:08:11 +0000 (Wed, 13 Nov 2002) | 3 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/debian/changelog
M /trunk/libdvdcss.spec
* update changelogs.
------------------------------------------------------------------------
r80 | jlj | 2002-11-13 22:45:05 +0000 (Wed, 13 Nov 2002) | 3 lines
Changed paths:
M /trunk/AUTHORS
M /trunk/src/ioctl.c
* ./src/ioctl.c: cosmetic fixes.
* ./AUTHORS: updated my entry.
------------------------------------------------------------------------
r79 | alexis | 2002-11-13 22:24:41 +0000 (Wed, 13 Nov 2002) | 3 lines
Changed paths:
M /trunk/configure.ac
Update version number to 1.2.4
------------------------------------------------------------------------
r78 | alexis | 2002-11-13 22:14:28 +0000 (Wed, 13 Nov 2002) | 2 lines
Changed paths:
M /trunk/libdvdcss.spec
Update for 1.2.4 release.
------------------------------------------------------------------------
r77 | sam | 2002-11-13 22:11:38 +0000 (Wed, 13 Nov 2002) | 3 lines
Changed paths:
M /trunk/debian/changelog
Updated Debian changelog (though there are no changes in this version
apart from Win32, so what's the point of building new packages :p)
------------------------------------------------------------------------
r76 | gbazin | 2002-11-13 21:23:08 +0000 (Wed, 13 Nov 2002) | 3 lines
Changed paths:
M /trunk/ChangeLog
* ChangeLog: updated changelog.
------------------------------------------------------------------------
r75 | gbazin | 2002-10-29 18:51:37 +0000 (Tue, 29 Oct 2002) | 4 lines
Changed paths:
M /trunk/src/ioctl.c
* src/ioctl.c: fixed typo that prevented unencrypted DVDs to work in
non-administrator mode.
------------------------------------------------------------------------
r74 | gbazin | 2002-10-19 09:53:33 +0000 (Sat, 19 Oct 2002) | 4 lines
Changed paths:
M /trunk/src/device.c
M /trunk/src/ioctl.h
* src/device.c, src/ioctl.h: on win9x, when using ASPI, make sure the drive
we are trying to open is actually a cdrom/dvdrom drive.
------------------------------------------------------------------------
r73 | sam | 2002-10-18 18:48:59 +0000 (Fri, 18 Oct 2002) | 5 lines
Changed paths:
M /trunk/src/css.c
M /trunk/src/device.c
M /trunk/src/device.h
M /trunk/src/libdvdcss.c
M /trunk/src/libdvdcss.h
* ./src/device.c: split the open, read and seek functions so that we can
use function pointers instead of doing the if(WIN2K) test.
* ./src/device.c: if the target is not a drive name such as F:, we open
it with the standard libc functions, even under Win32.
------------------------------------------------------------------------
r72 | massiot | 2002-10-12 23:02:49 +0000 (Sat, 12 Oct 2002) | 2 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/debian/changelog
M /trunk/libdvdcss.spec
Updated changelog and release tag.
------------------------------------------------------------------------
r71 | gbazin | 2002-10-12 12:41:24 +0000 (Sat, 12 Oct 2002) | 4 lines
Changed paths:
M /trunk/src/ioctl.c
M /trunk/src/ioctl.h
* src/ioctl.c, src/ioctl.h: fix in ioctl_ReadCopyright to try to work around
the buggy IOCTL_DVD_READ_STRUCTURE on WinNT/2k/XP.
------------------------------------------------------------------------
r70 | sam | 2002-10-11 10:09:56 +0000 (Fri, 11 Oct 2002) | 2 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/debian/changelog
M /trunk/libdvdcss.spec
* Updated changelog and package files.
------------------------------------------------------------------------
r69 | sam | 2002-10-11 10:03:48 +0000 (Fri, 11 Oct 2002) | 6 lines
Changed paths:
M /trunk/.cvsignore
M /trunk/Makefile.am
D /trunk/NEWS
M /trunk/bootstrap
A /trunk/configure.ac
D /trunk/configure.in
M /trunk/src/.cvsignore
M /trunk/src/Makefile.am
D /trunk/src/config.h.in
* ./configure.ac, ./bootstrap: used libdvbpsi's bootstrap, moved config.h
to ., renamed configure.in into configure.ac, removed useless files that
are autogenerated.
* ./src/Makefile.am: instead of using -no-undefined "only under BeOS" we
use it "never with MSVC".
------------------------------------------------------------------------
r68 | massiot | 2002-10-10 22:29:31 +0000 (Thu, 10 Oct 2002) | 2 lines
Changed paths:
M /trunk/bootstrap
Exit cleanly in case of error.
------------------------------------------------------------------------
r67 | massiot | 2002-10-10 21:40:41 +0000 (Thu, 10 Oct 2002) | 4 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/configure.in
M /trunk/src/config.h.in
M /trunk/src/css.c
* Bumped up version number to 1.2.3 (soleil !).
* Updated Changelog.
* Merged in hh's patch for broken DVD drives/kernel/whatever.
------------------------------------------------------------------------
r66 | gbazin | 2002-10-10 12:44:28 +0000 (Thu, 10 Oct 2002) | 7 lines
Changed paths:
M /trunk/AUTHORS
M /trunk/src/css.c
M /trunk/src/device.c
M /trunk/src/ioctl.c
M /trunk/src/ioctl.h
* src/css.c, src/device.c, src/ioctl.[ch]: We don't need to be in administrator mode
anymore to authenticate the drive on Windows NT/2k/XP. As a result any user can now
play a DVD on these OSs :)
* src/ioctl.c: fixed ioctl_ReadTitleKey which wasn't working on Windows NT/2k/XP.
Because of this bug, the disc and key methods for key decryption where not working.
------------------------------------------------------------------------
r65 | sam | 2002-10-07 16:37:15 +0000 (Mon, 07 Oct 2002) | 5 lines
Changed paths:
M /trunk/configure.in
M /trunk/src/Makefile.am
M /trunk/src/config.h.in
* ./src/Makefile.am: -no-undefined is now only used under BeOS because it
causes the Win32 compilation to fail.
* ./configure.in, src/Makefile.am: used AM_CONDITIONAL to conditionally
build the BSDi stuff.
------------------------------------------------------------------------
r64 | sam | 2002-08-10 21:27:42 +0000 (Sat, 10 Aug 2002) | 2 lines
Changed paths:
M /trunk/src/Makefile.am
* Bumped the revision number... thanks H�kan :-)
------------------------------------------------------------------------
r63 | sam | 2002-08-10 21:19:55 +0000 (Sat, 10 Aug 2002) | 2 lines
Changed paths:
M /trunk/src/css.c
* ./src/css.c: removed useless debug messages on H�kan's advice.
------------------------------------------------------------------------
r62 | sam | 2002-08-10 20:21:54 +0000 (Sat, 10 Aug 2002) | 2 lines
Changed paths:
M /trunk/AUTHORS
M /trunk/ChangeLog
M /trunk/debian/changelog
M /trunk/libdvdcss.spec
M /trunk/src/libdvdcss.c
* Updated release-related files.
------------------------------------------------------------------------
r61 | sam | 2002-08-10 17:42:09 +0000 (Sat, 10 Aug 2002) | 3 lines
Changed paths:
M /trunk/src/device.c
M /trunk/src/device.h
M /trunk/src/ioctl.c
M /trunk/src/ioctl.h
* ./src/ioctl.c: fixed ReportRPC for Win32.
* ./src/device.h: removed unneeded exported symbols.
------------------------------------------------------------------------
r60 | sam | 2002-08-10 14:27:26 +0000 (Sat, 10 Aug 2002) | 4 lines
Changed paths:
M /trunk/src/css.c
M /trunk/src/css.h
M /trunk/src/device.c
M /trunk/src/device.h
M /trunk/src/dvdcss/dvdcss.h
M /trunk/src/error.c
M /trunk/src/libdvdcss.c
M /trunk/src/libdvdcss.h
M /trunk/test/csstest.c
* ./src/dvdcss/dvdcss.h: marked deprecated stuff.
* ./test/csstest.c: more documentation.
see http://www.videolan.org/libdvdcss/doc/
------------------------------------------------------------------------
r59 | sam | 2002-08-10 12:56:04 +0000 (Sat, 10 Aug 2002) | 3 lines
Changed paths:
M /trunk/.cvsignore
M /trunk/Makefile.am
D /trunk/Makefile.in
D /trunk/aclocal.m4
D /trunk/config.guess
D /trunk/config.sub
D /trunk/configure
M /trunk/configure.in
M /trunk/debian/.cvsignore
D /trunk/debian/Makefile.in
A /trunk/doc
A /trunk/doc/.cvsignore
A /trunk/doc/Makefile.am
A /trunk/doc/doxygen.cfg
A /trunk/doc/footer.html
A /trunk/doc/header.html
D /trunk/install-sh
D /trunk/ltmain.sh
D /trunk/missing
D /trunk/mkinstalldirs
M /trunk/src/.cvsignore
D /trunk/src/Makefile.in
M /trunk/src/dvdcss/.cvsignore
D /trunk/src/dvdcss/Makefile.in
M /trunk/src/libdvdcss.c
M /trunk/test/.cvsignore
D /trunk/test/Makefile.in
* ALL: removed autotools files.
* ./doc/*: added doxygen files.
------------------------------------------------------------------------
r58 | sam | 2002-08-10 12:21:28 +0000 (Sat, 10 Aug 2002) | 2 lines
Changed paths:
M /trunk/src/dvdcss/dvdcss.h
M /trunk/src/libdvdcss.c
* ./src/libdvdcss.c, ./src/dvdcss/dvdcss.h: documented the API.
------------------------------------------------------------------------
r57 | sam | 2002-08-09 22:03:34 +0000 (Fri, 09 Aug 2002) | 4 lines
Changed paths:
M /trunk/src/css.c
* ./src/css.c: in case of a region mismatch and when the drive needs to
be reset, we read the first sector of the disc instead of closing and
reopening it.
------------------------------------------------------------------------
r56 | sam | 2002-08-09 14:19:46 +0000 (Fri, 09 Aug 2002) | 3 lines
Changed paths:
M /trunk/src/Makefile.am
M /trunk/src/Makefile.in
* ./src/Makefile.am: tell libtool that libdvdcss does not have undefined
symbols. Fix for BeOS courtesy of Andrew Bachmann.
------------------------------------------------------------------------
r55 | sam | 2002-08-09 14:10:43 +0000 (Fri, 09 Aug 2002) | 23 lines
Changed paths:
M /trunk/Makefile.in
M /trunk/aclocal.m4
M /trunk/configure
M /trunk/configure.in
M /trunk/debian/Makefile.in
M /trunk/src/Makefile.am
M /trunk/src/Makefile.in
M /trunk/src/bsdi_ioctl.c
M /trunk/src/common.h
M /trunk/src/config.h.in
M /trunk/src/css.c
M /trunk/src/css.h
A /trunk/src/device.c
A /trunk/src/device.h
M /trunk/src/dvdcss/Makefile.in
A /trunk/src/error.c
M /trunk/src/libdvdcss.c
M /trunk/src/libdvdcss.h
M /trunk/test/Makefile.in
M /trunk/test/csstest.c
* ./src/css.c: when the ReadTitleKey ioctl failed, reopen the device before
falling back to the title method.
Note: on my drive, this fixes the "ioctl_ReadTitleKey failed" error
many users have been reporting. Please test!
Note 2: I could not find any other way to reset the drive after a failed
ReadTitleKey ioctl than closing and opening the device again. If
I don't do that, read() fails with an Input/output error after a
while (but not immediately).
* ALL: libdvdcss builds with -ansi -pedantic. Yeah I like that :-)
* ./src/css.c: renamed a few functions so that they make more sense, added
debug messages here and there, fixed typos and speling.
* ./src/error.c: moved _dvdcss_error and _dvdcss_debug here.
* ./src/device.c: moved device reading functions from libdvdcss.c to here.
* ./src/device.c: errors from dvdcss_read are now properly handled; partial
reads still aren't though.
* ./src/libdvdcss.c: default verbosity is now 0, a library should not be
intrusive by default.
* ./test/csstest.c: additional error check.
* ./configure.in: removed the crap boolean_t detection.
------------------------------------------------------------------------
r54 | massiot | 2002-07-23 11:43:58 +0000 (Tue, 23 Jul 2002) | 2 lines
Changed paths:
M /trunk/README
Default method is now "key" :p.
------------------------------------------------------------------------
r53 | sam | 2002-07-16 22:47:40 +0000 (Tue, 16 Jul 2002) | 4 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/Makefile.in
M /trunk/aclocal.m4
M /trunk/config.guess
M /trunk/config.sub
M /trunk/configure
M /trunk/configure.in
M /trunk/debian/Makefile.in
M /trunk/debian/changelog
M /trunk/libdvdcss.spec
M /trunk/ltmain.sh
M /trunk/src/Makefile.in
M /trunk/src/css.c
M /trunk/src/css.h
M /trunk/src/dvdcss/Makefile.in
M /trunk/src/libdvdcss.c
M /trunk/test/Makefile.am
M /trunk/test/Makefile.in
* ./test/Makefile.am: disabled dvd_region.
* ./src/css.c: speling fixes.
* ALL: re-ran bootstrap with more recent autotools.
------------------------------------------------------------------------
r52 | hjort | 2002-07-14 11:44:57 +0000 (Sun, 14 Jul 2002) | 3 lines
Changed paths:
A /trunk/test/dvd_region.c
New utility for querying (and eventualy setting) the region of a DVD drive
using the ioctl wrappers in libdvdcss.
------------------------------------------------------------------------
r51 | hjort | 2002-07-12 23:28:42 +0000 (Fri, 12 Jul 2002) | 3 lines
Changed paths:
M /trunk/configure.in
M /trunk/src/bsdi_ioctl.c
Include config.h before testing defines in the BSDi ioctl code. Add a bug
fix from the author. Remove the now unused parts from configure.in.
------------------------------------------------------------------------
r50 | hjort | 2002-07-12 21:06:41 +0000 (Fri, 12 Jul 2002) | 3 lines
Changed paths:
M /trunk/src/Makefile.am
M /trunk/src/bsdi_ioctl.c
M /trunk/test/Makefile.am
Fix so that the bsdi_*.[hc] files make it into the dist tar-ball.
Correct the include path for the programs in test/.
------------------------------------------------------------------------
r49 | hjort | 2002-07-01 13:40:33 +0000 (Mon, 01 Jul 2002) | 3 lines
Changed paths:
M /trunk/src/libdvdcss.c
Typo fix and fix the linked list code to not drop the list when instering
at the head, from Adam Jones.
------------------------------------------------------------------------
r48 | hjort | 2002-07-01 10:36:37 +0000 (Mon, 01 Jul 2002) | 2 lines
Changed paths:
M /trunk/src/ioctl.c
M /trunk/src/ioctl.h
Patch for OS/2 from Alex Strelnikov.
------------------------------------------------------------------------
r47 | hjort | 2002-07-01 09:59:09 +0000 (Mon, 01 Jul 2002) | 2 lines
Changed paths:
M /trunk/src/css.c
Typo fix from Adam Jones.
------------------------------------------------------------------------
r46 | hjort | 2002-07-01 09:02:25 +0000 (Mon, 01 Jul 2002) | 2 lines
Changed paths:
M /trunk/src/ioctl.c
M /trunk/src/ioctl.h
Getting ReportRPC for WIN32 a bit closer to working.
------------------------------------------------------------------------
r45 | sam | 2002-06-04 07:10:07 +0000 (Tue, 04 Jun 2002) | 2 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/src/ioctl.c
* ./src/ioctl.c: implemented ioctl_ReportKey1 for HP-UX.
------------------------------------------------------------------------
r44 | sam | 2002-06-04 07:02:57 +0000 (Tue, 04 Jun 2002) | 2 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/src/libdvdcss.c
* ./src/libdvdcss.c: Win32 compilation fix.
------------------------------------------------------------------------
r43 | sam | 2002-06-02 16:18:45 +0000 (Sun, 02 Jun 2002) | 2 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/configure
M /trunk/configure.in
M /trunk/debian/changelog
M /trunk/libdvdcss.spec
* ALL: changed version number to 1.2.1.
------------------------------------------------------------------------
r42 | sam | 2002-06-02 16:14:48 +0000 (Sun, 02 Jun 2002) | 2 lines
Changed paths:
M /trunk/AUTHORS
M /trunk/ChangeLog
M /trunk/src/ioctl.c
M /trunk/src/ioctl.h
* ./src/ioctl.c, ./src/ioctl.h: QNX port, courtesy of Pascal Levesque.
------------------------------------------------------------------------
r41 | sam | 2002-06-02 16:05:34 +0000 (Sun, 02 Jun 2002) | 2 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/src/css.c
* ./src/css.c: applied H�kan's fix for the failure on region mismatch.
------------------------------------------------------------------------
r40 | sam | 2002-06-02 15:54:10 +0000 (Sun, 02 Jun 2002) | 3 lines
Changed paths:
M /trunk/.cvsignore
M /trunk/ChangeLog
M /trunk/aclocal.m4
M /trunk/configure
M /trunk/libdvdcss.spec
M /trunk/ltmain.sh
M /trunk/src/libdvdcss.c
* ALL: switched to libtool 1.4.2a.
* ./src/libdvdcss.c: fixed an uninitialized variable.
------------------------------------------------------------------------
r39 | sam | 2002-05-26 14:22:23 +0000 (Sun, 26 May 2002) | 2 lines
Changed paths:
M /trunk/src/dvdcss/dvdcss.h
* ./src/dvdcss/dvdcss.h: C++ compliant public header.
------------------------------------------------------------------------
r38 | sam | 2002-05-20 17:58:20 +0000 (Mon, 20 May 2002) | 4 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/configure
M /trunk/configure.in
M /trunk/debian/changelog
M /trunk/libdvdcss.spec
D /trunk/libtool
* Everything should be ready for 1.2.0.
* Updated ChangeLog.
* Removed libtool. It seems to be created automatically anyway.
------------------------------------------------------------------------
r37 | hjort | 2002-05-16 20:40:54 +0000 (Thu, 16 May 2002) | 4 lines
Changed paths:
M /trunk/src/libdvdcss.c
New function _dvdcss_use_ioctls. Avoid using the ioctl calls when
they have no chans or working, this in turn avoids a spurious warning
when they fail.
------------------------------------------------------------------------
r36 | hjort | 2002-05-16 20:12:04 +0000 (Thu, 16 May 2002) | 2 lines
Changed paths:
M /trunk/src/css.c
Update error message.
------------------------------------------------------------------------
r35 | hjort | 2002-05-16 12:10:29 +0000 (Thu, 16 May 2002) | 2 lines
Changed paths:
M /trunk/src/libdvdcss.c
Default to 'key', rather than 'title', method.
------------------------------------------------------------------------
r34 | sam | 2002-05-15 20:27:04 +0000 (Wed, 15 May 2002) | 2 lines
Changed paths:
M /trunk/libdvdcss.spec
* ./libdvdcss.spec: enhancements by Mandrakesoft.
------------------------------------------------------------------------
r33 | hjort | 2002-05-13 21:22:22 +0000 (Mon, 13 May 2002) | 3 lines
Changed paths:
M /trunk/src/libdvdcss.c
Correct serious bug in dvdcss_read for titles with all zero key (a unencrypted
title on a CSS protected disc).
------------------------------------------------------------------------
r32 | jlj | 2002-05-05 22:21:51 +0000 (Sun, 05 May 2002) | 3 lines
Changed paths:
M /trunk/src/ioctl.c
M /trunk/src/ioctl.h
* ./src/ioctl.[ch]: Darwin changes: Cleaned up the code, fixed
ReadTitleKey, and implemented ReportRPC.
------------------------------------------------------------------------
r31 | gbazin | 2002-04-26 20:47:08 +0000 (Fri, 26 Apr 2002) | 4 lines
Changed paths:
M /trunk/INSTALL
* updated win32 compilation instructions.
------------------------------------------------------------------------
r30 | sam | 2002-04-06 01:27:43 +0000 (Sat, 06 Apr 2002) | 3 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/configure
M /trunk/configure.in
M /trunk/debian/changelog
M /trunk/libdvdcss.spec
* libdvdcss-1.1.1 release.
------------------------------------------------------------------------
r29 | sam | 2002-04-06 01:11:05 +0000 (Sat, 06 Apr 2002) | 3 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/src/ioctl.c
* ./src/ioctl.c: OpenBSD compile fix. Thanks to ex0dus on #videolan.
------------------------------------------------------------------------
r28 | gbazin | 2002-04-05 00:26:25 +0000 (Fri, 05 Apr 2002) | 5 lines
Changed paths:
M /trunk/INSTALL
M /trunk/src/css.c
* updated INSTALL doc for the win32 build.
* added small win32 specific error message that was also in the vlc tree.
------------------------------------------------------------------------
r27 | gbazin | 2002-04-04 23:44:20 +0000 (Thu, 04 Apr 2002) | 10 lines
Changed paths:
M /trunk/src/ioctl.c
M /trunk/src/libdvdcss.c
* added two patches that have been forgot from the vlc tree.
1- Under NT/2K/XP try to open the dvd device in read only mode if we don't
have right access. With only read access we can't use ioctls but if the
disc has already been authenticated, then we can decrypt it with the
TITLE method.
2- Small compilation fix for msvc.
------------------------------------------------------------------------
r26 | sam | 2002-04-04 14:21:25 +0000 (Thu, 04 Apr 2002) | 3 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/src/libdvdcss.h
* ./src/libdvdcss.h: IRIX compile fix by Michael Pruett <michael@68k.org>.
------------------------------------------------------------------------
r25 | sam | 2002-04-04 01:26:54 +0000 (Thu, 04 Apr 2002) | 4 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/configure
M /trunk/configure.in
M /trunk/src/config.h.in
M /trunk/src/ioctl.c
* ./configure.in: BeOS bug fix. I'm so lame.
* ./src/ioctl.c: refuse to build if DVD ioctls weren't found.
------------------------------------------------------------------------
r24 | sam | 2002-04-03 23:34:30 +0000 (Wed, 03 Apr 2002) | 3 lines
Changed paths:
M /trunk/test/.cvsignore
* Forgot to change test/.cvsignore ...
------------------------------------------------------------------------
r23 | sam | 2002-04-03 23:33:57 +0000 (Wed, 03 Apr 2002) | 6 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/test/Makefile.am
M /trunk/test/Makefile.in
A /trunk/test/csstest.c
D /trunk/test/test.c
* ./test/csstest.c: renamed test.c to csstest.c.
I hereby declare libdvdcss 1.1.0 ready to ship; it was successfully tested
on Linux, FreeBSD, MacOS X and BeOS, and compiles on Solaris.
------------------------------------------------------------------------
r22 | jlj | 2002-04-03 23:02:20 +0000 (Wed, 03 Apr 2002) | 3 lines
Changed paths:
M /trunk/src/ioctl.c
* ./src/ioctl.c: Fixed a Darwin typo I recently introduced.
------------------------------------------------------------------------
r21 | sam | 2002-04-03 22:31:42 +0000 (Wed, 03 Apr 2002) | 3 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/Makefile.in
M /trunk/configure
M /trunk/debian/Makefile.in
M /trunk/src/Makefile.in
M /trunk/src/dvdcss/Makefile.in
M /trunk/test/Makefile.in
* Run ./bootstrap.
------------------------------------------------------------------------
r20 | jlj | 2002-04-03 22:17:00 +0000 (Wed, 03 Apr 2002) | 3 lines
Changed paths:
M /trunk/configure.in
* ./configure.in: Darwin compile fix (added -no-cpp-precomp)
------------------------------------------------------------------------
r19 | sam | 2002-04-03 21:31:52 +0000 (Wed, 03 Apr 2002) | 5 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/configure
M /trunk/debian/changelog
M /trunk/libdvdcss.spec
M /trunk/missing
* ./ChangeLog: everything should be ready for the 1.1.0 release.
* ./libdvdcss.spec: updated specfile for RPM generation.
* ./missing: commited libtool's latest version of this file.
------------------------------------------------------------------------
r18 | jlj | 2002-04-03 21:25:13 +0000 (Wed, 03 Apr 2002) | 3 lines
Changed paths:
M /trunk/configure.in
M /trunk/src/config.h.in
M /trunk/src/ioctl.c
* Fixed a Darwin define problem.
------------------------------------------------------------------------
r17 | sam | 2002-04-03 15:19:22 +0000 (Wed, 03 Apr 2002) | 5 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/Makefile.am
M /trunk/config.guess
M /trunk/config.sub
M /trunk/configure
M /trunk/configure.in
M /trunk/src/Makefile.am
M /trunk/src/Makefile.in
M /trunk/src/css.c
A /trunk/src/dvdcss
A /trunk/src/dvdcss/.cvsignore
A /trunk/src/dvdcss/Makefile.am
A /trunk/src/dvdcss/Makefile.in
A /trunk/src/dvdcss/dvdcss.h
D /trunk/src/dvdcss.h
M /trunk/src/libdvdcss.c
M /trunk/test/Makefile.am
M /trunk/test/Makefile.in
M /trunk/test/test.c
* ./src/dvdcss/dvdcss.h: moved dvdcss.h in a subdirectory so that we can
include <dvdcss/dvdcss.h> without having to make install.
* ./test/test.c: removed #ifdef DVDCSS_DIST.
------------------------------------------------------------------------
r16 | sam | 2002-04-03 06:12:50 +0000 (Wed, 03 Apr 2002) | 9 lines
Changed paths:
M /trunk/AUTHORS
M /trunk/ChangeLog
M /trunk/Makefile.am
M /trunk/Makefile.in
M /trunk/configure
M /trunk/configure.in
M /trunk/debian/.cvsignore
A /trunk/debian/Makefile.am
A /trunk/debian/Makefile.in
M /trunk/debian/changelog
M /trunk/debian/rules
M /trunk/libtool
M /trunk/src/Makefile.am
M /trunk/src/Makefile.in
M /trunk/src/config.h.in
M /trunk/src/css.c
M /trunk/src/dvdcss.h
M /trunk/src/libdvdcss.c
M /trunk/test/Makefile.in
M /trunk/test/test.c
* ./ChangeLog: updated changelog.
* ./Makefile.am: added the debian dir to the targets.
* ./configure.in: switched to a more conventional versioning scheme.
* ./src/css.c: removed a useless #ifdef.
* ./src/dvdcss.h: added a versioned symbol to the API.
* ./src/Makefile.am: use <dvdcss/dvdcss.h> instead of <videolan/dvdcss.h>.
* ./test/test.c: test program is now up to date.
------------------------------------------------------------------------
r15 | hjort | 2002-03-09 17:57:53 +0000 (Sat, 09 Mar 2002) | 7 lines
Changed paths:
M /trunk/src/css.c
M /trunk/src/css.h
M /trunk/src/libdvdcss.c
Split the code into more functions. The disc and title decryption /
cracking code is now each in it's own function. Also moved the code that
looks for a weak block in the VOB to crack the title key from out from
the loop that reads them. Added another crack method, it's disabled for
now though. Lowered some limits on the current 'weak' test. Added more
comments.
------------------------------------------------------------------------
r14 | hjort | 2002-03-09 17:35:49 +0000 (Sat, 09 Mar 2002) | 3 lines
Changed paths:
M /trunk/configure.in
Add -D_FILE_OFFSET_BITS=64 to the compile line to make off_t / lseek and
other file access functions used in dvdcss be 64bit.
------------------------------------------------------------------------
r13 | hjort | 2002-03-09 17:24:28 +0000 (Sat, 09 Mar 2002) | 2 lines
Changed paths:
M /trunk/test/test.c
Tell libdvdcss to get the key for the block before we decrypt it.
------------------------------------------------------------------------
r12 | hjort | 2002-03-09 17:23:05 +0000 (Sat, 09 Mar 2002) | 2 lines
Changed paths:
M /trunk/test/Makefile.am
Don't link to libdl.
------------------------------------------------------------------------
r11 | sam | 2002-03-09 17:16:44 +0000 (Sat, 09 Mar 2002) | 3 lines
Changed paths:
M /trunk/configure
M /trunk/configure.in
M /trunk/test/test.c
* Fixed compilation of test/test.c.
------------------------------------------------------------------------
r10 | sam | 2002-03-06 00:06:17 +0000 (Wed, 06 Mar 2002) | 3 lines
Changed paths:
M /trunk/test/.cvsignore
A /trunk/test/test.c
* Updated misc control files and added the sample program.
------------------------------------------------------------------------
r9 | sam | 2002-03-06 00:04:41 +0000 (Wed, 06 Mar 2002) | 2 lines
Changed paths:
M /trunk/Makefile.am
M /trunk/Makefile.in
M /trunk/aclocal.m4
M /trunk/config.guess
M /trunk/config.sub
M /trunk/configure
M /trunk/configure.in
M /trunk/debian/changelog
D /trunk/debian/libdvdcss2.shlibs
M /trunk/libtool
M /trunk/src/Makefile.am
M /trunk/src/Makefile.in
M /trunk/src/config.h.in
M /trunk/test/Makefile.am
M /trunk/test/Makefile.in
*** empty log message ***
------------------------------------------------------------------------
r8 | hjort | 2002-02-25 18:21:57 +0000 (Mon, 25 Feb 2002) | 2 lines
Changed paths:
M /trunk/src/css.c
M /trunk/src/css.h
Cleanup some formating, indentation and types and add a small comment.
------------------------------------------------------------------------
r7 | hjort | 2002-02-03 14:54:53 +0000 (Sun, 03 Feb 2002) | 2 lines
Changed paths:
M /trunk/src/ioctl.c
M /trunk/src/ioctl.h
Add the WIN32 fix to GetTitleKey from the vlc/extra branch.
------------------------------------------------------------------------
r6 | hjort | 2002-02-03 14:53:10 +0000 (Sun, 03 Feb 2002) | 2 lines
Changed paths:
M /trunk/configure.in
Do check for the unistd.h header file.
------------------------------------------------------------------------
r5 | hjort | 2002-01-20 17:04:54 +0000 (Sun, 20 Jan 2002) | 7 lines
Changed paths:
M /trunk/src/css.c
M /trunk/src/css.h
Make CSSAuth more rubust, should now also work with drives that are not 100%
compliant to the SFF-8090 standard. AGID invalidation should now work,
allowing us to recover from hung / failed authentications. Corrected
CSSGetASF, it does not take an AGID argument. Move several data structures
from the dvdcss handle to local variables in CSSAuth. Remove CSSAuth as a
externaly visible function in css.c.
------------------------------------------------------------------------
r4 | sam | 2001-12-22 00:52:46 +0000 (Sat, 22 Dec 2001) | 3 lines
Changed paths:
M /trunk/configure
M /trunk/configure.in
M /trunk/libtool
A /trunk/src/.cvsignore
M /trunk/src/config.h.in
M /trunk/src/libdvdcss.c
* Win32 compilation fix.
------------------------------------------------------------------------
r3 | sam | 2001-12-22 00:26:17 +0000 (Sat, 22 Dec 2001) | 3 lines
Changed paths:
M /trunk/configure
M /trunk/configure.in
M /trunk/src/config.h.in
* Attempt at fixing the Solaris port.
------------------------------------------------------------------------
r2 | sam | 2001-12-22 00:10:31 +0000 (Sat, 22 Dec 2001) | 3 lines
Changed paths:
M /trunk/.cvsignore
A /trunk/Makefile.in
M /trunk/configure
M /trunk/configure.in
A /trunk/src/Makefile.in
M /trunk/test/.cvsignore
A /trunk/test/Makefile.in
* Forgot Makefile.in files.
------------------------------------------------------------------------
r1 | sam | 2001-12-22 00:08:13 +0000 (Sat, 22 Dec 2001) | 3 lines
Changed paths:
A /trunk
A /trunk/.cvsignore
A /trunk/AUTHORS
A /trunk/COPYING
A /trunk/ChangeLog
A /trunk/INSTALL
A /trunk/Makefile.am
A /trunk/NEWS
A /trunk/README
A /trunk/aclocal.m4
A /trunk/bootstrap
A /trunk/config.guess
A /trunk/config.sub
A /trunk/configure
A /trunk/configure.in
A /trunk/debian
A /trunk/debian/.cvsignore
A /trunk/debian/changelog
A /trunk/debian/control
A /trunk/debian/libdvdcss2-dev.dirs
A /trunk/debian/libdvdcss2.copyright
A /trunk/debian/libdvdcss2.dirs
A /trunk/debian/libdvdcss2.shlibs
A /trunk/debian/rules
A /trunk/install-sh
A /trunk/libdvdcss.spec
A /trunk/libtool
A /trunk/ltmain.sh
A /trunk/missing
A /trunk/mkinstalldirs
A /trunk/src
A /trunk/src/Makefile.am
A /trunk/src/bsdi_dvd.h
A /trunk/src/bsdi_ioctl.c
A /trunk/src/common.h
A /trunk/src/config.h.in
A /trunk/src/css.c
A /trunk/src/css.h
A /trunk/src/csstables.h
A /trunk/src/dvdcss.h
A /trunk/src/ioctl.c
A /trunk/src/ioctl.h
A /trunk/src/libdvdcss.c
A /trunk/src/libdvdcss.h
A /trunk/test
A /trunk/test/.cvsignore
A /trunk/test/Makefile.am
* Initial commit. Hope it'll work.
------------------------------------------------------------------------
|