@manycore/aholo-splat-transform 1.2.7 → 1.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/COPYRIGHT.md +17 -0
- package/README.md +5 -5
- package/THIRD_PARTY_LICENSES.txt +1373 -0
- package/bin/cli.js +3 -3
- package/dist/SplatData.js +6 -12
- package/dist/file/esz.d.ts +11 -0
- package/dist/file/esz.js +322 -0
- package/dist/file/index.d.ts +1 -0
- package/dist/file/index.js +1 -0
- package/dist/file/ksplat.js +4 -5
- package/dist/file/lcc.js +5 -4
- package/dist/file/ply.js +8 -6
- package/dist/file/sog.js +8 -18
- package/dist/file/spz.d.ts +4 -1
- package/dist/file/spz.js +358 -175
- package/dist/native/cpp/bin/linux/binding.node +0 -0
- package/dist/native/cpp/bin/windows/binding.node +0 -0
- package/dist/native/index.js +4 -3
- package/dist/tasks/WriteTask.d.ts +1 -0
- package/dist/tasks/WriteTask.js +6 -6
- package/dist/utils/BufferReader.js +2 -4
- package/dist/utils/Logger.js +4 -2
- package/dist/utils/StreamChunkDecoder.js +1 -6
- package/dist/utils/k-means.js +0 -9
- package/dist/utils/math.js +7 -12
- package/dist/utils/splat.d.ts +3 -2
- package/dist/utils/splat.js +12 -3
- package/dist/utils/voxel/common.js +10 -28
- package/dist/utils/voxel/gpu-dilation.js +3 -12
- package/package.json +13 -4
|
@@ -0,0 +1,1373 @@
|
|
|
1
|
+
This software is based in part on the work of the Independent JPEG Group.
|
|
2
|
+
|
|
3
|
+
**Eigen**
|
|
4
|
+
|
|
5
|
+
The Eigen library is licensed under the Mozilla Public License 2.0.
|
|
6
|
+
You may obtain the source code for Eigen at https://gitlab.com/libeigen/eigen.
|
|
7
|
+
|
|
8
|
+
COPYING.README:
|
|
9
|
+
|
|
10
|
+
Eigen is primarily MPL2 licensed. See COPYING.MPL2 and these links:
|
|
11
|
+
http://www.mozilla.org/MPL/2.0/
|
|
12
|
+
http://www.mozilla.org/MPL/2.0/FAQ.html
|
|
13
|
+
|
|
14
|
+
Some files contain third-party code under BSD or other MPL2-compatible licenses,
|
|
15
|
+
whence the other COPYING.* files here.
|
|
16
|
+
|
|
17
|
+
COPYING.APACHE:
|
|
18
|
+
|
|
19
|
+
/*
|
|
20
|
+
Apache License
|
|
21
|
+
Version 2.0, January 2004
|
|
22
|
+
http://www.apache.org/licenses/
|
|
23
|
+
|
|
24
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
25
|
+
|
|
26
|
+
1. Definitions.
|
|
27
|
+
|
|
28
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
29
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
30
|
+
|
|
31
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
32
|
+
the copyright owner that is granting the License.
|
|
33
|
+
|
|
34
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
35
|
+
other entities that control, are controlled by, or are under common
|
|
36
|
+
control with that entity. For the purposes of this definition,
|
|
37
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
38
|
+
direction or management of such entity, whether by contract or
|
|
39
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
40
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
41
|
+
|
|
42
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
43
|
+
exercising permissions granted by this License.
|
|
44
|
+
|
|
45
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
46
|
+
including but not limited to software source code, documentation
|
|
47
|
+
source, and configuration files.
|
|
48
|
+
|
|
49
|
+
"Object" form shall mean any form resulting from mechanical
|
|
50
|
+
transformation or translation of a Source form, including but
|
|
51
|
+
not limited to compiled object code, generated documentation,
|
|
52
|
+
and conversions to other media types.
|
|
53
|
+
|
|
54
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
55
|
+
Object form, made available under the License, as indicated by a
|
|
56
|
+
copyright notice that is included in or attached to the work
|
|
57
|
+
(an example is provided in the Appendix below).
|
|
58
|
+
|
|
59
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
60
|
+
form, that is based on (or derived from) the Work and for which the
|
|
61
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
62
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
63
|
+
of this License, Derivative Works shall not include works that remain
|
|
64
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
65
|
+
the Work and Derivative Works thereof.
|
|
66
|
+
|
|
67
|
+
"Contribution" shall mean any work of authorship, including
|
|
68
|
+
the original version of the Work and any modifications or additions
|
|
69
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
70
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
71
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
72
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
73
|
+
means any form of electronic, verbal, or written communication sent
|
|
74
|
+
to the Licensor or its representatives, including but not limited to
|
|
75
|
+
communication on electronic mailing lists, source code control systems,
|
|
76
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
77
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
78
|
+
excluding communication that is conspicuously marked or otherwise
|
|
79
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
80
|
+
|
|
81
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
82
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
83
|
+
subsequently incorporated within the Work.
|
|
84
|
+
|
|
85
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
86
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
87
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
88
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
89
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
90
|
+
Work and such Derivative Works in Source or Object form.
|
|
91
|
+
|
|
92
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
93
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
94
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
95
|
+
(except as stated in this section) patent license to make, have made,
|
|
96
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
97
|
+
where such license applies only to those patent claims licensable
|
|
98
|
+
by such Contributor that are necessarily infringed by their
|
|
99
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
100
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
101
|
+
institute patent litigation against any entity (including a
|
|
102
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
103
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
104
|
+
or contributory patent infringement, then any patent licenses
|
|
105
|
+
granted to You under this License for that Work shall terminate
|
|
106
|
+
as of the date such litigation is filed.
|
|
107
|
+
|
|
108
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
109
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
110
|
+
modifications, and in Source or Object form, provided that You
|
|
111
|
+
meet the following conditions:
|
|
112
|
+
|
|
113
|
+
(a) You must give any other recipients of the Work or
|
|
114
|
+
Derivative Works a copy of this License; and
|
|
115
|
+
|
|
116
|
+
(b) You must cause any modified files to carry prominent notices
|
|
117
|
+
stating that You changed the files; and
|
|
118
|
+
|
|
119
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
120
|
+
that You distribute, all copyright, patent, trademark, and
|
|
121
|
+
attribution notices from the Source form of the Work,
|
|
122
|
+
excluding those notices that do not pertain to any part of
|
|
123
|
+
the Derivative Works; and
|
|
124
|
+
|
|
125
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
126
|
+
distribution, then any Derivative Works that You distribute must
|
|
127
|
+
include a readable copy of the attribution notices contained
|
|
128
|
+
within such NOTICE file, excluding those notices that do not
|
|
129
|
+
pertain to any part of the Derivative Works, in at least one
|
|
130
|
+
of the following places: within a NOTICE text file distributed
|
|
131
|
+
as part of the Derivative Works; within the Source form or
|
|
132
|
+
documentation, if provided along with the Derivative Works; or,
|
|
133
|
+
within a display generated by the Derivative Works, if and
|
|
134
|
+
wherever such third-party notices normally appear. The contents
|
|
135
|
+
of the NOTICE file are for informational purposes only and
|
|
136
|
+
do not modify the License. You may add Your own attribution
|
|
137
|
+
notices within Derivative Works that You distribute, alongside
|
|
138
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
139
|
+
that such additional attribution notices cannot be construed
|
|
140
|
+
as modifying the License.
|
|
141
|
+
|
|
142
|
+
You may add Your own copyright statement to Your modifications and
|
|
143
|
+
may provide additional or different license terms and conditions
|
|
144
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
145
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
146
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
147
|
+
the conditions stated in this License.
|
|
148
|
+
|
|
149
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
150
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
151
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
152
|
+
this License, without any additional terms or conditions.
|
|
153
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
154
|
+
the terms of any separate license agreement you may have executed
|
|
155
|
+
with Licensor regarding such Contributions.
|
|
156
|
+
|
|
157
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
158
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
159
|
+
except as required for reasonable and customary use in describing the
|
|
160
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
161
|
+
|
|
162
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
163
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
164
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
165
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
166
|
+
implied, including, without limitation, any warranties or conditions
|
|
167
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
168
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
169
|
+
appropriateness of using or redistributing the Work and assume any
|
|
170
|
+
risks associated with Your exercise of permissions under this License.
|
|
171
|
+
|
|
172
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
173
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
174
|
+
unless required by applicable law (such as deliberate and grossly
|
|
175
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
176
|
+
liable to You for damages, including any direct, indirect, special,
|
|
177
|
+
incidental, or consequential damages of any character arising as a
|
|
178
|
+
result of this License or out of the use or inability to use the
|
|
179
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
180
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
181
|
+
other commercial damages or losses), even if such Contributor
|
|
182
|
+
has been advised of the possibility of such damages.
|
|
183
|
+
|
|
184
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
185
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
186
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
187
|
+
or other liability obligations and/or rights consistent with this
|
|
188
|
+
License. However, in accepting such obligations, You may act only
|
|
189
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
190
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
191
|
+
defend, and hold each Contributor harmless for any liability
|
|
192
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
193
|
+
of your accepting any such warranty or additional liability.
|
|
194
|
+
|
|
195
|
+
END OF TERMS AND CONDITIONS
|
|
196
|
+
|
|
197
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
198
|
+
|
|
199
|
+
To apply the Apache License to your work, attach the following
|
|
200
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
201
|
+
replaced with your own identifying information. (Don't include
|
|
202
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
203
|
+
comment syntax for the file format. We also recommend that a
|
|
204
|
+
file or class name and description of purpose be included on the
|
|
205
|
+
same "printed page" as the copyright notice for easier
|
|
206
|
+
identification within third-party archives.
|
|
207
|
+
|
|
208
|
+
Copyright [yyyy] [name of copyright owner]
|
|
209
|
+
|
|
210
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
211
|
+
you may not use this file except in compliance with the License.
|
|
212
|
+
You may obtain a copy of the License at
|
|
213
|
+
|
|
214
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
215
|
+
|
|
216
|
+
Unless required by applicable law or agreed to in writing, software
|
|
217
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
218
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
219
|
+
See the License for the specific language governing permissions and
|
|
220
|
+
limitations under the License.
|
|
221
|
+
*/
|
|
222
|
+
|
|
223
|
+
COPYING.BSD:
|
|
224
|
+
|
|
225
|
+
/*
|
|
226
|
+
Copyright (c) 2011, Intel Corporation. All rights reserved.
|
|
227
|
+
|
|
228
|
+
Redistribution and use in source and binary forms, with or without modification,
|
|
229
|
+
are permitted provided that the following conditions are met:
|
|
230
|
+
|
|
231
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
232
|
+
list of conditions and the following disclaimer.
|
|
233
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
234
|
+
this list of conditions and the following disclaimer in the documentation
|
|
235
|
+
and/or other materials provided with the distribution.
|
|
236
|
+
* Neither the name of Intel Corporation nor the names of its contributors may
|
|
237
|
+
be used to endorse or promote products derived from this software without
|
|
238
|
+
specific prior written permission.
|
|
239
|
+
|
|
240
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
241
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
242
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
243
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
|
244
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
245
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
246
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
247
|
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
248
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
249
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
250
|
+
*/
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
COPYING.MINPACK:
|
|
254
|
+
|
|
255
|
+
Minpack Copyright Notice (1999) University of Chicago. All rights reserved
|
|
256
|
+
|
|
257
|
+
Redistribution and use in source and binary forms, with or
|
|
258
|
+
without modification, are permitted provided that the
|
|
259
|
+
following conditions are met:
|
|
260
|
+
|
|
261
|
+
1. Redistributions of source code must retain the above
|
|
262
|
+
copyright notice, this list of conditions and the following
|
|
263
|
+
disclaimer.
|
|
264
|
+
|
|
265
|
+
2. Redistributions in binary form must reproduce the above
|
|
266
|
+
copyright notice, this list of conditions and the following
|
|
267
|
+
disclaimer in the documentation and/or other materials
|
|
268
|
+
provided with the distribution.
|
|
269
|
+
|
|
270
|
+
3. The end-user documentation included with the
|
|
271
|
+
redistribution, if any, must include the following
|
|
272
|
+
acknowledgment:
|
|
273
|
+
|
|
274
|
+
"This product includes software developed by the
|
|
275
|
+
University of Chicago, as Operator of Argonne National
|
|
276
|
+
Laboratory.
|
|
277
|
+
|
|
278
|
+
Alternately, this acknowledgment may appear in the software
|
|
279
|
+
itself, if and wherever such third-party acknowledgments
|
|
280
|
+
normally appear.
|
|
281
|
+
|
|
282
|
+
4. WARRANTY DISCLAIMER. THE SOFTWARE IS SUPPLIED "AS IS"
|
|
283
|
+
WITHOUT WARRANTY OF ANY KIND. THE COPYRIGHT HOLDER, THE
|
|
284
|
+
UNITED STATES, THE UNITED STATES DEPARTMENT OF ENERGY, AND
|
|
285
|
+
THEIR EMPLOYEES: (1) DISCLAIM ANY WARRANTIES, EXPRESS OR
|
|
286
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO ANY IMPLIED WARRANTIES
|
|
287
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE
|
|
288
|
+
OR NON-INFRINGEMENT, (2) DO NOT ASSUME ANY LEGAL LIABILITY
|
|
289
|
+
OR RESPONSIBILITY FOR THE ACCURACY, COMPLETENESS, OR
|
|
290
|
+
USEFULNESS OF THE SOFTWARE, (3) DO NOT REPRESENT THAT USE OF
|
|
291
|
+
THE SOFTWARE WOULD NOT INFRINGE PRIVATELY OWNED RIGHTS, (4)
|
|
292
|
+
DO NOT WARRANT THAT THE SOFTWARE WILL FUNCTION
|
|
293
|
+
UNINTERRUPTED, THAT IT IS ERROR-FREE OR THAT ANY ERRORS WILL
|
|
294
|
+
BE CORRECTED.
|
|
295
|
+
|
|
296
|
+
5. LIMITATION OF LIABILITY. IN NO EVENT WILL THE COPYRIGHT
|
|
297
|
+
HOLDER, THE UNITED STATES, THE UNITED STATES DEPARTMENT OF
|
|
298
|
+
ENERGY, OR THEIR EMPLOYEES: BE LIABLE FOR ANY INDIRECT,
|
|
299
|
+
INCIDENTAL, CONSEQUENTIAL, SPECIAL OR PUNITIVE DAMAGES OF
|
|
300
|
+
ANY KIND OR NATURE, INCLUDING BUT NOT LIMITED TO LOSS OF
|
|
301
|
+
PROFITS OR LOSS OF DATA, FOR ANY REASON WHATSOEVER, WHETHER
|
|
302
|
+
SUCH LIABILITY IS ASSERTED ON THE BASIS OF CONTRACT, TORT
|
|
303
|
+
(INCLUDING NEGLIGENCE OR STRICT LIABILITY), OR OTHERWISE,
|
|
304
|
+
EVEN IF ANY OF SAID PARTIES HAS BEEN WARNED OF THE
|
|
305
|
+
POSSIBILITY OF SUCH LOSS OR DAMAGES.
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
COPYING.MPL2:
|
|
309
|
+
|
|
310
|
+
Mozilla Public License Version 2.0
|
|
311
|
+
==================================
|
|
312
|
+
|
|
313
|
+
1. Definitions
|
|
314
|
+
--------------
|
|
315
|
+
|
|
316
|
+
1.1. "Contributor"
|
|
317
|
+
means each individual or legal entity that creates, contributes to
|
|
318
|
+
the creation of, or owns Covered Software.
|
|
319
|
+
|
|
320
|
+
1.2. "Contributor Version"
|
|
321
|
+
means the combination of the Contributions of others (if any) used
|
|
322
|
+
by a Contributor and that particular Contributor's Contribution.
|
|
323
|
+
|
|
324
|
+
1.3. "Contribution"
|
|
325
|
+
means Covered Software of a particular Contributor.
|
|
326
|
+
|
|
327
|
+
1.4. "Covered Software"
|
|
328
|
+
means Source Code Form to which the initial Contributor has attached
|
|
329
|
+
the notice in Exhibit A, the Executable Form of such Source Code
|
|
330
|
+
Form, and Modifications of such Source Code Form, in each case
|
|
331
|
+
including portions thereof.
|
|
332
|
+
|
|
333
|
+
1.5. "Incompatible With Secondary Licenses"
|
|
334
|
+
means
|
|
335
|
+
|
|
336
|
+
(a) that the initial Contributor has attached the notice described
|
|
337
|
+
in Exhibit B to the Covered Software; or
|
|
338
|
+
|
|
339
|
+
(b) that the Covered Software was made available under the terms of
|
|
340
|
+
version 1.1 or earlier of the License, but not also under the
|
|
341
|
+
terms of a Secondary License.
|
|
342
|
+
|
|
343
|
+
1.6. "Executable Form"
|
|
344
|
+
means any form of the work other than Source Code Form.
|
|
345
|
+
|
|
346
|
+
1.7. "Larger Work"
|
|
347
|
+
means a work that combines Covered Software with other material, in
|
|
348
|
+
a separate file or files, that is not Covered Software.
|
|
349
|
+
|
|
350
|
+
1.8. "License"
|
|
351
|
+
means this document.
|
|
352
|
+
|
|
353
|
+
1.9. "Licensable"
|
|
354
|
+
means having the right to grant, to the maximum extent possible,
|
|
355
|
+
whether at the time of the initial grant or subsequently, any and
|
|
356
|
+
all of the rights conveyed by this License.
|
|
357
|
+
|
|
358
|
+
1.10. "Modifications"
|
|
359
|
+
means any of the following:
|
|
360
|
+
|
|
361
|
+
(a) any file in Source Code Form that results from an addition to,
|
|
362
|
+
deletion from, or modification of the contents of Covered
|
|
363
|
+
Software; or
|
|
364
|
+
|
|
365
|
+
(b) any new file in Source Code Form that contains any Covered
|
|
366
|
+
Software.
|
|
367
|
+
|
|
368
|
+
1.11. "Patent Claims" of a Contributor
|
|
369
|
+
means any patent claim(s), including without limitation, method,
|
|
370
|
+
process, and apparatus claims, in any patent Licensable by such
|
|
371
|
+
Contributor that would be infringed, but for the grant of the
|
|
372
|
+
License, by the making, using, selling, offering for sale, having
|
|
373
|
+
made, import, or transfer of either its Contributions or its
|
|
374
|
+
Contributor Version.
|
|
375
|
+
|
|
376
|
+
1.12. "Secondary License"
|
|
377
|
+
means either the GNU General Public License, Version 2.0, the GNU
|
|
378
|
+
Lesser General Public License, Version 2.1, the GNU Affero General
|
|
379
|
+
Public License, Version 3.0, or any later versions of those
|
|
380
|
+
licenses.
|
|
381
|
+
|
|
382
|
+
1.13. "Source Code Form"
|
|
383
|
+
means the form of the work preferred for making modifications.
|
|
384
|
+
|
|
385
|
+
1.14. "You" (or "Your")
|
|
386
|
+
means an individual or a legal entity exercising rights under this
|
|
387
|
+
License. For legal entities, "You" includes any entity that
|
|
388
|
+
controls, is controlled by, or is under common control with You. For
|
|
389
|
+
purposes of this definition, "control" means (a) the power, direct
|
|
390
|
+
or indirect, to cause the direction or management of such entity,
|
|
391
|
+
whether by contract or otherwise, or (b) ownership of more than
|
|
392
|
+
fifty percent (50%) of the outstanding shares or beneficial
|
|
393
|
+
ownership of such entity.
|
|
394
|
+
|
|
395
|
+
2. License Grants and Conditions
|
|
396
|
+
--------------------------------
|
|
397
|
+
|
|
398
|
+
2.1. Grants
|
|
399
|
+
|
|
400
|
+
Each Contributor hereby grants You a world-wide, royalty-free,
|
|
401
|
+
non-exclusive license:
|
|
402
|
+
|
|
403
|
+
(a) under intellectual property rights (other than patent or trademark)
|
|
404
|
+
Licensable by such Contributor to use, reproduce, make available,
|
|
405
|
+
modify, display, perform, distribute, and otherwise exploit its
|
|
406
|
+
Contributions, either on an unmodified basis, with Modifications, or
|
|
407
|
+
as part of a Larger Work; and
|
|
408
|
+
|
|
409
|
+
(b) under Patent Claims of such Contributor to make, use, sell, offer
|
|
410
|
+
for sale, have made, import, and otherwise transfer either its
|
|
411
|
+
Contributions or its Contributor Version.
|
|
412
|
+
|
|
413
|
+
2.2. Effective Date
|
|
414
|
+
|
|
415
|
+
The licenses granted in Section 2.1 with respect to any Contribution
|
|
416
|
+
become effective for each Contribution on the date the Contributor first
|
|
417
|
+
distributes such Contribution.
|
|
418
|
+
|
|
419
|
+
2.3. Limitations on Grant Scope
|
|
420
|
+
|
|
421
|
+
The licenses granted in this Section 2 are the only rights granted under
|
|
422
|
+
this License. No additional rights or licenses will be implied from the
|
|
423
|
+
distribution or licensing of Covered Software under this License.
|
|
424
|
+
Notwithstanding Section 2.1(b) above, no patent license is granted by a
|
|
425
|
+
Contributor:
|
|
426
|
+
|
|
427
|
+
(a) for any code that a Contributor has removed from Covered Software;
|
|
428
|
+
or
|
|
429
|
+
|
|
430
|
+
(b) for infringements caused by: (i) Your and any other third party's
|
|
431
|
+
modifications of Covered Software, or (ii) the combination of its
|
|
432
|
+
Contributions with other software (except as part of its Contributor
|
|
433
|
+
Version); or
|
|
434
|
+
|
|
435
|
+
(c) under Patent Claims infringed by Covered Software in the absence of
|
|
436
|
+
its Contributions.
|
|
437
|
+
|
|
438
|
+
This License does not grant any rights in the trademarks, service marks,
|
|
439
|
+
or logos of any Contributor (except as may be necessary to comply with
|
|
440
|
+
the notice requirements in Section 3.4).
|
|
441
|
+
|
|
442
|
+
2.4. Subsequent Licenses
|
|
443
|
+
|
|
444
|
+
No Contributor makes additional grants as a result of Your choice to
|
|
445
|
+
distribute the Covered Software under a subsequent version of this
|
|
446
|
+
License (see Section 10.2) or under the terms of a Secondary License (if
|
|
447
|
+
permitted under the terms of Section 3.3).
|
|
448
|
+
|
|
449
|
+
2.5. Representation
|
|
450
|
+
|
|
451
|
+
Each Contributor represents that the Contributor believes its
|
|
452
|
+
Contributions are its original creation(s) or it has sufficient rights
|
|
453
|
+
to grant the rights to its Contributions conveyed by this License.
|
|
454
|
+
|
|
455
|
+
2.6. Fair Use
|
|
456
|
+
|
|
457
|
+
This License is not intended to limit any rights You have under
|
|
458
|
+
applicable copyright doctrines of fair use, fair dealing, or other
|
|
459
|
+
equivalents.
|
|
460
|
+
|
|
461
|
+
2.7. Conditions
|
|
462
|
+
|
|
463
|
+
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
|
|
464
|
+
in Section 2.1.
|
|
465
|
+
|
|
466
|
+
3. Responsibilities
|
|
467
|
+
-------------------
|
|
468
|
+
|
|
469
|
+
3.1. Distribution of Source Form
|
|
470
|
+
|
|
471
|
+
All distribution of Covered Software in Source Code Form, including any
|
|
472
|
+
Modifications that You create or to which You contribute, must be under
|
|
473
|
+
the terms of this License. You must inform recipients that the Source
|
|
474
|
+
Code Form of the Covered Software is governed by the terms of this
|
|
475
|
+
License, and how they can obtain a copy of this License. You may not
|
|
476
|
+
attempt to alter or restrict the recipients' rights in the Source Code
|
|
477
|
+
Form.
|
|
478
|
+
|
|
479
|
+
3.2. Distribution of Executable Form
|
|
480
|
+
|
|
481
|
+
If You distribute Covered Software in Executable Form then:
|
|
482
|
+
|
|
483
|
+
(a) such Covered Software must also be made available in Source Code
|
|
484
|
+
Form, as described in Section 3.1, and You must inform recipients of
|
|
485
|
+
the Executable Form how they can obtain a copy of such Source Code
|
|
486
|
+
Form by reasonable means in a timely manner, at a charge no more
|
|
487
|
+
than the cost of distribution to the recipient; and
|
|
488
|
+
|
|
489
|
+
(b) You may distribute such Executable Form under the terms of this
|
|
490
|
+
License, or sublicense it under different terms, provided that the
|
|
491
|
+
license for the Executable Form does not attempt to limit or alter
|
|
492
|
+
the recipients' rights in the Source Code Form under this License.
|
|
493
|
+
|
|
494
|
+
3.3. Distribution of a Larger Work
|
|
495
|
+
|
|
496
|
+
You may create and distribute a Larger Work under terms of Your choice,
|
|
497
|
+
provided that You also comply with the requirements of this License for
|
|
498
|
+
the Covered Software. If the Larger Work is a combination of Covered
|
|
499
|
+
Software with a work governed by one or more Secondary Licenses, and the
|
|
500
|
+
Covered Software is not Incompatible With Secondary Licenses, this
|
|
501
|
+
License permits You to additionally distribute such Covered Software
|
|
502
|
+
under the terms of such Secondary License(s), so that the recipient of
|
|
503
|
+
the Larger Work may, at their option, further distribute the Covered
|
|
504
|
+
Software under the terms of either this License or such Secondary
|
|
505
|
+
License(s).
|
|
506
|
+
|
|
507
|
+
3.4. Notices
|
|
508
|
+
|
|
509
|
+
You may not remove or alter the substance of any license notices
|
|
510
|
+
(including copyright notices, patent notices, disclaimers of warranty,
|
|
511
|
+
or limitations of liability) contained within the Source Code Form of
|
|
512
|
+
the Covered Software, except that You may alter any license notices to
|
|
513
|
+
the extent required to remedy known factual inaccuracies.
|
|
514
|
+
|
|
515
|
+
3.5. Application of Additional Terms
|
|
516
|
+
|
|
517
|
+
You may choose to offer, and to charge a fee for, warranty, support,
|
|
518
|
+
indemnity or liability obligations to one or more recipients of Covered
|
|
519
|
+
Software. However, You may do so only on Your own behalf, and not on
|
|
520
|
+
behalf of any Contributor. You must make it absolutely clear that any
|
|
521
|
+
such warranty, support, indemnity, or liability obligation is offered by
|
|
522
|
+
You alone, and You hereby agree to indemnify every Contributor for any
|
|
523
|
+
liability incurred by such Contributor as a result of warranty, support,
|
|
524
|
+
indemnity or liability terms You offer. You may include additional
|
|
525
|
+
disclaimers of warranty and limitations of liability specific to any
|
|
526
|
+
jurisdiction.
|
|
527
|
+
|
|
528
|
+
4. Inability to Comply Due to Statute or Regulation
|
|
529
|
+
---------------------------------------------------
|
|
530
|
+
|
|
531
|
+
If it is impossible for You to comply with any of the terms of this
|
|
532
|
+
License with respect to some or all of the Covered Software due to
|
|
533
|
+
statute, judicial order, or regulation then You must: (a) comply with
|
|
534
|
+
the terms of this License to the maximum extent possible; and (b)
|
|
535
|
+
describe the limitations and the code they affect. Such description must
|
|
536
|
+
be placed in a text file included with all distributions of the Covered
|
|
537
|
+
Software under this License. Except to the extent prohibited by statute
|
|
538
|
+
or regulation, such description must be sufficiently detailed for a
|
|
539
|
+
recipient of ordinary skill to be able to understand it.
|
|
540
|
+
|
|
541
|
+
5. Termination
|
|
542
|
+
--------------
|
|
543
|
+
|
|
544
|
+
5.1. The rights granted under this License will terminate automatically
|
|
545
|
+
if You fail to comply with any of its terms. However, if You become
|
|
546
|
+
compliant, then the rights granted under this License from a particular
|
|
547
|
+
Contributor are reinstated (a) provisionally, unless and until such
|
|
548
|
+
Contributor explicitly and finally terminates Your grants, and (b) on an
|
|
549
|
+
ongoing basis, if such Contributor fails to notify You of the
|
|
550
|
+
non-compliance by some reasonable means prior to 60 days after You have
|
|
551
|
+
come back into compliance. Moreover, Your grants from a particular
|
|
552
|
+
Contributor are reinstated on an ongoing basis if such Contributor
|
|
553
|
+
notifies You of the non-compliance by some reasonable means, this is the
|
|
554
|
+
first time You have received notice of non-compliance with this License
|
|
555
|
+
from such Contributor, and You become compliant prior to 30 days after
|
|
556
|
+
Your receipt of the notice.
|
|
557
|
+
|
|
558
|
+
5.2. If You initiate litigation against any entity by asserting a patent
|
|
559
|
+
infringement claim (excluding declaratory judgment actions,
|
|
560
|
+
counter-claims, and cross-claims) alleging that a Contributor Version
|
|
561
|
+
directly or indirectly infringes any patent, then the rights granted to
|
|
562
|
+
You by any and all Contributors for the Covered Software under Section
|
|
563
|
+
2.1 of this License shall terminate.
|
|
564
|
+
|
|
565
|
+
5.3. In the event of termination under Sections 5.1 or 5.2 above, all
|
|
566
|
+
end user license agreements (excluding distributors and resellers) which
|
|
567
|
+
have been validly granted by You or Your distributors under this License
|
|
568
|
+
prior to termination shall survive termination.
|
|
569
|
+
|
|
570
|
+
************************************************************************
|
|
571
|
+
* *
|
|
572
|
+
* 6. Disclaimer of Warranty *
|
|
573
|
+
* ------------------------- *
|
|
574
|
+
* *
|
|
575
|
+
* Covered Software is provided under this License on an "as is" *
|
|
576
|
+
* basis, without warranty of any kind, either expressed, implied, or *
|
|
577
|
+
* statutory, including, without limitation, warranties that the *
|
|
578
|
+
* Covered Software is free of defects, merchantable, fit for a *
|
|
579
|
+
* particular purpose or non-infringing. The entire risk as to the *
|
|
580
|
+
* quality and performance of the Covered Software is with You. *
|
|
581
|
+
* Should any Covered Software prove defective in any respect, You *
|
|
582
|
+
* (not any Contributor) assume the cost of any necessary servicing, *
|
|
583
|
+
* repair, or correction. This disclaimer of warranty constitutes an *
|
|
584
|
+
* essential part of this License. No use of any Covered Software is *
|
|
585
|
+
* authorized under this License except under this disclaimer. *
|
|
586
|
+
* *
|
|
587
|
+
************************************************************************
|
|
588
|
+
|
|
589
|
+
************************************************************************
|
|
590
|
+
* *
|
|
591
|
+
* 7. Limitation of Liability *
|
|
592
|
+
* -------------------------- *
|
|
593
|
+
* *
|
|
594
|
+
* Under no circumstances and under no legal theory, whether tort *
|
|
595
|
+
* (including negligence), contract, or otherwise, shall any *
|
|
596
|
+
* Contributor, or anyone who distributes Covered Software as *
|
|
597
|
+
* permitted above, be liable to You for any direct, indirect, *
|
|
598
|
+
* special, incidental, or consequential damages of any character *
|
|
599
|
+
* including, without limitation, damages for lost profits, loss of *
|
|
600
|
+
* goodwill, work stoppage, computer failure or malfunction, or any *
|
|
601
|
+
* and all other commercial damages or losses, even if such party *
|
|
602
|
+
* shall have been informed of the possibility of such damages. This *
|
|
603
|
+
* limitation of liability shall not apply to liability for death or *
|
|
604
|
+
* personal injury resulting from such party's negligence to the *
|
|
605
|
+
* extent applicable law prohibits such limitation. Some *
|
|
606
|
+
* jurisdictions do not allow the exclusion or limitation of *
|
|
607
|
+
* incidental or consequential damages, so this exclusion and *
|
|
608
|
+
* limitation may not apply to You. *
|
|
609
|
+
* *
|
|
610
|
+
************************************************************************
|
|
611
|
+
|
|
612
|
+
8. Litigation
|
|
613
|
+
-------------
|
|
614
|
+
|
|
615
|
+
Any litigation relating to this License may be brought only in the
|
|
616
|
+
courts of a jurisdiction where the defendant maintains its principal
|
|
617
|
+
place of business and such litigation shall be governed by laws of that
|
|
618
|
+
jurisdiction, without reference to its conflict-of-law provisions.
|
|
619
|
+
Nothing in this Section shall prevent a party's ability to bring
|
|
620
|
+
cross-claims or counter-claims.
|
|
621
|
+
|
|
622
|
+
9. Miscellaneous
|
|
623
|
+
----------------
|
|
624
|
+
|
|
625
|
+
This License represents the complete agreement concerning the subject
|
|
626
|
+
matter hereof. If any provision of this License is held to be
|
|
627
|
+
unenforceable, such provision shall be reformed only to the extent
|
|
628
|
+
necessary to make it enforceable. Any law or regulation which provides
|
|
629
|
+
that the language of a contract shall be construed against the drafter
|
|
630
|
+
shall not be used to construe this License against a Contributor.
|
|
631
|
+
|
|
632
|
+
10. Versions of the License
|
|
633
|
+
---------------------------
|
|
634
|
+
|
|
635
|
+
10.1. New Versions
|
|
636
|
+
|
|
637
|
+
Mozilla Foundation is the license steward. Except as provided in Section
|
|
638
|
+
10.3, no one other than the license steward has the right to modify or
|
|
639
|
+
publish new versions of this License. Each version will be given a
|
|
640
|
+
distinguishing version number.
|
|
641
|
+
|
|
642
|
+
10.2. Effect of New Versions
|
|
643
|
+
|
|
644
|
+
You may distribute the Covered Software under the terms of the version
|
|
645
|
+
of the License under which You originally received the Covered Software,
|
|
646
|
+
or under the terms of any subsequent version published by the license
|
|
647
|
+
steward.
|
|
648
|
+
|
|
649
|
+
10.3. Modified Versions
|
|
650
|
+
|
|
651
|
+
If you create software not governed by this License, and you want to
|
|
652
|
+
create a new license for such software, you may create and use a
|
|
653
|
+
modified version of this License if you rename the license and remove
|
|
654
|
+
any references to the name of the license steward (except to note that
|
|
655
|
+
such modified license differs from this License).
|
|
656
|
+
|
|
657
|
+
10.4. Distributing Source Code Form that is Incompatible With Secondary
|
|
658
|
+
Licenses
|
|
659
|
+
|
|
660
|
+
If You choose to distribute Source Code Form that is Incompatible With
|
|
661
|
+
Secondary Licenses under the terms of this version of the License, the
|
|
662
|
+
notice described in Exhibit B of this License must be attached.
|
|
663
|
+
|
|
664
|
+
Exhibit A - Source Code Form License Notice
|
|
665
|
+
-------------------------------------------
|
|
666
|
+
|
|
667
|
+
This Source Code Form is subject to the terms of the Mozilla Public
|
|
668
|
+
License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
669
|
+
file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
670
|
+
|
|
671
|
+
If it is not possible or desirable to put the notice in a particular
|
|
672
|
+
file, then You may include the notice in a location (such as a LICENSE
|
|
673
|
+
file in a relevant directory) where a recipient would be likely to look
|
|
674
|
+
for such a notice.
|
|
675
|
+
|
|
676
|
+
You may add additional accurate notices of copyright ownership.
|
|
677
|
+
|
|
678
|
+
Exhibit B - "Incompatible With Secondary Licenses" Notice
|
|
679
|
+
---------------------------------------------------------
|
|
680
|
+
|
|
681
|
+
This Source Code Form is "Incompatible With Secondary Licenses", as
|
|
682
|
+
defined by the Mozilla Public License, v. 2.0.
|
|
683
|
+
|
|
684
|
+
------------------------------------------------------------------------------
|
|
685
|
+
|
|
686
|
+
**nanoflann**
|
|
687
|
+
|
|
688
|
+
Software License Agreement (BSD License)
|
|
689
|
+
|
|
690
|
+
Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved.
|
|
691
|
+
Copyright 2008-2009 David G. Lowe (lowe@cs.ubc.ca). All rights reserved.
|
|
692
|
+
Copyright 2011 Jose L. Blanco (joseluisblancoc@gmail.com). All rights reserved.
|
|
693
|
+
|
|
694
|
+
THE BSD LICENSE
|
|
695
|
+
|
|
696
|
+
Redistribution and use in source and binary forms, with or without
|
|
697
|
+
modification, are permitted provided that the following conditions
|
|
698
|
+
are met:
|
|
699
|
+
|
|
700
|
+
1. Redistributions of source code must retain the above copyright
|
|
701
|
+
notice, this list of conditions and the following disclaimer.
|
|
702
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
703
|
+
notice, this list of conditions and the following disclaimer in the
|
|
704
|
+
documentation and/or other materials provided with the distribution.
|
|
705
|
+
|
|
706
|
+
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
707
|
+
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
708
|
+
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
709
|
+
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
710
|
+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
711
|
+
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
712
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
713
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
714
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
715
|
+
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
716
|
+
|
|
717
|
+
------------------------------------------------------------------------------
|
|
718
|
+
|
|
719
|
+
**aom**
|
|
720
|
+
|
|
721
|
+
Copyright (c) 2016, Alliance for Open Media. All rights reserved.
|
|
722
|
+
Redistribution and use in source and binary forms, with or without
|
|
723
|
+
modification, are permitted provided that the following conditions
|
|
724
|
+
are met:
|
|
725
|
+
1. Redistributions of source code must retain the above copyright
|
|
726
|
+
notice, this list of conditions and the following disclaimer.
|
|
727
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
728
|
+
notice, this list of conditions and the following disclaimer in
|
|
729
|
+
the documentation and/or other materials provided with the
|
|
730
|
+
distribution.
|
|
731
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
732
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
733
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
734
|
+
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
735
|
+
COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
736
|
+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
737
|
+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
738
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
739
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
740
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
741
|
+
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
742
|
+
POSSIBILITY OF SUCH DAMAGE.
|
|
743
|
+
|
|
744
|
+
------------------------------------------------------------------------------
|
|
745
|
+
|
|
746
|
+
**libavif**
|
|
747
|
+
|
|
748
|
+
Copyright 2019 Joe Drago. All rights reserved.
|
|
749
|
+
|
|
750
|
+
Redistribution and use in source and binary forms, with or without
|
|
751
|
+
modification, are permitted provided that the following conditions are met:
|
|
752
|
+
|
|
753
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
754
|
+
list of conditions and the following disclaimer.
|
|
755
|
+
|
|
756
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
757
|
+
this list of conditions and the following disclaimer in the documentation
|
|
758
|
+
and/or other materials provided with the distribution.
|
|
759
|
+
|
|
760
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
761
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
762
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
763
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
764
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
765
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
766
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
767
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
768
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
769
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
770
|
+
|
|
771
|
+
------------------------------------------------------------------------------
|
|
772
|
+
|
|
773
|
+
Files: src/obu.c
|
|
774
|
+
|
|
775
|
+
Copyright © 2018-2019, VideoLAN and dav1d authors
|
|
776
|
+
All rights reserved.
|
|
777
|
+
|
|
778
|
+
Redistribution and use in source and binary forms, with or without
|
|
779
|
+
modification, are permitted provided that the following conditions are met:
|
|
780
|
+
|
|
781
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
782
|
+
list of conditions and the following disclaimer.
|
|
783
|
+
|
|
784
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
785
|
+
this list of conditions and the following disclaimer in the documentation
|
|
786
|
+
and/or other materials provided with the distribution.
|
|
787
|
+
|
|
788
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
789
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
790
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
791
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
|
792
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
793
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
794
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
795
|
+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
796
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
797
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
798
|
+
|
|
799
|
+
------------------------------------------------------------------------------
|
|
800
|
+
|
|
801
|
+
Files: third_party/iccjpeg/*
|
|
802
|
+
|
|
803
|
+
In plain English:
|
|
804
|
+
|
|
805
|
+
1. We don't promise that this software works. (But if you find any bugs,
|
|
806
|
+
please let us know!)
|
|
807
|
+
2. You can use this software for whatever you want. You don't have to pay us.
|
|
808
|
+
3. You may not pretend that you wrote this software. If you use it in a
|
|
809
|
+
program, you must acknowledge somewhere in your documentation that
|
|
810
|
+
you've used the IJG code.
|
|
811
|
+
|
|
812
|
+
In legalese:
|
|
813
|
+
|
|
814
|
+
The authors make NO WARRANTY or representation, either express or implied,
|
|
815
|
+
with respect to this software, its quality, accuracy, merchantability, or
|
|
816
|
+
fitness for a particular purpose. This software is provided "AS IS", and you,
|
|
817
|
+
its user, assume the entire risk as to its quality and accuracy.
|
|
818
|
+
|
|
819
|
+
This software is copyright (C) 1991-2013, Thomas G. Lane, Guido Vollbeding.
|
|
820
|
+
All Rights Reserved except as specified below.
|
|
821
|
+
|
|
822
|
+
Permission is hereby granted to use, copy, modify, and distribute this
|
|
823
|
+
software (or portions thereof) for any purpose, without fee, subject to these
|
|
824
|
+
conditions:
|
|
825
|
+
(1) If any part of the source code for this software is distributed, then this
|
|
826
|
+
README file must be included, with this copyright and no-warranty notice
|
|
827
|
+
unaltered; and any additions, deletions, or changes to the original files
|
|
828
|
+
must be clearly indicated in accompanying documentation.
|
|
829
|
+
(2) If only executable code is distributed, then the accompanying
|
|
830
|
+
documentation must state that "this software is based in part on the work of
|
|
831
|
+
the Independent JPEG Group".
|
|
832
|
+
(3) Permission for use of this software is granted only if the user accepts
|
|
833
|
+
full responsibility for any undesirable consequences; the authors accept
|
|
834
|
+
NO LIABILITY for damages of any kind.
|
|
835
|
+
|
|
836
|
+
These conditions apply to any software derived from or based on the IJG code,
|
|
837
|
+
not just to the unmodified library. If you use our work, you ought to
|
|
838
|
+
acknowledge us.
|
|
839
|
+
|
|
840
|
+
Permission is NOT granted for the use of any IJG author's name or company name
|
|
841
|
+
in advertising or publicity relating to this software or products derived from
|
|
842
|
+
it. This software may be referred to only as "the Independent JPEG Group's
|
|
843
|
+
software".
|
|
844
|
+
|
|
845
|
+
We specifically permit and encourage the use of this software as the basis of
|
|
846
|
+
commercial products, provided that all warranty or liability claims are
|
|
847
|
+
assumed by the product vendor.
|
|
848
|
+
|
|
849
|
+
|
|
850
|
+
The Unix configuration script "configure" was produced with GNU Autoconf.
|
|
851
|
+
It is copyright by the Free Software Foundation but is freely distributable.
|
|
852
|
+
The same holds for its supporting scripts (config.guess, config.sub,
|
|
853
|
+
ltmain.sh). Another support script, install-sh, is copyright by X Consortium
|
|
854
|
+
but is also freely distributable.
|
|
855
|
+
|
|
856
|
+
The IJG distribution formerly included code to read and write GIF files.
|
|
857
|
+
To avoid entanglement with the Unisys LZW patent, GIF reading support has
|
|
858
|
+
been removed altogether, and the GIF writer has been simplified to produce
|
|
859
|
+
"uncompressed GIFs". This technique does not use the LZW algorithm; the
|
|
860
|
+
resulting GIF files are larger than usual, but are readable by all standard
|
|
861
|
+
GIF decoders.
|
|
862
|
+
|
|
863
|
+
We are required to state that
|
|
864
|
+
"The Graphics Interchange Format(c) is the Copyright property of
|
|
865
|
+
CompuServe Incorporated. GIF(sm) is a Service Mark property of
|
|
866
|
+
CompuServe Incorporated."
|
|
867
|
+
|
|
868
|
+
------------------------------------------------------------------------------
|
|
869
|
+
|
|
870
|
+
Files: contrib/gdk-pixbuf/*
|
|
871
|
+
|
|
872
|
+
Copyright 2020 Emmanuel Gil Peyrot. All rights reserved.
|
|
873
|
+
|
|
874
|
+
Redistribution and use in source and binary forms, with or without
|
|
875
|
+
modification, are permitted provided that the following conditions are met:
|
|
876
|
+
|
|
877
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
878
|
+
list of conditions and the following disclaimer.
|
|
879
|
+
|
|
880
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
881
|
+
this list of conditions and the following disclaimer in the documentation
|
|
882
|
+
and/or other materials provided with the distribution.
|
|
883
|
+
|
|
884
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
885
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
886
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
887
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
888
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
889
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
890
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
891
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
892
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
893
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
894
|
+
|
|
895
|
+
------------------------------------------------------------------------------
|
|
896
|
+
|
|
897
|
+
Files: android_jni/gradlew*
|
|
898
|
+
|
|
899
|
+
|
|
900
|
+
Apache License
|
|
901
|
+
Version 2.0, January 2004
|
|
902
|
+
http://www.apache.org/licenses/
|
|
903
|
+
|
|
904
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
905
|
+
|
|
906
|
+
1. Definitions.
|
|
907
|
+
|
|
908
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
909
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
910
|
+
|
|
911
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
912
|
+
the copyright owner that is granting the License.
|
|
913
|
+
|
|
914
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
915
|
+
other entities that control, are controlled by, or are under common
|
|
916
|
+
control with that entity. For the purposes of this definition,
|
|
917
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
918
|
+
direction or management of such entity, whether by contract or
|
|
919
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
920
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
921
|
+
|
|
922
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
923
|
+
exercising permissions granted by this License.
|
|
924
|
+
|
|
925
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
926
|
+
including but not limited to software source code, documentation
|
|
927
|
+
source, and configuration files.
|
|
928
|
+
|
|
929
|
+
"Object" form shall mean any form resulting from mechanical
|
|
930
|
+
transformation or translation of a Source form, including but
|
|
931
|
+
not limited to compiled object code, generated documentation,
|
|
932
|
+
and conversions to other media types.
|
|
933
|
+
|
|
934
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
935
|
+
Object form, made available under the License, as indicated by a
|
|
936
|
+
copyright notice that is included in or attached to the work
|
|
937
|
+
(an example is provided in the Appendix below).
|
|
938
|
+
|
|
939
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
940
|
+
form, that is based on (or derived from) the Work and for which the
|
|
941
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
942
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
943
|
+
of this License, Derivative Works shall not include works that remain
|
|
944
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
945
|
+
the Work and Derivative Works thereof.
|
|
946
|
+
|
|
947
|
+
"Contribution" shall mean any work of authorship, including
|
|
948
|
+
the original version of the Work and any modifications or additions
|
|
949
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
950
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
951
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
952
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
953
|
+
means any form of electronic, verbal, or written communication sent
|
|
954
|
+
to the Licensor or its representatives, including but not limited to
|
|
955
|
+
communication on electronic mailing lists, source code control systems,
|
|
956
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
957
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
958
|
+
excluding communication that is conspicuously marked or otherwise
|
|
959
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
960
|
+
|
|
961
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
962
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
963
|
+
subsequently incorporated within the Work.
|
|
964
|
+
|
|
965
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
966
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
967
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
968
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
969
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
970
|
+
Work and such Derivative Works in Source or Object form.
|
|
971
|
+
|
|
972
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
973
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
974
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
975
|
+
(except as stated in this section) patent license to make, have made,
|
|
976
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
977
|
+
where such license applies only to those patent claims licensable
|
|
978
|
+
by such Contributor that are necessarily infringed by their
|
|
979
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
980
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
981
|
+
institute patent litigation against any entity (including a
|
|
982
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
983
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
984
|
+
or contributory patent infringement, then any patent licenses
|
|
985
|
+
granted to You under this License for that Work shall terminate
|
|
986
|
+
as of the date such litigation is filed.
|
|
987
|
+
|
|
988
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
989
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
990
|
+
modifications, and in Source or Object form, provided that You
|
|
991
|
+
meet the following conditions:
|
|
992
|
+
|
|
993
|
+
(a) You must give any other recipients of the Work or
|
|
994
|
+
Derivative Works a copy of this License; and
|
|
995
|
+
|
|
996
|
+
(b) You must cause any modified files to carry prominent notices
|
|
997
|
+
stating that You changed the files; and
|
|
998
|
+
|
|
999
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
1000
|
+
that You distribute, all copyright, patent, trademark, and
|
|
1001
|
+
attribution notices from the Source form of the Work,
|
|
1002
|
+
excluding those notices that do not pertain to any part of
|
|
1003
|
+
the Derivative Works; and
|
|
1004
|
+
|
|
1005
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
1006
|
+
distribution, then any Derivative Works that You distribute must
|
|
1007
|
+
include a readable copy of the attribution notices contained
|
|
1008
|
+
within such NOTICE file, excluding those notices that do not
|
|
1009
|
+
pertain to any part of the Derivative Works, in at least one
|
|
1010
|
+
of the following places: within a NOTICE text file distributed
|
|
1011
|
+
as part of the Derivative Works; within the Source form or
|
|
1012
|
+
documentation, if provided along with the Derivative Works; or,
|
|
1013
|
+
within a display generated by the Derivative Works, if and
|
|
1014
|
+
wherever such third-party notices normally appear. The contents
|
|
1015
|
+
of the NOTICE file are for informational purposes only and
|
|
1016
|
+
do not modify the License. You may add Your own attribution
|
|
1017
|
+
notices within Derivative Works that You distribute, alongside
|
|
1018
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
1019
|
+
that such additional attribution notices cannot be construed
|
|
1020
|
+
as modifying the License.
|
|
1021
|
+
|
|
1022
|
+
You may add Your own copyright statement to Your modifications and
|
|
1023
|
+
may provide additional or different license terms and conditions
|
|
1024
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
1025
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
1026
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
1027
|
+
the conditions stated in this License.
|
|
1028
|
+
|
|
1029
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
1030
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
1031
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
1032
|
+
this License, without any additional terms or conditions.
|
|
1033
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
1034
|
+
the terms of any separate license agreement you may have executed
|
|
1035
|
+
with Licensor regarding such Contributions.
|
|
1036
|
+
|
|
1037
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
1038
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
1039
|
+
except as required for reasonable and customary use in describing the
|
|
1040
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
1041
|
+
|
|
1042
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
1043
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
1044
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
1045
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
1046
|
+
implied, including, without limitation, any warranties or conditions
|
|
1047
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
1048
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
1049
|
+
appropriateness of using or redistributing the Work and assume any
|
|
1050
|
+
risks associated with Your exercise of permissions under this License.
|
|
1051
|
+
|
|
1052
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
1053
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
1054
|
+
unless required by applicable law (such as deliberate and grossly
|
|
1055
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
1056
|
+
liable to You for damages, including any direct, indirect, special,
|
|
1057
|
+
incidental, or consequential damages of any character arising as a
|
|
1058
|
+
result of this License or out of the use or inability to use the
|
|
1059
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
1060
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
1061
|
+
other commercial damages or losses), even if such Contributor
|
|
1062
|
+
has been advised of the possibility of such damages.
|
|
1063
|
+
|
|
1064
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
1065
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
1066
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
1067
|
+
or other liability obligations and/or rights consistent with this
|
|
1068
|
+
License. However, in accepting such obligations, You may act only
|
|
1069
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
1070
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
1071
|
+
defend, and hold each Contributor harmless for any liability
|
|
1072
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
1073
|
+
of your accepting any such warranty or additional liability.
|
|
1074
|
+
|
|
1075
|
+
END OF TERMS AND CONDITIONS
|
|
1076
|
+
|
|
1077
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
1078
|
+
|
|
1079
|
+
To apply the Apache License to your work, attach the following
|
|
1080
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
1081
|
+
replaced with your own identifying information. (Don't include
|
|
1082
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
1083
|
+
comment syntax for the file format. We also recommend that a
|
|
1084
|
+
file or class name and description of purpose be included on the
|
|
1085
|
+
same "printed page" as the copyright notice for easier
|
|
1086
|
+
identification within third-party archives.
|
|
1087
|
+
|
|
1088
|
+
Copyright [yyyy] [name of copyright owner]
|
|
1089
|
+
|
|
1090
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
1091
|
+
you may not use this file except in compliance with the License.
|
|
1092
|
+
You may obtain a copy of the License at
|
|
1093
|
+
|
|
1094
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
1095
|
+
|
|
1096
|
+
Unless required by applicable law or agreed to in writing, software
|
|
1097
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
1098
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1099
|
+
See the License for the specific language governing permissions and
|
|
1100
|
+
limitations under the License.
|
|
1101
|
+
|
|
1102
|
+
------------------------------------------------------------------------------
|
|
1103
|
+
|
|
1104
|
+
Files: third_party/libyuv/*
|
|
1105
|
+
|
|
1106
|
+
Copyright 2011 The LibYuv Project Authors. All rights reserved.
|
|
1107
|
+
|
|
1108
|
+
Redistribution and use in source and binary forms, with or without
|
|
1109
|
+
modification, are permitted provided that the following conditions are
|
|
1110
|
+
met:
|
|
1111
|
+
|
|
1112
|
+
* Redistributions of source code must retain the above copyright
|
|
1113
|
+
notice, this list of conditions and the following disclaimer.
|
|
1114
|
+
|
|
1115
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
1116
|
+
notice, this list of conditions and the following disclaimer in
|
|
1117
|
+
the documentation and/or other materials provided with the
|
|
1118
|
+
distribution.
|
|
1119
|
+
|
|
1120
|
+
* Neither the name of Google nor the names of its contributors may
|
|
1121
|
+
be used to endorse or promote products derived from this software
|
|
1122
|
+
without specific prior written permission.
|
|
1123
|
+
|
|
1124
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
1125
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
1126
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
1127
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
1128
|
+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
1129
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
1130
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
1131
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
1132
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
1133
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
1134
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1135
|
+
|
|
1136
|
+
------------------------------------------------------------------------------
|
|
1137
|
+
|
|
1138
|
+
**WebP**
|
|
1139
|
+
|
|
1140
|
+
COPYING:
|
|
1141
|
+
|
|
1142
|
+
Copyright (c) 2010, Google Inc. All rights reserved.
|
|
1143
|
+
|
|
1144
|
+
Redistribution and use in source and binary forms, with or without
|
|
1145
|
+
modification, are permitted provided that the following conditions are
|
|
1146
|
+
met:
|
|
1147
|
+
|
|
1148
|
+
* Redistributions of source code must retain the above copyright
|
|
1149
|
+
notice, this list of conditions and the following disclaimer.
|
|
1150
|
+
|
|
1151
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
1152
|
+
notice, this list of conditions and the following disclaimer in
|
|
1153
|
+
the documentation and/or other materials provided with the
|
|
1154
|
+
distribution.
|
|
1155
|
+
|
|
1156
|
+
* Neither the name of Google nor the names of its contributors may
|
|
1157
|
+
be used to endorse or promote products derived from this software
|
|
1158
|
+
without specific prior written permission.
|
|
1159
|
+
|
|
1160
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
1161
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
1162
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
1163
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
1164
|
+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
1165
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
1166
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
1167
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
1168
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
1169
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
1170
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1171
|
+
|
|
1172
|
+
|
|
1173
|
+
|
|
1174
|
+
PATENTS:
|
|
1175
|
+
|
|
1176
|
+
Additional IP Rights Grant (Patents)
|
|
1177
|
+
------------------------------------
|
|
1178
|
+
|
|
1179
|
+
"These implementations" means the copyrightable works that implement the WebM
|
|
1180
|
+
codecs distributed by Google as part of the WebM Project.
|
|
1181
|
+
|
|
1182
|
+
Google hereby grants to you a perpetual, worldwide, non-exclusive, no-charge,
|
|
1183
|
+
royalty-free, irrevocable (except as stated in this section) patent license to
|
|
1184
|
+
make, have made, use, offer to sell, sell, import, transfer, and otherwise
|
|
1185
|
+
run, modify and propagate the contents of these implementations of WebM, where
|
|
1186
|
+
such license applies only to those patent claims, both currently owned by
|
|
1187
|
+
Google and acquired in the future, licensable by Google that are necessarily
|
|
1188
|
+
infringed by these implementations of WebM. This grant does not include claims
|
|
1189
|
+
that would be infringed only as a consequence of further modification of these
|
|
1190
|
+
implementations. If you or your agent or exclusive licensee institute or order
|
|
1191
|
+
or agree to the institution of patent litigation or any other patent
|
|
1192
|
+
enforcement activity against any entity (including a cross-claim or
|
|
1193
|
+
counterclaim in a lawsuit) alleging that any of these implementations of WebM
|
|
1194
|
+
or any code incorporated within any of these implementations of WebM
|
|
1195
|
+
constitute direct or contributory patent infringement, or inducement of
|
|
1196
|
+
patent infringement, then any patent rights granted to you under this License
|
|
1197
|
+
for these implementations of WebM shall terminate as of the date such
|
|
1198
|
+
litigation is filed.
|
|
1199
|
+
|
|
1200
|
+
------------------------------------------------------------------------------
|
|
1201
|
+
|
|
1202
|
+
**libyuv**
|
|
1203
|
+
|
|
1204
|
+
Copyright 2011 The LibYuv Project Authors. All rights reserved.
|
|
1205
|
+
|
|
1206
|
+
Redistribution and use in source and binary forms, with or without
|
|
1207
|
+
modification, are permitted provided that the following conditions are
|
|
1208
|
+
met:
|
|
1209
|
+
|
|
1210
|
+
* Redistributions of source code must retain the above copyright
|
|
1211
|
+
notice, this list of conditions and the following disclaimer.
|
|
1212
|
+
|
|
1213
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
1214
|
+
notice, this list of conditions and the following disclaimer in
|
|
1215
|
+
the documentation and/or other materials provided with the
|
|
1216
|
+
distribution.
|
|
1217
|
+
|
|
1218
|
+
* Neither the name of Google nor the names of its contributors may
|
|
1219
|
+
be used to endorse or promote products derived from this software
|
|
1220
|
+
without specific prior written permission.
|
|
1221
|
+
|
|
1222
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
1223
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
1224
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
1225
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
1226
|
+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
1227
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
1228
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
1229
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
1230
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
1231
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
1232
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1233
|
+
|
|
1234
|
+
------------------------------------------------------------------------------
|
|
1235
|
+
|
|
1236
|
+
**libjpeg-turbo**
|
|
1237
|
+
|
|
1238
|
+
libjpeg-turbo Licenses
|
|
1239
|
+
======================
|
|
1240
|
+
|
|
1241
|
+
libjpeg-turbo is covered by two compatible BSD-style open source licenses:
|
|
1242
|
+
|
|
1243
|
+
- The IJG (Independent JPEG Group) License, which is listed in
|
|
1244
|
+
[README.ijg](README.ijg)
|
|
1245
|
+
|
|
1246
|
+
This license applies to the libjpeg API library and associated programs,
|
|
1247
|
+
including any code inherited from libjpeg and any modifications to that
|
|
1248
|
+
code. Note that the libjpeg-turbo SIMD source code bears the
|
|
1249
|
+
[zlib License](https://opensource.org/licenses/Zlib), but in the context of
|
|
1250
|
+
the overall libjpeg API library, the terms of the zlib License are subsumed
|
|
1251
|
+
by the terms of the IJG License.
|
|
1252
|
+
|
|
1253
|
+
- The Modified (3-clause) BSD License, which is listed below
|
|
1254
|
+
|
|
1255
|
+
This license applies to the TurboJPEG API library and associated programs, as
|
|
1256
|
+
well as the build system. Note that the TurboJPEG API library wraps the
|
|
1257
|
+
libjpeg API library, so in the context of the overall TurboJPEG API library,
|
|
1258
|
+
both the terms of the IJG License and the terms of the Modified (3-clause)
|
|
1259
|
+
BSD License apply.
|
|
1260
|
+
|
|
1261
|
+
|
|
1262
|
+
Complying with the libjpeg-turbo Licenses
|
|
1263
|
+
=========================================
|
|
1264
|
+
|
|
1265
|
+
This section provides a roll-up of the libjpeg-turbo licensing terms, to the
|
|
1266
|
+
best of our understanding. This is not a license in and of itself. It is
|
|
1267
|
+
intended solely for clarification.
|
|
1268
|
+
|
|
1269
|
+
1. If you are distributing a modified version of the libjpeg-turbo source,
|
|
1270
|
+
then:
|
|
1271
|
+
|
|
1272
|
+
1. You cannot alter or remove any existing copyright or license notices
|
|
1273
|
+
from the source.
|
|
1274
|
+
|
|
1275
|
+
**Origin**
|
|
1276
|
+
- Clause 1 of the IJG License
|
|
1277
|
+
- Clause 1 of the Modified BSD License
|
|
1278
|
+
- Clauses 1 and 3 of the zlib License
|
|
1279
|
+
|
|
1280
|
+
2. You must add your own copyright notice to the header of each source
|
|
1281
|
+
file you modified, so others can tell that you modified that file. (If
|
|
1282
|
+
there is not an existing copyright header in that file, then you can
|
|
1283
|
+
simply add a notice stating that you modified the file.)
|
|
1284
|
+
|
|
1285
|
+
**Origin**
|
|
1286
|
+
- Clause 1 of the IJG License
|
|
1287
|
+
- Clause 2 of the zlib License
|
|
1288
|
+
|
|
1289
|
+
3. You must include the IJG README file, and you must not alter any of the
|
|
1290
|
+
copyright or license text in that file.
|
|
1291
|
+
|
|
1292
|
+
**Origin**
|
|
1293
|
+
- Clause 1 of the IJG License
|
|
1294
|
+
|
|
1295
|
+
2. If you are distributing only libjpeg-turbo binaries without the source, or
|
|
1296
|
+
if you are distributing an application that statically links with
|
|
1297
|
+
libjpeg-turbo, then:
|
|
1298
|
+
|
|
1299
|
+
1. Your product documentation must include a message stating:
|
|
1300
|
+
|
|
1301
|
+
This software is based in part on the work of the Independent JPEG
|
|
1302
|
+
Group.
|
|
1303
|
+
|
|
1304
|
+
**Origin**
|
|
1305
|
+
- Clause 2 of the IJG license
|
|
1306
|
+
|
|
1307
|
+
2. If your binary distribution includes or uses the TurboJPEG API, then
|
|
1308
|
+
your product documentation must include the text of the Modified BSD
|
|
1309
|
+
License (see below.)
|
|
1310
|
+
|
|
1311
|
+
**Origin**
|
|
1312
|
+
- Clause 2 of the Modified BSD License
|
|
1313
|
+
|
|
1314
|
+
3. You cannot use the name of the IJG or The libjpeg-turbo Project or the
|
|
1315
|
+
contributors thereof in advertising, publicity, etc.
|
|
1316
|
+
|
|
1317
|
+
**Origin**
|
|
1318
|
+
- IJG License
|
|
1319
|
+
- Clause 3 of the Modified BSD License
|
|
1320
|
+
|
|
1321
|
+
4. The IJG and The libjpeg-turbo Project do not warrant libjpeg-turbo to be
|
|
1322
|
+
free of defects, nor do we accept any liability for undesirable
|
|
1323
|
+
consequences resulting from your use of the software.
|
|
1324
|
+
|
|
1325
|
+
**Origin**
|
|
1326
|
+
- IJG License
|
|
1327
|
+
- Modified BSD License
|
|
1328
|
+
- zlib License
|
|
1329
|
+
|
|
1330
|
+
|
|
1331
|
+
The Modified (3-clause) BSD License
|
|
1332
|
+
===================================
|
|
1333
|
+
|
|
1334
|
+
Copyright (C)2009-2025 D. R. Commander. All Rights Reserved.<br>
|
|
1335
|
+
Copyright (C)2015 Viktor Szathmáry. All Rights Reserved.
|
|
1336
|
+
|
|
1337
|
+
Redistribution and use in source and binary forms, with or without
|
|
1338
|
+
modification, are permitted provided that the following conditions are met:
|
|
1339
|
+
|
|
1340
|
+
- Redistributions of source code must retain the above copyright notice,
|
|
1341
|
+
this list of conditions and the following disclaimer.
|
|
1342
|
+
- Redistributions in binary form must reproduce the above copyright notice,
|
|
1343
|
+
this list of conditions and the following disclaimer in the documentation
|
|
1344
|
+
and/or other materials provided with the distribution.
|
|
1345
|
+
- Neither the name of the libjpeg-turbo Project nor the names of its
|
|
1346
|
+
contributors may be used to endorse or promote products derived from this
|
|
1347
|
+
software without specific prior written permission.
|
|
1348
|
+
|
|
1349
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS",
|
|
1350
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
1351
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
1352
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
|
|
1353
|
+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
1354
|
+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
1355
|
+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
1356
|
+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
1357
|
+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
1358
|
+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
1359
|
+
POSSIBILITY OF SUCH DAMAGE.
|
|
1360
|
+
|
|
1361
|
+
|
|
1362
|
+
Why Two Licenses?
|
|
1363
|
+
=================
|
|
1364
|
+
|
|
1365
|
+
The zlib License could have been used instead of the Modified (3-clause) BSD
|
|
1366
|
+
License, and since the IJG License effectively subsumes the distribution
|
|
1367
|
+
conditions of the zlib License, this would have effectively placed
|
|
1368
|
+
libjpeg-turbo binary distributions under the IJG License. However, the IJG
|
|
1369
|
+
License specifically refers to the Independent JPEG Group and does not extend
|
|
1370
|
+
attribution and endorsement protections to other entities. Thus, it was
|
|
1371
|
+
desirable to choose a license that granted us the same protections for new code
|
|
1372
|
+
that were granted to the IJG for code derived from their software.
|
|
1373
|
+
|