1This software is based in part on the work of the Independent JPEG Group.
2
3----------------------
4
5The authors make NO WARRANTY or representation, either express or implied,
6with respect to this software, its quality, accuracy, merchantability, or
7fitness for a particular purpose.  This software is provided "AS IS", and you,
8its user, assume the entire risk as to its quality and accuracy.
9
10This software is copyright (C) 1991-1998, Thomas G. Lane.
11All Rights Reserved except as specified below.
12
13Permission is hereby granted to use, copy, modify, and distribute this
14software (or portions thereof) for any purpose, without fee, subject to these
15conditions:
16(1) If any part of the source code for this software is distributed, then this
17README file must be included, with this copyright and no-warranty notice
18unaltered; and any additions, deletions, or changes to the original files
19must be clearly indicated in accompanying documentation.
20(2) If only executable code is distributed, then the accompanying
21documentation must state that "this software is based in part on the work of
22the Independent JPEG Group".
23(3) Permission for use of this software is granted only if the user accepts
24full responsibility for any undesirable consequences; the authors accept
25NO LIABILITY for damages of any kind.
26
27These conditions apply to any software derived from or based on the IJG code,
28not just to the unmodified library.  If you use our work, you ought to
29acknowledge us.
30
31Permission is NOT granted for the use of any IJG author's name or company name
32in advertising or publicity relating to this software or products derived from
33it.  This software may be referred to only as "the Independent JPEG Group's
34software".
35
36We specifically permit and encourage the use of this software as the basis of
37commercial products, provided that all warranty or liability claims are
38assumed by the product vendor.
39
40
41----------------------
42
43
44 ARM NEON optimizations for libjpeg-turbo
45
46 Copyright (C) 2009-2011 Nokia Corporation and/or its subsidiary(-ies).
47 All rights reserved.
48 Contact: Alexander Bokovoy <alexander.bokovoy@nokia.com>
49
50 This software is provided 'as-is', without any express or implied
51 warranty.  In no event will the authors be held liable for any damages
52 arising from the use of this software.
53
54 Permission is granted to anyone to use this software for any purpose,
55 including commercial applications, and to alter it and redistribute it
56 freely, subject to the following restrictions:
57
58 1. The origin of this software must not be misrepresented; you must not
59    claim that you wrote the original software. If you use this software
60    in a product, an acknowledgment in the product documentation would be
61    appreciated but is not required.
62 2. Altered source versions must be plainly marked as such, and must not be
63    misrepresented as being the original software.
64 3. This notice may not be removed or altered from any source distribution.
65
66
67 ----------------------
68
69
70 Copyright (c) 2011,  NVIDIA CORPORATION. All rights reserved.
71
72 Redistribution and use in source and binary forms, with or without
73 modification, are permitted provided that the following conditions
74 are met:
75
76  * Redistributions of source code must retain the above copyright
77    notice, this list of conditions and the following disclaimer.
78  * Redistributions in binary form must reproduce the above copyright
79    notice, this list of conditions and the following disclaimer in the
80    documentation and/or other materials provided with the distribution.
81  * Neither the name of the NVIDIA CORPORATION nor the names of its
82    contributors may be used to endorse or promote products derived
83    from this software without specific prior written permission.
84 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
85 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
86 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
87 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
88 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
89 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
90 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
91 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
92 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
93 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
94 THE POSSIBILITY OF SUCH DAMAGE.
95