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
|
# File format ($ symbol means the beginning of a line):
#
# $ # this message
# $ # =======================
# $ # comments (all commentaries should starts with some number of spaces and # symbol)
# $ IGNORE_FILES {file1.ext1} {file2.ext2} - (optional) ignore listed files when generating license macro and credits
# $ RENAME {original license id} TO {new license id} # user comments - (optional) use {new license id} instead {original license id} in ya.make files
# $ # user comments
# $
# ${action} {license id} {license text hash}
# $BELONGS ./ya/make/file/relative/path/1/ya.make ./ya/make/2/ya.make
# ${all_file_action} filename
# $ # user commentaries (many lines)
# $ generated description - files with this license, license text... (some number of lines that starts with some number of spaces, do not modify)
# ${action} {license spdx} {license text hash}
# $BELONGS ./ya/make/file/relative/path/3/ya.make
# ${all_file_action} filename
# $ # user commentaries
# $ generated description
# $ ...
#
# You can modify action, all_file_action and add commentaries
# Available actions:
# keep - keep license in contrib and use in credits
# skip - skip license
# remove - remove all files with this license
# rename - save license text/links into licenses texts file, but not store SPDX into LINCENSE macro. You should store correct license id into devtools.license.spdx.txt file
#
# {all file action} records will be generated when license text contains filename that exists on filesystem (in contrib directory)
# We suppose that that files can contain some license info
# Available all file actions:
# FILE_IGNORE - ignore file (do nothing)
# FILE_INCLUDE - include all file data into licenses text file
# =======================
KEEP COPYRIGHT_SERVICE_LABEL 001270d0986e016a64e4488c035ddac5
BELONGS ya.make
License text:
; Copyright (C) 2011, 2016, D. R. Commander.
; Copyright (C) 2015, Intel Corporation.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/i386/jcgray-avx2.asm [4:5]
simd/i386/jcgray-mmx.asm [4:5]
simd/i386/jcgray-sse2.asm [4:4]
simd/i386/jcgryext-avx2.asm [4:5]
simd/i386/jcgryext-mmx.asm [4:5]
simd/i386/jcgryext-sse2.asm [4:4]
simd/x86_64/jcgray-avx2.asm [4:5]
simd/x86_64/jcgray-sse2.asm [4:4]
simd/x86_64/jcgryext-avx2.asm [4:6]
simd/x86_64/jcgryext-sse2.asm [4:5]
KEEP COPYRIGHT_SERVICE_LABEL 03620b5e1cb0526b5c8fb74838b3a3ef
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdmainct.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdmainct.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 048093befc4541c84a0b4aff0eb0e58a
BELONGS ya.make
License text:
* Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB
* Copyright (C) 2009-2011, 2014, 2016, 2018, 2022, D. R. Commander.
* Copyright (C) 2015-2016, 2018, Matthieu Darbois.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/x86_64/jsimd.c [4:6]
KEEP COPYRIGHT_SERVICE_LABEL 05117f6a64c717808d7abe982066f754
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jddctmgr.c at line 11
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jddctmgr.c [5:12]
KEEP COPYRIGHT_SERVICE_LABEL 07e12474a71a9c9264beced90941125c
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: simd/arm/aarch64/jchuff-neon.c at line 9, simd/arm/jchuff.h at line 10, simd/arm/jcphuff-neon.c at line 9, simd/arm/jquanti-neon.c at line 9, simd/arm/neon-compat.h at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/arm/aarch64/jchuff-neon.c [4:4]
simd/arm/jchuff.h [5:11]
simd/arm/jcphuff-neon.c [4:4]
simd/arm/jquanti-neon.c [4:4]
simd/arm/neon-compat.h [3:3]
KEEP COPYRIGHT_SERVICE_LABEL 085866dc673ec19d97c4979b0d3203f8
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jquant2.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jquant2.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 090deb413327d7c4ccdeb6f33c67502b
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jcapimin.c at line 9, jcprepct.c at line 9, jerror.c at line 9, jinclude.h at line 9, jutils.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jcapimin.c [5:10]
jcprepct.c [5:9]
jerror.c [5:9]
jinclude.h [5:9]
jutils.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 09adeb42ae4a6bea0b7aa5aaf65de91a
BELONGS ya.make
License text:
; Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB
; Copyright (C) 2009, 2016, 2020, D. R. Commander.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/x86_64/jfdctint-sse2.asm [4:5]
simd/x86_64/jidctint-sse2.asm [4:6]
KEEP COPYRIGHT_SERVICE_LABEL 0ae009ac16fbacd31d4b77e95303858a
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: cderror.h at line 9, cdjpeg.h at line 9, jccoefct.c at line 9, jcomapi.c at line 9, jdcoefct.c at line 9, jdcoefct.h at line 9, jerror.h at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cderror.h [5:10]
cdjpeg.h [5:10]
jccoefct.c [5:8]
jcomapi.c [5:8]
jdcoefct.c [5:11]
jdcoefct.h [5:10]
jerror.h [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 0b0ac4cd285016cb09b8319e3f765270
BELONGS ya.make
License text:
* Copyright (C)2011, 2019 D. R. Commander. All Rights Reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tjutil.c [2:2]
KEEP COPYRIGHT_SERVICE_LABEL 0d16e03bc8aea0727b77e84f46679705
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdmaster.h at line 6
License text:
* Copyright (C) 1991-1995, Thomas G. Lane.
* For conditions of distribution and use, see the accompanying README.ijg
* file.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdmaster.h [5:7]
KEEP COPYRIGHT_SERVICE_LABEL 0f8337340bfc4fc39a2fe07a61afd6b0
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdarith.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdarith.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 0f897163c7037d3f0adbe0fe504532f8
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jcmarker.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jcmarker.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 10c71bcfc53b06ea8660c6ef781bbbe9
BELONGS ya.make
License text:
; Copyright 2009, 2012 Pierre Ossman <ossman@cendio.se> for Cendio AB
; Copyright (C) 2012, 2016, D. R. Commander.
; Copyright (C) 2015, Intel Corporation.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/i386/jdcolext-avx2.asm [4:6]
simd/i386/jdcolext-sse2.asm [4:5]
simd/i386/jdmrgext-avx2.asm [4:6]
simd/i386/jdmrgext-sse2.asm [4:5]
KEEP COPYRIGHT_SERVICE_LABEL 11e733d6a587075ab68bcc53d29822a6
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: djpeg.c at line 10, jdapistd.c at line 10, jdinput.c at line 10, jdmaster.c at line 10, jdsample.c at line 10, jpegint.h at line 10, jpeglib.h at line 10
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
djpeg.c [5:11]
jdapistd.c [5:10]
jdinput.c [5:10]
jdmaster.c [5:12]
jdsample.c [5:13]
jpegint.h [5:12]
jpeglib.h [5:11]
KEEP COPYRIGHT_SERVICE_LABEL 1249c3d3fb0e107f4cabda7b2efba8b8
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jcphuff.c at line 11, jdphuff.c at line 11, jdtrans.c at line 11
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jcphuff.c [5:12]
jdphuff.c [5:9]
jdtrans.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 152add89d1791fb293414e86b81304ef
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdapimin.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdapimin.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 165527239955f985662e0f2fe1203f1b
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: transupp.c at line 8, transupp.h at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
transupp.c [5:9]
transupp.h [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 1acdcc86793fefc64c4fe4c565b2f14f
BELONGS ya.make
License text:
* Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB
* Copyright (C) 2011, 2014, D. R. Commander.
* Copyright (C) 2015-2016, 2018, Matthieu Darbois.
* Copyright (C) 2020, Arm Limited.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jsimd.h [4:7]
jsimd_none.c [4:7]
simd/arm/aarch32/jsimd.c [4:9]
simd/arm/aarch32/jsimd_neon.S [10:10]
simd/arm/aarch64/jsimd.c [4:8]
simd/arm/aarch64/jsimd_neon.S [10:10]
simd/i386/jsimd.c [4:6]
simd/jsimd.h [4:10]
simd/x86_64/jsimd.c [4:6]
KEEP COPYRIGHT_SERVICE_LABEL 1ad7e944e1e9a46ed48b14a55138bda8
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jpegint.h at line 11
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jpegint.h [5:12]
KEEP COPYRIGHT_SERVICE_LABEL 1afd790e43464ee897b6f4dad7e6ce6d
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: rdtarga.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
rdtarga.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 1b892e92391ba1d018a5507c7b63228c
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jcarith.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jcarith.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 1ba19ef1d18e94a36d48de79900507c6
BELONGS ya.make
License text:
; Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB
; Copyright (C) 2009, 2016, 2018, D. R. Commander.
; Copyright (C) 2016, Matthieu Darbois.
; Copyright (C) 2018, Matthias Räncker.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/x86_64/jquanti-avx2.asm [4:7]
KEEP COPYRIGHT_SERVICE_LABEL 1e45cf53e9734d2459db159d28f16e4b
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jinclude.h at line 8
License text:
* Copyright (C) 1991-1994, Thomas G. Lane.
* libjpeg-turbo Modifications:
* Copyright (C) 2022, D. R. Commander.
* For conditions of distribution and use, see the accompanying README.ijg
* file.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jinclude.h [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 1e540cb130e098262d5aec64669768fd
BELONGS ya.make
License text:
; Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB
; Copyright (C) 2016, 2018, D. R. Commander.
; Copyright (C) 2016, Matthieu Darbois.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/i386/jquanti-avx2.asm [4:6]
simd/x86_64/jquanti-avx2.asm [4:7]
KEEP COPYRIGHT_SERVICE_LABEL 1e9cc28e6b04389db80412d634fddb7e
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdhuff.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdhuff.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 1f57de85739b7a14cfcd6ca84f7bfb7e
BELONGS ya.make
License text:
* Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies).
* All Rights Reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/arm/aarch32/jsimd_neon.S [4:5]
simd/arm/aarch64/jsimd_neon.S [4:5]
KEEP COPYRIGHT_SERVICE_LABEL 1fb659a53f330f9569a89bd858ef3ce1
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdcol565.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdcol565.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 20b2a093ccd5225bc6fc55fe4031949c
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdmrgext.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdmrgext.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 212c71fc80caadb4a16b0e0298e0ca71
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdcoefct.c at line 10
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdcoefct.c [5:11]
KEEP COPYRIGHT_SERVICE_LABEL 23088d1c57488b04621001ac1f22cd37
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdcoefct.h at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdcoefct.h [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 233835017fd9ed43858ecd8787bb95f6
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: cderror.h at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cderror.h [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 25274b14836176e3a440bcf831a85954
BELONGS ya.make
License text:
* Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB
* Copyright (C) 2011, 2014, D. R. Commander.
* Copyright (C) 2015-2016, 2018, Matthieu Darbois.
* Copyright (C) 2020, Arm Limited.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jsimd.h [4:7]
KEEP COPYRIGHT_SERVICE_LABEL 260db70ba88e7f60351667e8f9254026
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: cjpeg.c at line 9, jcmarker.c at line 9, jcparam.c at line 9, jdmarker.c at line 9, jerror.c at line 9, jidctint.c at line 9, jpeglib.h at line 9, jstdhuff.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cjpeg.c [5:10]
jcmarker.c [5:10]
jcparam.c [5:10]
jdmarker.c [5:9]
jerror.c [5:9]
jidctint.c [5:10]
jpeglib.h [5:11]
jstdhuff.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 263caad4ba33bd3ef6290d6aeecbe970
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jchuff.c at line 11
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jchuff.c [5:12]
KEEP COPYRIGHT_SERVICE_LABEL 2672fb937e60710dec1b0b8a7906d209
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jcparam.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jcparam.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 26eb00d97e3ef709d9a86754532ff978
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.md [94:94]
jversion.h [39:51]
turbojpeg.c [2:2]
KEEP COPYRIGHT_SERVICE_LABEL 295e5b669dd969a48ac39f34bc8fd7d3
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdcolor.c at line 11
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdcolor.c [5:12]
KEEP COPYRIGHT_SERVICE_LABEL 29b99ba4246a9d3cc7b50e48a274da0d
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: rdbmp.c at line 10
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
rdbmp.c [5:11]
KEEP COPYRIGHT_SERVICE_LABEL 2abf650befa8dcfcd29490f514c687d3
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdapistd.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdapistd.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 2e20febfc45f1f8ef6742ee1936089c4
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/jsimd.h [4:10]
KEEP COPYRIGHT_SERVICE_LABEL 366e4b10a51306ff66614307ac53900d
BELONGS ya.make
License text:
; Copyright 2009, 2012 Pierre Ossman <ossman@cendio.se> for Cendio AB
; Copyright (C) 2012, 2016, D. R. Commander.
; Copyright (C) 2015, Intel Corporation.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/i386/jdcolext-avx2.asm [4:6]
simd/i386/jdcolext-sse2.asm [4:5]
simd/i386/jdmrgext-avx2.asm [4:6]
simd/i386/jdmrgext-sse2.asm [4:5]
simd/x86_64/jdcolext-avx2.asm [4:7]
simd/x86_64/jdcolext-sse2.asm [4:6]
simd/x86_64/jdmrgext-avx2.asm [4:7]
simd/x86_64/jdmrgext-sse2.asm [4:6]
KEEP COPYRIGHT_SERVICE_LABEL 36e84c409abecc7cefe7cd5dfd105381
BELONGS ya.make
License text:
* Copyright (C)2009-2015, 2017, 2020-2021 D. R. Commander.
* All Rights Reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
turbojpeg.h [2:3]
KEEP COPYRIGHT_SERVICE_LABEL 39c71721bea6dbebf0fe12a4104a16ba
BELONGS ya.make
License text:
* Copyright (C)2016, 2018-2019, 2022 D. R. Commander. All Rights Reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
md5/md5hl.c [9:9]
KEEP COPYRIGHT_SERVICE_LABEL 3d8a221d5e85eceaf22464a0b1bc72cd
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdinput.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdinput.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 3ff1e15ee5c983f31a11845ba1303bdd
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: simd/arm/jchuff.h at line 10
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/arm/jchuff.h [5:11]
KEEP COPYRIGHT_SERVICE_LABEL 4292948c897bb7af094f64c57edbd8ef
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jerror.h at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jerror.h [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 44be2ad22f421bfaf11c38a97ec194fa
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdatadst-tj.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdatadst-tj.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 44c57ae8756c03a43cc49d652ea73313
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jccolext.c at line 8, jccolor.c at line 8, jcsample.c at line 8, jdsample.c at line 8, jdsample.h at line 8, jfdctint.c at line 8, jquant1.c at line 8, jquant2.c at line 8, jutils.c at line 8, rdswitch.c at line 8, rdtarga.c at line 8, wrppm.c at line 8, wrtarga.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jccolext.c [5:9]
jccolor.c [5:11]
jcsample.c [5:11]
jdsample.c [5:13]
jdsample.h [5:7]
jfdctint.c [5:9]
jquant1.c [5:9]
jquant2.c [5:9]
jutils.c [5:9]
rdswitch.c [5:9]
rdtarga.c [5:10]
wrppm.c [5:10]
wrtarga.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 450015c7f57bc091445dc56f6b2cdfc0
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: wrppm.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
wrppm.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 45dfad5b2ebfed97272719e6f1ef717c
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: rdgif.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
rdgif.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 4636a62a8d91a4cbe9262bf83287b971
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jcicc.c at line 6, jdicc.c at line 6
License text:
* Copyright (C) 1997-1998, Thomas G. Lane, Todd Newman.
* Copyright (C) 2017, D. R. Commander.
* For conditions of distribution and use, see the accompanying README.ijg
* file.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jcicc.c [4:7]
jdicc.c [4:7]
KEEP COPYRIGHT_SERVICE_LABEL 47fc44857c47b9fc7886e2d4af29d56d
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jversion.h [39:51]
KEEP COPYRIGHT_SERVICE_LABEL 480cafc45780df29ac6b7113176124d9
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jmemnobs.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jmemnobs.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 4855c5404dbb62841cec15bacf070c2e
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jchuff.c at line 11, jcphuff.c at line 11, jsimd.h at line 10, jsimd_none.c at line 10, simd/arm/aarch32/jccolext-neon.c at line 10, simd/arm/aarch32/jchuff-neon.c at line 10, simd/arm/aarch32/jsimd.c at line 10, simd/arm/aarch64/jccolext-neon.c at line 10, simd/arm/aarch64/jsimd.c at line 10, simd/arm/align.h at line 8, simd/arm/jccolor-neon.c at line 10, simd/arm/jcgray-neon.c at line 10, simd/arm/jcgryext-neon.c at line 10, simd/arm/jcsample-neon.c at line 10, simd/arm/jdcolext-neon.c at line 10, simd/arm/jdcolor-neon.c at line 10, simd/arm/jdmerge-neon.c at line 10, simd/arm/jdmrgext-neon.c at line 10, simd/arm/jdsample-neon.c at line 10, simd/arm/jfdctfst-neon.c at line 10, simd/arm/jfdctint-neon.c at line 10, simd/arm/jidctfst-neon.c at line 10, simd/arm/jidctint-neon.c at line 10, simd/arm/jidctred-neon.c at line 10, simd/jsimd.h at line 10
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jchuff.c [5:12]
jcphuff.c [5:12]
jsimd.h [4:7]
jsimd_none.c [4:7]
simd/arm/aarch32/jccolext-neon.c [4:4]
simd/arm/aarch32/jchuff-neon.c [4:4]
simd/arm/aarch32/jsimd.c [4:9]
simd/arm/aarch64/jccolext-neon.c [4:4]
simd/arm/aarch64/jsimd.c [4:8]
simd/arm/align.h [2:2]
simd/arm/jccolor-neon.c [4:4]
simd/arm/jcgray-neon.c [4:4]
simd/arm/jcgryext-neon.c [4:4]
simd/arm/jcsample-neon.c [4:4]
simd/arm/jdcolext-neon.c [4:4]
simd/arm/jdcolor-neon.c [4:4]
simd/arm/jdmerge-neon.c [4:4]
simd/arm/jdmrgext-neon.c [4:4]
simd/arm/jdsample-neon.c [4:4]
simd/arm/jfdctfst-neon.c [4:4]
simd/arm/jfdctint-neon.c [4:4]
simd/arm/jidctfst-neon.c [4:4]
simd/arm/jidctint-neon.c [4:4]
simd/arm/jidctred-neon.c [4:4]
simd/jsimd.h [4:10]
KEEP COPYRIGHT_SERVICE_LABEL 4a3493336b28feee7d6c4e061d0a2d2b
BELONGS ya.make
License text:
* Author: Siarhei Siamashka <siarhei.siamashka@nokia.com>
* Copyright (C) 2013-2014, Linaro Limited. All Rights Reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/arm/aarch64/jsimd_neon.S [6:7]
KEEP COPYRIGHT_SERVICE_LABEL 4f6b6761b55823e2cea9a9046a1374b4
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdmrg565.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdmrg565.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 501d9d9fd254b645bfdd5c1afeaf2b7b
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jmemsys.h at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jmemsys.h [5:8]
KEEP COPYRIGHT_SERVICE_LABEL 518ffe97c21503649bc9db24a865cf6b
BELONGS ya.make
License text:
; Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB
; Copyright (C) 2010, 2016, 2018-2019, D. R. Commander.
; Copyright (C) 2018, Matthieu Darbois.
; Copyright (C) 2018, Matthias Räncker.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/nasm/jsimdext.inc [4:7]
KEEP COPYRIGHT_SERVICE_LABEL 519b50edb8a80de408600b1899cfb023
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jfdctint.c at line 8, jidctint.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jfdctint.c [5:9]
jidctint.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 51bad5f487918501ea2be46512c58c6b
BELONGS ya.make
License text:
Copyright (c) 1991-2022 The libjpeg-turbo Project
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jversion.h [53:54]
KEEP COPYRIGHT_SERVICE_LABEL 52ef6eff15e58ea7a30014a18522a0b8
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/jsimd.h [4:10]
KEEP COPYRIGHT_SERVICE_LABEL 55d69ef5c2827524a7c5cdd2ef41b997
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/jsimd.h [4:10]
KEEP COPYRIGHT_SERVICE_LABEL 56675cea16b7bae01af08a1aea00daaa
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jversion.h at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jversion.h [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 5aa53b258f764fbe51be48c4ab1f1d1f
BELONGS ya.make
License text:
; Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB
; Copyright (C) 2009, 2016, 2018, 2020, D. R. Commander.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/i386/jfdctint-avx2.asm [4:5]
simd/i386/jidctint-avx2.asm [4:5]
simd/x86_64/jfdctint-avx2.asm [4:5]
simd/x86_64/jidctint-avx2.asm [4:6]
KEEP COPYRIGHT_SERVICE_LABEL 5b4d2ba74e51eb91bbd5aef822f9aae3
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jpegtran.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jpegtran.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 5be2bec78aaafa60d86afed2fe95055c
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: djpeg.c at line 10
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
djpeg.c [5:11]
KEEP COPYRIGHT_SERVICE_LABEL 5f6a538b377c16ee13ee1496c713b176
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/x86_64/jdcolext-avx2.asm [4:7]
simd/x86_64/jdcolext-sse2.asm [4:6]
simd/x86_64/jdmrgext-avx2.asm [4:7]
simd/x86_64/jdmrgext-sse2.asm [4:6]
KEEP COPYRIGHT_SERVICE_LABEL 600b52ef1b2e8a91bced51054f66f3b1
BELONGS ya.make
License text:
* "How to Optimize for the Pentium Processors", Copyright (c) 1996, 1997 by
* Agner Fog. This code assumes we are on a two's complement machine.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jchuff.c [583:584]
jcphuff.c [521:522]
KEEP COPYRIGHT_SERVICE_LABEL 60905578d76ff9b2e20929c31ca32f13
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdhuff.h at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdhuff.h [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 60bbb1946c5720a631b0e530309742ec
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jchuff.c at line 11, simd/i386/jchuff-sse2.asm at line 10, simd/x86_64/jchuff-sse2.asm at line 10
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jchuff.c [5:12]
simd/i386/jchuff-sse2.asm [4:6]
simd/x86_64/jchuff-sse2.asm [4:6]
KEEP COPYRIGHT_SERVICE_LABEL 660eca46c511999474ff8017e496f51c
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jversion.h [39:51]
KEEP COPYRIGHT_SERVICE_LABEL 6671698e9a2a769e8f652725e0cd494a
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: cdjpeg.h at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cdjpeg.h [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 66e5c8e9af8d0ef7cf8741f0659c1e0c
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jpegtran.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jpegtran.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 6810534b9bd4aab0c6b7827b6c0f1fd9
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jcinit.c at line 8, jdmerge.h at line 8, jdtrans.c at line 8, simd/arm/aarch32/jccolext-neon.c at line 8, simd/arm/jccolor-neon.c at line 8, simd/arm/jdcolext-neon.c at line 8, simd/arm/jdmrgext-neon.c at line 8, simd/arm/jdsample-neon.c at line 8, simd/arm/jfdctint-neon.c at line 8, simd/arm/jidctint-neon.c at line 8, simd/arm/jidctred-neon.c at line 8, simd/arm/neon-compat.h at line 5
License text:
* Copyright (C) 1991-1997, Thomas G. Lane.
* libjpeg-turbo Modifications:
* Copyright (C) 2020, D. R. Commander.
* For conditions of distribution and use, see the accompanying README.ijg
* file.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jcinit.c [5:9]
jdmerge.h [5:9]
jdtrans.c [5:9]
simd/arm/aarch32/jccolext-neon.c [5:5]
simd/arm/jccolor-neon.c [5:5]
simd/arm/jdcolext-neon.c [5:5]
simd/arm/jdmrgext-neon.c [5:5]
simd/arm/jdsample-neon.c [5:5]
simd/arm/jfdctint-neon.c [5:5]
simd/arm/jidctint-neon.c [5:5]
simd/arm/jidctred-neon.c [5:5]
simd/arm/neon-compat.h [2:2]
KEEP COPYRIGHT_SERVICE_LABEL 6813c2b6fb9997bdcb51ad621d1a371b
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdmarker.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdmarker.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 6aff4539cc564a76b36cfd2daf2e3833
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jchuff.c at line 11, jdhuff.c at line 11, jdhuff.h at line 11, simd/arm/jchuff.h at line 11, simd/i386/jchuff-sse2.asm at line 10, simd/nasm/jsimdext.inc at line 10, simd/x86_64/jccolext-avx2.asm at line 10, simd/x86_64/jccolext-sse2.asm at line 10, simd/x86_64/jcgryext-avx2.asm at line 10, simd/x86_64/jcgryext-sse2.asm at line 10, simd/x86_64/jchuff-sse2.asm at line 10, simd/x86_64/jcsample-avx2.asm at line 10, simd/x86_64/jcsample-sse2.asm at line 10, simd/x86_64/jdcolext-avx2.asm at line 10, simd/x86_64/jdcolext-sse2.asm at line 10, simd/x86_64/jdmrgext-avx2.asm at line 10, simd/x86_64/jdmrgext-sse2.asm at line 10, simd/x86_64/jdsample-avx2.asm at line 10, simd/x86_64/jdsample-sse2.asm at line 10, simd/x86_64/jidctflt-sse2.asm at line 10, simd/x86_64/jidctfst-sse2.asm at line 10, simd/x86_64/jidctint-avx2.asm at line 10, simd/x86_64/jidctint-sse2.asm at line 10, simd/x86_64/jidctred-sse2.asm at line 10, simd/x86_64/jquantf-sse2.asm at line 10, simd/x86_64/jquanti-avx2.asm at line 10, simd/x86_64/jquanti-sse2.asm at line 10
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jchuff.c [5:12]
jdhuff.c [5:10]
jdhuff.h [5:10]
simd/arm/jchuff.h [5:11]
simd/i386/jchuff-sse2.asm [4:6]
simd/nasm/jsimdext.inc [4:7]
simd/x86_64/jccolext-avx2.asm [4:6]
simd/x86_64/jccolext-sse2.asm [4:5]
simd/x86_64/jcgryext-avx2.asm [4:6]
simd/x86_64/jcgryext-sse2.asm [4:5]
simd/x86_64/jchuff-sse2.asm [4:6]
simd/x86_64/jcsample-avx2.asm [4:7]
simd/x86_64/jcsample-sse2.asm [4:6]
simd/x86_64/jdcolext-avx2.asm [4:7]
simd/x86_64/jdcolext-sse2.asm [4:6]
simd/x86_64/jdmrgext-avx2.asm [4:7]
simd/x86_64/jdmrgext-sse2.asm [4:6]
simd/x86_64/jdsample-avx2.asm [4:7]
simd/x86_64/jdsample-sse2.asm [4:6]
simd/x86_64/jidctflt-sse2.asm [4:6]
simd/x86_64/jidctfst-sse2.asm [4:6]
simd/x86_64/jidctint-avx2.asm [4:6]
simd/x86_64/jidctint-sse2.asm [4:6]
simd/x86_64/jidctred-sse2.asm [4:6]
simd/x86_64/jquantf-sse2.asm [4:6]
simd/x86_64/jquanti-avx2.asm [4:7]
simd/x86_64/jquanti-sse2.asm [4:6]
KEEP COPYRIGHT_SERVICE_LABEL 6b27b02a83f5acbedf97e2af93f106ce
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: rdswitch.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
rdswitch.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 6e387c76ad0c9566059a9f9d957682f1
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jversion.h [39:51]
KEEP COPYRIGHT_SERVICE_LABEL 6eb2b24499a14d2c8a22f88b12735a09
BELONGS ya.make
License text:
; Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB
; Copyright (C) 2016, 2018, D. R. Commander.
; Copyright (C) 2016, Matthieu Darbois.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/i386/jquanti-avx2.asm [4:6]
KEEP COPYRIGHT_SERVICE_LABEL 6eb3d0c5f735d6c9284f341dc1236bed
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdphuff.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdphuff.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 703a7a65a9b856b35aa7c7808a7287fc
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jquant1.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jquant1.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 70c1e29ed3f2dcad843e598653327b67
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/arm/aarch32/jsimd.c [4:9]
KEEP COPYRIGHT_SERVICE_LABEL 710c192b250d11a53da1e5f641633af5
BELONGS ya.make
License text:
* Copyright (C) 2016, Siarhei Siamashka. All Rights Reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/arm/aarch64/jsimd_neon.S [11:11]
KEEP COPYRIGHT_SERVICE_LABEL 73b8c8c41571d643184b1c9d911eca42
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdmaster.c at line 11
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdmaster.c [5:12]
KEEP COPYRIGHT_SERVICE_LABEL 742c1fe44d959285f890f38257b78a56
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/arm/aarch64/jsimd.c [4:8]
KEEP COPYRIGHT_SERVICE_LABEL 7620be1aff6ecbf9c6bdaeacf1b9cc57
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
rdgif.c [26:32]
KEEP COPYRIGHT_SERVICE_LABEL 77086af1369f22e7eb3a40f2c5a423e9
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jcphuff.c at line 11, simd/i386/jcphuff-sse2.asm at line 10, simd/x86_64/jcphuff-sse2.asm at line 11
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jcphuff.c [5:12]
simd/i386/jcphuff-sse2.asm [4:4]
simd/x86_64/jcphuff-sse2.asm [5:5]
KEEP COPYRIGHT_SERVICE_LABEL 7868e712d11159d5f95f6227307c9ea9
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jccolor.c at line 10, jcsample.c at line 10, jdsample.c at line 10
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jccolor.c [5:11]
jcsample.c [5:11]
jdsample.c [5:13]
KEEP COPYRIGHT_SERVICE_LABEL 79ef6f7b35853561e461606aaf6f3d14
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jidctflt.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jidctflt.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 7e31d53b19f09cda635bcecb2051e38c
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: rdppm.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
rdppm.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 7e915a2a5af4ecd6601c584b49121ec7
BELONGS ya.make
License text:
Copyright (C)2015 Viktor Szathmáry. All Rights Reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
LICENSE.md [95:95]
KEEP COPYRIGHT_SERVICE_LABEL 804ebbe411e8d8ad599ecb18d89742e7
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jcdctmgr.c at line 10, jsimd.h at line 15, jsimd_none.c at line 15, jsimddct.h at line 12, simd/arm/aarch32/jsimd.c at line 17, simd/arm/aarch64/jsimd.c at line 16, simd/i386/jccolext-avx2.asm at line 13, simd/i386/jccolext-mmx.asm at line 13, simd/i386/jccolext-sse2.asm at line 12, simd/i386/jccolor-avx2.asm at line 13, simd/i386/jccolor-mmx.asm at line 13, simd/i386/jccolor-sse2.asm at line 12, simd/i386/jcgray-avx2.asm at line 13, simd/i386/jcgray-mmx.asm at line 13, simd/i386/jcgray-sse2.asm at line 12, simd/i386/jcgryext-avx2.asm at line 13, simd/i386/jcgryext-mmx.asm at line 13, simd/i386/jcgryext-sse2.asm at line 12, simd/i386/jchuff-sse2.asm at line 14, simd/i386/jcphuff-sse2.asm at line 12, simd/i386/jcsample-avx2.asm at line 14, simd/i386/jcsample-mmx.asm at line 13, simd/i386/jcsample-sse2.asm at line 13, simd/i386/jdcolext-avx2.asm at line 14, simd/i386/jdcolext-mmx.asm at line 13, simd/i386/jdcolext-sse2.asm at line 13, simd/i386/jdcolor-avx2.asm at line 14, simd/i386/jdcolor-mmx.asm at line 13, simd/i386/jdcolor-sse2.asm at line 13, simd/i386/jdmerge-avx2.asm at line 14, simd/i386/jdmerge-mmx.asm at line 13, simd/i386/jdmerge-sse2.asm at line 13, simd/i386/jdmrgext-avx2.asm at line 14, simd/i386/jdmrgext-mmx.asm at line 13, simd/i386/jdmrgext-sse2.asm at line 13, simd/i386/jdsample-avx2.asm at line 14, simd/i386/jdsample-mmx.asm at line 13, simd/i386/jdsample-sse2.asm at line 13, simd/i386/jfdctflt-3dn.asm at line 13, simd/i386/jfdctflt-sse.asm at line 13, simd/i386/jfdctfst-mmx.asm at line 13, simd/i386/jfdctfst-sse2.asm at line 13, simd/i386/jfdctint-avx2.asm at line 13, simd/i386/jfdctint-mmx.asm at line 13, simd/i386/jfdctint-sse2.asm at line 13, simd/i386/jidctflt-3dn.asm at line 13, simd/i386/jidctflt-sse.asm at line 13, simd/i386/jidctflt-sse2.asm at line 13, simd/i386/jidctfst-mmx.asm at line 13, simd/i386/jidctfst-sse2.asm at line 13, simd/i386/jidctint-avx2.asm at line 13, simd/i386/jidctint-mmx.asm at line 13, simd/i386/jidctint-sse2.asm at line 13, simd/i386/jidctred-mmx.asm at line 13, simd/i386/jidctred-sse2.asm at line 13, simd/i386/jquant-3dn.asm at line 13, simd/i386/jquant-mmx.asm at line 13, simd/i386/jquant-sse.asm at line 13, simd/i386/jquantf-sse2.asm at line 13, simd/i386/jquanti-avx2.asm at line 14, simd/i386/jquanti-sse2.asm at line 13, simd/i386/jsimd.c at line 14, simd/i386/jsimdcpu.asm at line 13, simd/jsimd.h at line 18, simd/nasm/jcolsamp.inc at line 13, simd/nasm/jdct.inc at line 13, simd/nasm/jsimdext.inc at line 16, simd/x86_64/jccolext-avx2.asm at line 14, simd/x86_64/jccolext-sse2.asm at line 13, simd/x86_64/jccolor-avx2.asm at line 13, simd/x86_64/jccolor-sse2.asm at line 12, simd/x86_64/jcgray-avx2.asm at line 13, simd/x86_64/jcgray-sse2.asm at line 12, simd/x86_64/jcgryext-avx2.asm at line 14, simd/x86_64/jcgryext-sse2.asm at line 13, simd/x86_64/jchuff-sse2.asm at line 14, simd/x86_64/jcphuff-sse2.asm at line 13, simd/x86_64/jcsample-avx2.asm at line 15, simd/x86_64/jcsample-sse2.asm at line 14, simd/x86_64/jdcolext-avx2.asm at line 15, simd/x86_64/jdcolext-sse2.asm at line 14, simd/x86_64/jdcolor-avx2.asm at line 14, simd/x86_64/jdcolor-sse2.asm at line 13, simd/x86_64/jdmerge-avx2.asm at line 14, simd/x86_64/jdmerge-sse2.asm at line 13, simd/x86_64/jdmrgext-avx2.asm at line 15, simd/x86_64/jdmrgext-sse2.asm at line 14, simd/x86_64/jdsample-avx2.asm at line 15, simd/x86_64/jdsample-sse2.asm at line 14, simd/x86_64/jfdctflt-sse.asm at line 13, simd/x86_64/jfdctfst-sse2.asm at line 13, simd/x86_64/jfdctint-avx2.asm at line 13, simd/x86_64/jfdctint-sse2.asm at line 13, simd/x86_64/jidctflt-sse2.asm at line 14, simd/x86_64/jidctfst-sse2.asm at line 14, simd/x86_64/jidctint-avx2.asm at line 14, simd/x86_64/jidctint-sse2.asm at line 14, simd/x86_64/jidctred-sse2.asm at line 14, simd/x86_64/jquantf-sse2.asm at line 14, simd/x86_64/jquanti-avx2.asm at line 15, simd/x86_64/jquanti-sse2.asm at line 14, simd/x86_64/jsimd.c at line 14, simd/x86_64/jsimdcpu.asm at line 14
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jcdctmgr.c [5:11]
jsimd.h [10:11]
jsimd_none.c [10:11]
jsimddct.h [7:8]
simd/arm/aarch32/jsimd.c [12:13]
simd/arm/aarch64/jsimd.c [11:12]
simd/i386/jccolext-avx2.asm [8:9]
simd/i386/jccolext-mmx.asm [8:9]
simd/i386/jccolext-sse2.asm [7:8]
simd/i386/jccolor-avx2.asm [8:9]
simd/i386/jccolor-mmx.asm [8:9]
simd/i386/jccolor-sse2.asm [7:8]
simd/i386/jcgray-avx2.asm [8:9]
simd/i386/jcgray-mmx.asm [8:9]
simd/i386/jcgray-sse2.asm [7:8]
simd/i386/jcgryext-avx2.asm [8:9]
simd/i386/jcgryext-mmx.asm [8:9]
simd/i386/jcgryext-sse2.asm [7:8]
simd/i386/jchuff-sse2.asm [9:10]
simd/i386/jcphuff-sse2.asm [7:8]
simd/i386/jcsample-avx2.asm [9:10]
simd/i386/jcsample-mmx.asm [8:9]
simd/i386/jcsample-sse2.asm [8:9]
simd/i386/jdcolext-avx2.asm [9:10]
simd/i386/jdcolext-mmx.asm [8:9]
simd/i386/jdcolext-sse2.asm [8:9]
simd/i386/jdcolor-avx2.asm [9:10]
simd/i386/jdcolor-mmx.asm [8:9]
simd/i386/jdcolor-sse2.asm [8:9]
simd/i386/jdmerge-avx2.asm [9:10]
simd/i386/jdmerge-mmx.asm [8:9]
simd/i386/jdmerge-sse2.asm [8:9]
simd/i386/jdmrgext-avx2.asm [9:10]
simd/i386/jdmrgext-mmx.asm [8:9]
simd/i386/jdmrgext-sse2.asm [8:9]
simd/i386/jdsample-avx2.asm [9:10]
simd/i386/jdsample-mmx.asm [8:9]
simd/i386/jdsample-sse2.asm [8:9]
simd/i386/jfdctflt-3dn.asm [8:9]
simd/i386/jfdctflt-sse.asm [8:9]
simd/i386/jfdctfst-mmx.asm [8:9]
simd/i386/jfdctfst-sse2.asm [8:9]
simd/i386/jfdctint-avx2.asm [8:9]
simd/i386/jfdctint-mmx.asm [8:9]
simd/i386/jfdctint-sse2.asm [8:9]
simd/i386/jidctflt-3dn.asm [8:9]
simd/i386/jidctflt-sse.asm [8:9]
simd/i386/jidctflt-sse2.asm [8:9]
simd/i386/jidctfst-mmx.asm [8:9]
simd/i386/jidctfst-sse2.asm [8:9]
simd/i386/jidctint-avx2.asm [8:9]
simd/i386/jidctint-mmx.asm [8:9]
simd/i386/jidctint-sse2.asm [8:9]
simd/i386/jidctred-mmx.asm [8:9]
simd/i386/jidctred-sse2.asm [8:9]
simd/i386/jquant-3dn.asm [8:9]
simd/i386/jquant-mmx.asm [8:9]
simd/i386/jquant-sse.asm [8:9]
simd/i386/jquantf-sse2.asm [8:9]
simd/i386/jquanti-avx2.asm [9:10]
simd/i386/jquanti-sse2.asm [8:9]
simd/i386/jsimd.c [9:10]
simd/i386/jsimdcpu.asm [8:9]
simd/jsimd.h [13:14]
simd/nasm/jcolsamp.inc [8:9]
simd/nasm/jdct.inc [8:9]
simd/nasm/jsimdext.inc [11:11]
simd/x86_64/jccolext-avx2.asm [9:10]
simd/x86_64/jccolext-sse2.asm [8:9]
simd/x86_64/jccolor-avx2.asm [8:9]
simd/x86_64/jccolor-sse2.asm [7:8]
simd/x86_64/jcgray-avx2.asm [8:9]
simd/x86_64/jcgray-sse2.asm [7:8]
simd/x86_64/jcgryext-avx2.asm [9:10]
simd/x86_64/jcgryext-sse2.asm [8:9]
simd/x86_64/jchuff-sse2.asm [9:10]
simd/x86_64/jcphuff-sse2.asm [8:9]
simd/x86_64/jcsample-avx2.asm [10:11]
simd/x86_64/jcsample-sse2.asm [9:10]
simd/x86_64/jdcolext-avx2.asm [10:11]
simd/x86_64/jdcolext-sse2.asm [9:10]
simd/x86_64/jdcolor-avx2.asm [9:10]
simd/x86_64/jdcolor-sse2.asm [8:9]
simd/x86_64/jdmerge-avx2.asm [9:10]
simd/x86_64/jdmerge-sse2.asm [8:9]
simd/x86_64/jdmrgext-avx2.asm [10:11]
simd/x86_64/jdmrgext-sse2.asm [9:10]
simd/x86_64/jdsample-avx2.asm [10:11]
simd/x86_64/jdsample-sse2.asm [9:10]
simd/x86_64/jfdctflt-sse.asm [8:9]
simd/x86_64/jfdctfst-sse2.asm [8:9]
simd/x86_64/jfdctint-avx2.asm [8:9]
simd/x86_64/jfdctint-sse2.asm [8:9]
simd/x86_64/jidctflt-sse2.asm [9:10]
simd/x86_64/jidctfst-sse2.asm [9:10]
simd/x86_64/jidctint-avx2.asm [9:10]
simd/x86_64/jidctint-sse2.asm [9:10]
simd/x86_64/jidctred-sse2.asm [9:10]
simd/x86_64/jquantf-sse2.asm [9:10]
simd/x86_64/jquanti-avx2.asm [10:11]
simd/x86_64/jquanti-sse2.asm [9:10]
simd/x86_64/jsimd.c [9:10]
simd/x86_64/jsimdcpu.asm [9:10]
KEEP COPYRIGHT_SERVICE_LABEL 841a525ae27626ed264dbe00d00a50d9
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: wrgif.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
wrgif.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL 8a887c76bccbc11714f8d4f377b95b34
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: cmyk.h at line 5, jmemnobs.c at line 6
License text:
* Copyright (C) 2017-2018, D. R. Commander.
* For conditions of distribution and use, see the accompanying README.ijg
* file.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cmyk.h [4:6]
jmemnobs.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 8ec1376dfe31abfe479581e655244a78
BELONGS ya.make
License text:
; Copyright (C) 2009-2011, 2014-2016, 2019, 2021, D. R. Commander.
; Copyright (C) 2015, Matthieu Darbois.
; Copyright (C) 2018, Matthias Räncker.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/x86_64/jchuff-sse2.asm [4:6]
KEEP COPYRIGHT_SERVICE_LABEL 8ec859db1c818c3ffcdea4ac4c67cc71
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdcolext.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdcolext.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 9355530111ca8edfbad01e55c12ca46b
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: cdjpeg.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cdjpeg.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 9493f64c85084bcb6137535faf2ccf64
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jversion.h [39:51]
KEEP COPYRIGHT_SERVICE_LABEL 950b3ffbdef23456bf92191ac52dde37
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jcsample.c at line 10
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jcsample.c [5:11]
KEEP COPYRIGHT_SERVICE_LABEL 9c0396a7c7f9feca6c67ec7d838f5e6a
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jaricom.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jaricom.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL 9c62a8ffaa91ca3d9db9dd6ce8d27046
BELONGS ya.make
License text:
; Copyright (C) 2009-2011, 2014-2017, 2019, D. R. Commander.
; Copyright (C) 2015, Matthieu Darbois.
; Copyright (C) 2018, Matthias Räncker.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/i386/jchuff-sse2.asm [4:6]
KEEP COPYRIGHT_SERVICE_LABEL 9cdcdd341cb0968b2686cc191166f66d
BELONGS ya.make
License text:
* Copyright (C)2021 Alex Richardson. All Rights Reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
turbojpeg.c [3:3]
KEEP COPYRIGHT_SERVICE_LABEL 9e8576d91d041270c2093c39ed8552e2
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jctrans.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jctrans.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL a20f5da1eab75f941a731e130170bf39
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jccolext.c at line 8, jccolor.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jccolext.c [5:9]
jccolor.c [5:11]
KEEP COPYRIGHT_SERVICE_LABEL a2cad7c40e9595118b83ad65dafbcb1a
BELONGS ya.make
License text:
* Copyright (C)2018 D. R. Commander. All Rights Reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
md5/md5.h [3:3]
KEEP COPYRIGHT_SERVICE_LABEL a445cd203767825e67800b0e187c4dcc
BELONGS ya.make
License text:
* Author: Ragesh Radhakrishnan <ragesh.r@linaro.org>
* Copyright (C) 2014-2016, 2020, D. R. Commander. All Rights Reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/arm/aarch64/jsimd_neon.S [8:9]
KEEP COPYRIGHT_SERVICE_LABEL a447aefd06b7c3fac740b17f813cc6e9
BELONGS ya.make
License text:
This software is copyright (C) 1991-2020, Thomas G. Lane, Guido Vollbeding.
All Rights Reserved except as specified below.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
README.ijg [131:132]
KEEP COPYRIGHT_SERVICE_LABEL a700f333696ed15104933df52cf87650
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: wrbmp.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
wrbmp.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL aa77cee5a8d8195aa2fa1f0fa5c1ebf2
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jversion.h [39:51]
KEEP COPYRIGHT_SERVICE_LABEL aaa3eec797321b0f95bb1e9795f5f34e
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jpegcomp.h at line 5
License text:
* Copyright (C) 2010, 2020, D. R. Commander.
* For conditions of distribution and use, see the accompanying README.ijg
* file.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jpegcomp.h [4:6]
KEEP COPYRIGHT_SERVICE_LABEL aacf1ca190af1314c3f58142073cff60
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdmerge.c at line 10
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdmerge.c [5:11]
KEEP COPYRIGHT_SERVICE_LABEL abf878d43b9b17d0a011b9f80bc0877b
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jctrans.c at line 9, simd/arm/aarch64/jchuff-neon.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jctrans.c [5:10]
simd/arm/aarch64/jchuff-neon.c [5:5]
KEEP COPYRIGHT_SERVICE_LABEL ac3e7a3bb6a2deb63101c7131904439b
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jddctmgr.c at line 11
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jddctmgr.c [5:12]
KEEP COPYRIGHT_SERVICE_LABEL ada0032ea1af459292f235d45dd781ab
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jversion.h [39:51]
KEEP COPYRIGHT_SERVICE_LABEL b03629274bce5be6f0f958bd8b73c07d
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdcoefct.c at line 10
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdcoefct.c [5:11]
KEEP COPYRIGHT_SERVICE_LABEL b0db1bfcd800910a02844b4274371034
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jmemmgr.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jmemmgr.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL b3b7c4fd496ec8e05dd719ced067a03d
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: cjpeg.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cjpeg.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL b3e70f7a6097bfd26df9355302310ed6
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jversion.h [39:51]
KEEP COPYRIGHT_SERVICE_LABEL b410f4fd6c5f864842fda8c62b52df9d
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdsample.c at line 12
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdsample.c [5:13]
KEEP COPYRIGHT_SERVICE_LABEL b441984d0e96238fe18b18f11ab30548
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/arm/aarch32/jsimd.c [4:9]
simd/arm/aarch64/jsimd.c [4:8]
KEEP COPYRIGHT_SERVICE_LABEL b4629da5b909ea766e7b89c13fbf25c3
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: wrtarga.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
wrtarga.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL b46db839fb63c2710a25a86daad4bb99
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jversion.h [39:51]
KEEP COPYRIGHT_SERVICE_LABEL b6850ac833f644f5afb115dc21780dba
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/arm/aarch32/jsimd.c [4:9]
simd/i386/jsimd.c [4:6]
KEEP COPYRIGHT_SERVICE_LABEL badd6e1fefe09e0efd808152660be992
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jstdhuff.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jstdhuff.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL bd72d4f6ff636a488895c66e5498d9e4
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/arm/aarch32/jsimd_neon.S [8:8]
simd/jsimd.h [4:10]
KEEP COPYRIGHT_SERVICE_LABEL c045da8003fea9b4c2d930832f2d1afc
BELONGS ya.make
License text:
; Copyright (C) 2009, 2016, D. R. Commander.
; Copyright (C) 2015, Intel Corporation.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/i386/jccolor-avx2.asm [4:5]
simd/i386/jccolor-mmx.asm [4:5]
simd/i386/jccolor-sse2.asm [4:4]
simd/i386/jdcolor-mmx.asm [4:5]
simd/i386/jdcolor-sse2.asm [4:5]
simd/i386/jdmerge-avx2.asm [4:6]
simd/i386/jdmerge-mmx.asm [4:5]
simd/i386/jdmerge-sse2.asm [4:5]
simd/x86_64/jccolext-avx2.asm [4:6]
simd/x86_64/jccolext-sse2.asm [4:5]
simd/x86_64/jccolor-avx2.asm [4:5]
simd/x86_64/jccolor-sse2.asm [4:4]
simd/x86_64/jcsample-avx2.asm [4:7]
simd/x86_64/jcsample-sse2.asm [4:6]
simd/x86_64/jdcolor-avx2.asm [4:6]
simd/x86_64/jdcolor-sse2.asm [4:5]
simd/x86_64/jdmerge-avx2.asm [4:6]
simd/x86_64/jdmerge-sse2.asm [4:5]
simd/x86_64/jdsample-avx2.asm [4:7]
simd/x86_64/jdsample-sse2.asm [4:6]
simd/x86_64/jfdctflt-sse.asm [4:5]
simd/x86_64/jfdctfst-sse2.asm [4:5]
simd/x86_64/jidctflt-sse2.asm [4:6]
simd/x86_64/jidctfst-sse2.asm [4:6]
simd/x86_64/jidctred-sse2.asm [4:6]
simd/x86_64/jquantf-sse2.asm [4:6]
simd/x86_64/jquanti-sse2.asm [4:6]
KEEP COPYRIGHT_SERVICE_LABEL c7de5e9b8afc872ee77656f5bafcf523
BELONGS ya.make
License text:
* Copyright (C)2009-2014, 2017-2019, 2022 D. R. Commander.
* All Rights Reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tjunittest.c [2:3]
KEEP COPYRIGHT_SERVICE_LABEL c9e55c94ede47423b60bd1b0381f63a3
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jcicc.c at line 6, jdicc.c at line 6
License text:
* Copyright (C) 1997-1998, Thomas G. Lane, Todd Newman.
* Copyright (C) 2017, D. R. Commander.
* For conditions of distribution and use, see the accompanying README.ijg
* file.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jcicc.c [4:7]
jdicc.c [4:7]
KEEP COPYRIGHT_SERVICE_LABEL caa45dec4c6ae6a1395050b3920a6223
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jmorecfg.h at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jmorecfg.h [5:10]
KEEP COPYRIGHT_SERVICE_LABEL cca2e965350198f9e77d99a7186169c6
BELONGS ya.make
License text:
* Copyright (C)2011, 2022 D. R. Commander. All Rights Reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
tjutil.h [2:2]
KEEP COPYRIGHT_SERVICE_LABEL cd2a60027b7103634f7daee878afa300
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jversion.h [39:51]
KEEP COPYRIGHT_SERVICE_LABEL cd5311d9588f1f80a8f857322ae710df
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jversion.h [39:51]
KEEP COPYRIGHT_SERVICE_LABEL cf6108444471809417e1ff2e1ff10c66
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jcapimin.c at line 9, jdapimin.c at line 9, jidctflt.c at line 9, jidctfst.c at line 9, jidctred.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jcapimin.c [5:10]
jdapimin.c [5:9]
jidctflt.c [5:10]
jidctfst.c [5:9]
jidctred.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL cf74f8592696addc8b7f018fef34b4a3
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdatadst.c at line 9, jdatasrc.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdatadst.c [5:10]
jdatasrc.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL d0282fea7b77a6dc36ff090a1ac5d3f4
BELONGS ya.make
License text:
** Copyright (C) 1988 by Jef Poskanzer.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
rdcolmap.c [31:31]
rdppm.c [33:33]
KEEP COPYRIGHT_SERVICE_LABEL d0fc83990d55b2f4c8030d020a836049
BELONGS ya.make
License text:
; Copyright (C) 2015, Intel Corporation.
; Copyright (C) 2016, D. R. Commander.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/i386/jccolext-avx2.asm [4:5]
simd/i386/jccolext-mmx.asm [4:5]
simd/i386/jccolext-sse2.asm [4:4]
simd/i386/jcsample-avx2.asm [4:6]
simd/i386/jcsample-mmx.asm [4:5]
simd/i386/jcsample-sse2.asm [4:5]
simd/i386/jdcolext-mmx.asm [4:5]
simd/i386/jdcolor-avx2.asm [4:6]
simd/i386/jdmrgext-mmx.asm [4:5]
simd/i386/jdsample-avx2.asm [4:6]
simd/i386/jdsample-mmx.asm [4:5]
simd/i386/jdsample-sse2.asm [4:5]
simd/i386/jfdctflt-3dn.asm [4:5]
simd/i386/jfdctflt-sse.asm [4:5]
simd/i386/jfdctfst-mmx.asm [4:5]
simd/i386/jfdctfst-sse2.asm [4:5]
simd/i386/jidctflt-3dn.asm [4:5]
simd/i386/jidctflt-sse.asm [4:5]
simd/i386/jidctflt-sse2.asm [4:5]
simd/i386/jidctfst-mmx.asm [4:5]
simd/i386/jidctfst-sse2.asm [4:5]
simd/i386/jidctred-mmx.asm [4:5]
simd/i386/jidctred-sse2.asm [4:5]
simd/i386/jquant-3dn.asm [4:5]
simd/i386/jquant-mmx.asm [4:5]
simd/i386/jquant-sse.asm [4:5]
simd/i386/jquantf-sse2.asm [4:5]
simd/i386/jquanti-sse2.asm [4:5]
simd/i386/jsimdcpu.asm [4:5]
simd/x86_64/jsimdcpu.asm [4:5]
KEEP COPYRIGHT_SERVICE_LABEL d5fdb3ce18ba6b39a74ec7cea4de37ab
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdsample.c at line 12
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdsample.c [5:13]
KEEP COPYRIGHT_SERVICE_LABEL d6496c342f8b2770becfe0cd5be87a4e
BELONGS ya.make
License text:
; Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB
; Copyright (C) 2010, 2016, 2018-2019, D. R. Commander.
; Copyright (C) 2018, Matthieu Darbois.
; Copyright (C) 2018, Matthias Räncker.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/nasm/jsimdext.inc [4:7]
KEEP COPYRIGHT_SERVICE_LABEL d74e6a7613a45e0d47d696d49409e0de
BELONGS ya.make
License text:
* Author: Siarhei Siamashka <siarhei.siamashka@nokia.com>
* Copyright (C) 2014, Siarhei Siamashka. All Rights Reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/arm/aarch32/jsimd_neon.S [6:7]
KEEP COPYRIGHT_SERVICE_LABEL d790272c7994ded60847851f8d898fd3
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdcol565.c at line 9, jdcolor.c at line 9, jdmaster.c at line 9, jdmerge.c at line 9, jdmrg565.c at line 9, wrbmp.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdcol565.c [5:10]
jdcolor.c [5:12]
jdmaster.c [5:12]
jdmerge.c [5:11]
jdmrg565.c [5:10]
wrbmp.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL d7bcb9862eed9e8b3be25e9b9c3c4ee1
BELONGS ya.make
License text:
; Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB
; Copyright (C) 2016, 2020, D. R. Commander.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/i386/jfdctint-mmx.asm [4:5]
simd/i386/jfdctint-sse2.asm [4:5]
simd/i386/jidctint-mmx.asm [4:5]
simd/i386/jidctint-sse2.asm [4:5]
KEEP COPYRIGHT_SERVICE_LABEL d7cbc4888488ae9309e299e88d442551
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jversion.h [39:51]
KEEP COPYRIGHT_SERVICE_LABEL d8571b0bd95f27ba489c62714ff09a44
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdatasrc-tj.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdatasrc-tj.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL dd41d14be2162054f1b10aa961d71da7
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jpeglib.h at line 10
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jpeglib.h [5:11]
KEEP COPYRIGHT_SERVICE_LABEL e151cf32655a7d62804025b92dc0da5a
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jsimd_none.c [4:7]
KEEP COPYRIGHT_SERVICE_LABEL e395a64659058a5d7d2f78850dd6d40f
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jversion.h at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jversion.h [5:9]
KEEP COPYRIGHT_SERVICE_LABEL e6ec6317701aca001fa77e6537f8c99d
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: transupp.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
transupp.c [5:9]
KEEP COPYRIGHT_SERVICE_LABEL ea6ca264cbf0bd46b9c85409e9a6108b
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: transupp.h at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
transupp.h [5:9]
KEEP COPYRIGHT_SERVICE_LABEL eb22a1dc175d45a0ad730840e22ed3b4
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jccolor.c at line 10, jcdctmgr.c at line 10, jcsample.c at line 10, jdcoefct.c at line 10, jdcoefct.h at line 10, jdcolor.c at line 10, jddctmgr.c at line 10, jdmerge.c at line 10, jdsample.c at line 10, jsimd.h at line 9, jsimd_none.c at line 9, jsimddct.h at line 9, simd/arm/aarch32/jsimd.c at line 9, simd/arm/aarch64/jsimd.c at line 9, simd/i386/jccolext-mmx.asm at line 9, simd/i386/jccolor-mmx.asm at line 9, simd/i386/jcgray-mmx.asm at line 9, simd/i386/jcgryext-mmx.asm at line 9, simd/i386/jcsample-avx2.asm at line 9, simd/i386/jcsample-mmx.asm at line 9, simd/i386/jcsample-sse2.asm at line 9, simd/i386/jdcolext-mmx.asm at line 9, simd/i386/jdcolor-avx2.asm at line 9, simd/i386/jdcolor-mmx.asm at line 9, simd/i386/jdcolor-sse2.asm at line 9, simd/i386/jdmerge-avx2.asm at line 9, simd/i386/jdmerge-mmx.asm at line 9, simd/i386/jdmerge-sse2.asm at line 9, simd/i386/jdmrgext-mmx.asm at line 9, simd/i386/jdsample-avx2.asm at line 9, simd/i386/jdsample-mmx.asm at line 9, simd/i386/jdsample-sse2.asm at line 9, simd/i386/jfdctflt-3dn.asm at line 9, simd/i386/jfdctflt-sse.asm at line 9, simd/i386/jfdctfst-mmx.asm at line 9, simd/i386/jfdctfst-sse2.asm at line 9, simd/i386/jfdctint-avx2.asm at line 9, simd/i386/jfdctint-mmx.asm at line 9, simd/i386/jfdctint-sse2.asm at line 9, simd/i386/jidctflt-3dn.asm at line 9, simd/i386/jidctflt-sse.asm at line 9, simd/i386/jidctflt-sse2.asm at line 9, simd/i386/jidctfst-mmx.asm at line 9, simd/i386/jidctfst-sse2.asm at line 9, simd/i386/jidctint-avx2.asm at line 9, simd/i386/jidctint-mmx.asm at line 9, simd/i386/jidctint-sse2.asm at line 9, simd/i386/jidctred-mmx.asm at line 9, simd/i386/jidctred-sse2.asm at line 9, simd/i386/jquant-3dn.asm at line 9, simd/i386/jquant-mmx.asm at line 9, simd/i386/jquant-sse.asm at line 9, simd/i386/jquantf-sse2.asm at line 9, simd/i386/jquanti-avx2.asm at line 9, simd/i386/jquanti-sse2.asm at line 9, simd/i386/jsimd.c at line 9, simd/i386/jsimdcpu.asm at line 9, simd/jsimd.h at line 9, simd/nasm/jcolsamp.inc at line 9, simd/nasm/jdct.inc at line 9, simd/nasm/jsimdext.inc at line 9, simd/x86_64/jcsample-avx2.asm at line 9, simd/x86_64/jcsample-sse2.asm at line 9, simd/x86_64/jdcolor-avx2.asm at line 9, simd/x86_64/jdcolor-sse2.asm at line 9, simd/x86_64/jdmerge-avx2.asm at line 9, simd/x86_64/jdmerge-sse2.asm at line 9, simd/x86_64/jdsample-avx2.asm at line 9, simd/x86_64/jdsample-sse2.asm at line 9, simd/x86_64/jfdctflt-sse.asm at line 9, simd/x86_64/jfdctfst-sse2.asm at line 9, simd/x86_64/jfdctint-avx2.asm at line 9, simd/x86_64/jfdctint-sse2.asm at line 9, simd/x86_64/jidctflt-sse2.asm at line 9, simd/x86_64/jidctfst-sse2.asm at line 9, simd/x86_64/jidctint-avx2.asm at line 9, simd/x86_64/jidctint-sse2.asm at line 9, simd/x86_64/jidctred-sse2.asm at line 9, simd/x86_64/jquantf-sse2.asm at line 9, simd/x86_64/jquanti-avx2.asm at line 9, simd/x86_64/jquanti-sse2.asm at line 9, simd/x86_64/jsimd.c at line 9, simd/x86_64/jsimdcpu.asm at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jccolor.c [5:11]
jcdctmgr.c [5:11]
jcsample.c [5:11]
jdcoefct.c [5:11]
jdcoefct.h [5:10]
jdcolor.c [5:12]
jddctmgr.c [5:12]
jdmerge.c [5:11]
jdsample.c [5:13]
jsimd.h [4:7]
jsimd_none.c [4:7]
jsimddct.h [4:4]
simd/arm/aarch32/jsimd.c [4:9]
simd/arm/aarch64/jsimd.c [4:8]
simd/i386/jccolext-mmx.asm [4:5]
simd/i386/jccolor-mmx.asm [4:5]
simd/i386/jcgray-mmx.asm [4:5]
simd/i386/jcgryext-mmx.asm [4:5]
simd/i386/jcsample-avx2.asm [4:6]
simd/i386/jcsample-mmx.asm [4:5]
simd/i386/jcsample-sse2.asm [4:5]
simd/i386/jdcolext-mmx.asm [4:5]
simd/i386/jdcolor-avx2.asm [4:6]
simd/i386/jdcolor-mmx.asm [4:5]
simd/i386/jdcolor-sse2.asm [4:5]
simd/i386/jdmerge-avx2.asm [4:6]
simd/i386/jdmerge-mmx.asm [4:5]
simd/i386/jdmerge-sse2.asm [4:5]
simd/i386/jdmrgext-mmx.asm [4:5]
simd/i386/jdsample-avx2.asm [4:6]
simd/i386/jdsample-mmx.asm [4:5]
simd/i386/jdsample-sse2.asm [4:5]
simd/i386/jfdctflt-3dn.asm [4:5]
simd/i386/jfdctflt-sse.asm [4:5]
simd/i386/jfdctfst-mmx.asm [4:5]
simd/i386/jfdctfst-sse2.asm [4:5]
simd/i386/jfdctint-avx2.asm [4:5]
simd/i386/jfdctint-mmx.asm [4:5]
simd/i386/jfdctint-sse2.asm [4:5]
simd/i386/jidctflt-3dn.asm [4:5]
simd/i386/jidctflt-sse.asm [4:5]
simd/i386/jidctflt-sse2.asm [4:5]
simd/i386/jidctfst-mmx.asm [4:5]
simd/i386/jidctfst-sse2.asm [4:5]
simd/i386/jidctint-avx2.asm [4:5]
simd/i386/jidctint-mmx.asm [4:5]
simd/i386/jidctint-sse2.asm [4:5]
simd/i386/jidctred-mmx.asm [4:5]
simd/i386/jidctred-sse2.asm [4:5]
simd/i386/jquant-3dn.asm [4:5]
simd/i386/jquant-mmx.asm [4:5]
simd/i386/jquant-sse.asm [4:5]
simd/i386/jquantf-sse2.asm [4:5]
simd/i386/jquanti-avx2.asm [4:6]
simd/i386/jquanti-sse2.asm [4:5]
simd/i386/jsimd.c [4:6]
simd/i386/jsimdcpu.asm [4:5]
simd/jsimd.h [4:10]
simd/nasm/jcolsamp.inc [4:5]
simd/nasm/jdct.inc [4:5]
simd/nasm/jsimdext.inc [4:7]
simd/x86_64/jcsample-avx2.asm [4:7]
simd/x86_64/jcsample-sse2.asm [4:6]
simd/x86_64/jdcolor-avx2.asm [4:6]
simd/x86_64/jdcolor-sse2.asm [4:5]
simd/x86_64/jdmerge-avx2.asm [4:6]
simd/x86_64/jdmerge-sse2.asm [4:5]
simd/x86_64/jdsample-avx2.asm [4:7]
simd/x86_64/jdsample-sse2.asm [4:6]
simd/x86_64/jfdctflt-sse.asm [4:5]
simd/x86_64/jfdctfst-sse2.asm [4:5]
simd/x86_64/jfdctint-avx2.asm [4:5]
simd/x86_64/jfdctint-sse2.asm [4:5]
simd/x86_64/jidctflt-sse2.asm [4:6]
simd/x86_64/jidctfst-sse2.asm [4:6]
simd/x86_64/jidctint-avx2.asm [4:6]
simd/x86_64/jidctint-sse2.asm [4:6]
simd/x86_64/jidctred-sse2.asm [4:6]
simd/x86_64/jquantf-sse2.asm [4:6]
simd/x86_64/jquanti-avx2.asm [4:7]
simd/x86_64/jquanti-sse2.asm [4:6]
simd/x86_64/jsimd.c [4:6]
simd/x86_64/jsimdcpu.asm [4:5]
KEEP COPYRIGHT_SERVICE_LABEL ec0537a229e1880f54c1d10e8cd723c3
BELONGS ya.make
License text:
; Copyright (C) 2015, Intel Corporation.
; Copyright (C) 2016, D. R. Commander.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
simd/i386/jccolext-avx2.asm [4:5]
simd/i386/jccolor-avx2.asm [4:5]
simd/i386/jcgray-avx2.asm [4:5]
simd/i386/jcgryext-avx2.asm [4:5]
simd/i386/jcsample-avx2.asm [4:6]
simd/i386/jdcolext-avx2.asm [4:6]
simd/i386/jdcolor-avx2.asm [4:6]
simd/i386/jdmerge-avx2.asm [4:6]
simd/i386/jdmrgext-avx2.asm [4:6]
simd/i386/jdsample-avx2.asm [4:6]
simd/nasm/jcolsamp.inc [4:5]
simd/x86_64/jccolext-avx2.asm [4:6]
simd/x86_64/jccolor-avx2.asm [4:5]
simd/x86_64/jcgray-avx2.asm [4:5]
simd/x86_64/jcgryext-avx2.asm [4:6]
simd/x86_64/jcsample-avx2.asm [4:7]
simd/x86_64/jdcolext-avx2.asm [4:7]
simd/x86_64/jdcolor-avx2.asm [4:6]
simd/x86_64/jdmerge-avx2.asm [4:6]
simd/x86_64/jdmrgext-avx2.asm [4:7]
simd/x86_64/jdsample-avx2.asm [4:7]
KEEP COPYRIGHT_SERVICE_LABEL ec07749745840029e5c8b2f2f7870201
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jdct.h at line 8, jfdctfst.c at line 8, jidctfst.c at line 8, jidctred.c at line 8, simd/arm/aarch32/jsimd_neon.S at line 12
License text:
* Copyright (C) 1994-1996, Thomas G. Lane.
* libjpeg-turbo Modifications:
* Copyright (C) 2015, D. R. Commander.
* For conditions of distribution and use, see the accompanying README.ijg
* file.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jdct.h [5:9]
jfdctfst.c [5:9]
jidctfst.c [5:9]
jidctred.c [5:9]
simd/arm/aarch32/jsimd_neon.S [9:9]
KEEP COPYRIGHT_SERVICE_LABEL ec986a301f4f1cd97fd36cfe73b186b7
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jcdctmgr.c at line 10
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jcdctmgr.c [5:11]
KEEP COPYRIGHT_SERVICE_LABEL ef292409cf51b45110665ff46607bac2
BELONGS ya.make
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
wrgif.c [21:30]
KEEP COPYRIGHT_SERVICE_LABEL f3ec844f0de8ce7cc9534e740161ff67
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jcmaster.c at line 9
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jcmaster.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL f45beec025a14f11290ad8d8146e8b44
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jcphuff.c at line 11
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jcphuff.c [5:12]
KEEP COPYRIGHT_SERVICE_LABEL f4d6b1166506be518b06a0d3ff4fb5a3
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: cdjpeg.c at line 8, djpeg.c at line 8, jchuff.c at line 8, jchuff.h at line 8, jcinit.c at line 8, jcmaster.c at line 8, jdcol565.c at line 8, jdcolext.c at line 8, jdcolor.c at line 8, jdhuff.c at line 8, jdhuff.h at line 8, jdinput.c at line 8, jdmaster.c at line 8, jmemmgr.c at line 8, jmorecfg.h at line 8, jpegint.h at line 8, rdgif.c at line 8, rdppm.c at line 8, simd/arm/jchuff.h at line 8, wrgif.c at line 8
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
cdjpeg.c [5:9]
djpeg.c [5:11]
jchuff.c [5:12]
jchuff.h [5:8]
jcinit.c [5:9]
jcmaster.c [5:10]
jdcol565.c [5:10]
jdcolext.c [5:9]
jdcolor.c [5:12]
jdhuff.c [5:10]
jdhuff.h [5:10]
jdinput.c [5:10]
jdmaster.c [5:12]
jmemmgr.c [5:9]
jmorecfg.h [5:10]
jpegint.h [5:12]
rdgif.c [5:10]
rdppm.c [5:10]
simd/arm/jchuff.h [5:11]
wrgif.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL f992ae275ee011ff1e8c9f49c3ce89da
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jcapistd.c at line 6, jcdctmgr.c at line 7, jcmainct.c at line 7, jcprepct.c at line 7, jdapistd.c at line 7, jdatadst-tj.c at line 7, jdatadst.c at line 7, jdatasrc-tj.c at line 7, jdatasrc.c at line 7, jdct.h at line 7, jddctmgr.c at line 7, jdmainct.c at line 7, jdmainct.h at line 7, jdmerge.c at line 7, jdmerge.h at line 7, jdmrg565.c at line 7, jdmrgext.c at line 7, jdpostct.c at line 7, jfdctflt.c at line 6, jfdctfst.c at line 7, rdbmp.c at line 7, rdcolmap.c at line 6, wrbmp.c at line 7
License text:
* Copyright (C) 1994-1996, Thomas G. Lane.
* This file is part of the Independent JPEG Group's software.
* For conditions of distribution and use, see the accompanying README.ijg
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jcapistd.c [4:6]
jcdctmgr.c [5:11]
jcmainct.c [5:8]
jcprepct.c [5:9]
jdapistd.c [5:10]
jdatadst-tj.c [5:10]
jdatadst.c [5:10]
jdatasrc-tj.c [5:10]
jdatasrc.c [5:10]
jdct.h [5:9]
jddctmgr.c [5:12]
jdmainct.c [5:9]
jdmainct.h [5:7]
jdmerge.c [5:11]
jdmerge.h [5:9]
jdmrg565.c [5:10]
jdmrgext.c [5:9]
jdpostct.c [5:8]
jfdctflt.c [4:6]
jfdctfst.c [5:9]
rdbmp.c [5:11]
rdcolmap.c [4:6]
wrbmp.c [5:10]
KEEP COPYRIGHT_SERVICE_LABEL fb1969d8022279f91786a49876542048
BELONGS ya.make
FILE_INCLUDE README.ijg found in files: jcphuff.c at line 11, jpegint.h at line 11
Note: matched license text is too long. Read it in the source files.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
jcphuff.c [5:12]
jpegint.h [5:12]
KEEP COPYRIGHT_SERVICE_LABEL ff4f68c38d54f4ee28ddb06f4c22e5e5
BELONGS ya.make
License text:
* Copyright (C)2018, D. R. Commander. All Rights Reserved.
Scancode info:
Original SPDX id: COPYRIGHT_SERVICE_LABEL
Score : 100.00
Match type : COPYRIGHT
Files with this license:
md5/md5.c [18:18]
simd/nasm/jdct.inc [4:5]
|