Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VTK
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
430
Issues
430
List
Boards
Labels
Milestones
Merge Requests
113
Merge Requests
113
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
VTK
VTK
Commits
899275e2
Commit
899275e2
authored
Jun 06, 2019
by
Utkarsh Ayachit
1
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'upstream-jpeg' into update-jpeg
* upstream-jpeg: jpeg 2019-06-06 (ce143c47)
parents
162ef5a6
d7bd6cd9
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
24 additions
and
45 deletions
+24
-45
ThirdParty/jpeg/vtkjpeg/LICENSE.md
ThirdParty/jpeg/vtkjpeg/LICENSE.md
+4
-25
ThirdParty/jpeg/vtkjpeg/jconfig.h.in
ThirdParty/jpeg/vtkjpeg/jconfig.h.in
+14
-14
ThirdParty/jpeg/vtkjpeg/jdcolor.c
ThirdParty/jpeg/vtkjpeg/jdcolor.c
+1
-1
ThirdParty/jpeg/vtkjpeg/jdmerge.c
ThirdParty/jpeg/vtkjpeg/jdmerge.c
+1
-1
ThirdParty/jpeg/vtkjpeg/jquant1.c
ThirdParty/jpeg/vtkjpeg/jquant1.c
+1
-1
ThirdParty/jpeg/vtkjpeg/jversion.h
ThirdParty/jpeg/vtkjpeg/jversion.h
+3
-3
No files found.
ThirdParty/jpeg/vtkjpeg/LICENSE.md
View file @
899275e2
...
...
@@ -14,7 +14,7 @@ libjpeg-turbo is covered by three compatible BSD-style open source licenses:
This license covers the TurboJPEG API library and associated programs, as
well as the build system.
-
The
zlib License, which is listed below
-
The
[
zlib License
](
https://opensource.org/licenses/Zlib
)
This license is a subset of the other two, and it covers the libjpeg-turbo
SIMD extensions.
...
...
@@ -66,7 +66,7 @@ best of our understanding.
2. If your binary distribution includes or uses the TurboJPEG API, then
your product documentation must include the text of the Modified BSD
License
.
License
(see below.)
**Origin**
- Clause 2 of the Modified BSD License
...
...
@@ -91,7 +91,8 @@ best of our understanding.
The Modified (3-clause) BSD License
===================================
Copyright (C)
\<
YEAR
\>
\<
AUTHOR
\>
. All Rights Reserved.
Copyright (C)2009-2019 D. R. Commander. All Rights Reserved.
Copyright (C)2015 Viktor Szathmáry. All Rights Reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
...
...
@@ -118,28 +119,6 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
The zlib License
================
Copyright (C)
\<
YEAR
\>
,
\<
AUTHOR
\>
.
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1.
The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2.
Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3.
This notice may not be removed or altered from any source distribution.
Why Three Licenses?
===================
...
...
ThirdParty/jpeg/vtkjpeg/jconfig.h.in
View file @
899275e2
...
...
@@ -10,16 +10,16 @@
#define LIBJPEG_TURBO_VERSION_NUMBER @LIBJPEG_TURBO_VERSION_NUMBER@
/* Support arithmetic encoding */
#cmakedefine C_ARITH_CODING_SUPPORTED
#cmakedefine C_ARITH_CODING_SUPPORTED
1
/* Support arithmetic decoding */
#cmakedefine D_ARITH_CODING_SUPPORTED
#cmakedefine D_ARITH_CODING_SUPPORTED
1
/* Support in-memory source/destination managers */
#cmakedefine MEM_SRCDST_SUPPORTED
#cmakedefine MEM_SRCDST_SUPPORTED
1
/* Use accelerated SIMD routines. */
#cmakedefine WITH_SIMD
#cmakedefine WITH_SIMD
1
/*
* Define BITS_IN_JSAMPLE as either
...
...
@@ -33,37 +33,37 @@
#define BITS_IN_JSAMPLE @BITS_IN_JSAMPLE@ /* use 8 or 12 */
/* Define to 1 if you have the <locale.h> header file. */
#cmakedefine HAVE_LOCALE_H
#cmakedefine HAVE_LOCALE_H
1
/* Define to 1 if you have the <stddef.h> header file. */
#cmakedefine HAVE_STDDEF_H
#cmakedefine HAVE_STDDEF_H
1
/* Define to 1 if you have the <stdlib.h> header file. */
#cmakedefine HAVE_STDLIB_H
#cmakedefine HAVE_STDLIB_H
1
/* Define if you need to include <sys/types.h> to get size_t. */
#cmakedefine NEED_SYS_TYPES_H
#cmakedefine NEED_SYS_TYPES_H
1
/* Define if you have BSD-like bzero and bcopy in <strings.h> rather than
memset/memcpy in <string.h>. */
#cmakedefine NEED_BSD_STRINGS
#cmakedefine NEED_BSD_STRINGS
1
/* Define to 1 if the system has the type `unsigned char'. */
#cmakedefine HAVE_UNSIGNED_CHAR
#cmakedefine HAVE_UNSIGNED_CHAR
1
/* Define to 1 if the system has the type `unsigned short'. */
#cmakedefine HAVE_UNSIGNED_SHORT
#cmakedefine HAVE_UNSIGNED_SHORT
1
/* Compiler does not support pointers to undefined structures. */
#cmakedefine INCOMPLETE_TYPES_BROKEN
#cmakedefine INCOMPLETE_TYPES_BROKEN
1
/* Define if your (broken) compiler shifts signed values as if they were
unsigned. */
#cmakedefine RIGHT_SHIFT_IS_UNSIGNED
#cmakedefine RIGHT_SHIFT_IS_UNSIGNED
1
/* Define to 1 if type `char' is unsigned and you are not using gcc. */
#ifndef __CHAR_UNSIGNED__
#cmakedefine __CHAR_UNSIGNED__
#cmakedefine __CHAR_UNSIGNED__
1
#endif
/* Define to empty if `const' does not conform to ANSI C. */
...
...
ThirdParty/jpeg/vtkjpeg/jdcolor.c
View file @
899275e2
...
...
@@ -592,7 +592,7 @@ ycck_cmyk_convert(j_decompress_ptr cinfo, JSAMPIMAGE input_buf,
/* Declarations for ordered dithering
*
* We use a 4x4 ordered dither array packed into 32 bits. This array is
* sufficent for dithering RGB888 to RGB565.
* suffic
i
ent for dithering RGB888 to RGB565.
*/
#define DITHER_MASK 0x3
...
...
ThirdParty/jpeg/vtkjpeg/jdmerge.c
View file @
899275e2
...
...
@@ -448,7 +448,7 @@ h2v2_merged_upsample(j_decompress_ptr cinfo, JSAMPIMAGE input_buf,
/* Declarations for ordered dithering
*
* We use a 4x4 ordered dither array packed into 32 bits. This array is
* sufficent for dithering RGB888 to RGB565.
* suffic
i
ent for dithering RGB888 to RGB565.
*/
#define DITHER_MASK 0x3
...
...
ThirdParty/jpeg/vtkjpeg/jquant1.c
View file @
899275e2
...
...
@@ -154,7 +154,7 @@ typedef struct {
*/
boolean
is_padded
;
/* is the colorindex padded for odither? */
int
Ncolors
[
MAX_Q_COMPS
];
/* # of values alloced to each component */
int
Ncolors
[
MAX_Q_COMPS
];
/* # of values alloc
at
ed to each component */
/* Variables for ordered dithering */
int
row_index
;
/* cur row's vertical index in dither matrix */
...
...
ThirdParty/jpeg/vtkjpeg/jversion.h
View file @
899275e2
...
...
@@ -4,7 +4,7 @@
* This file was part of the Independent JPEG Group's software:
* Copyright (C) 1991-2012, Thomas G. Lane, Guido Vollbeding.
* libjpeg-turbo Modifications:
* Copyright (C) 2010, 2012-201
8
, D. R. Commander.
* Copyright (C) 2010, 2012-201
9
, D. R. Commander.
* For conditions of distribution and use, see the accompanying README.ijg
* file.
*
...
...
@@ -36,7 +36,7 @@
*/
#define JCOPYRIGHT \
"Copyright (C) 2009-201
8
D. R. Commander\n" \
"Copyright (C) 2009-201
9
D. R. Commander\n" \
"Copyright (C) 2011-2016 Siarhei Siamashka\n" \
"Copyright (C) 2015-2016, 2018 Matthieu Darbois\n" \
"Copyright (C) 2015 Intel Corporation\n" \
...
...
@@ -49,4 +49,4 @@
"Copyright (C) 1991-2016 Thomas G. Lane, Guido Vollbeding"
#define JCOPYRIGHT_SHORT \
"Copyright (C) 1991-201
8
The libjpeg-turbo Project and many others"
"Copyright (C) 1991-201
9
The libjpeg-turbo Project and many others"
Utkarsh Ayachit
@utkarsh.ayachit
mentioned in commit
a2952bf2
·
Jun 06, 2019
mentioned in commit
a2952bf2
mentioned in commit a2952bf289a994b953f8d720d4e7376b16706e8f
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment