blob: 2ab534af4147f0e0d8c07c5a14df037186305545 [file] [log] [blame]
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +00001/*
2 * jversion.h
3 *
noel@chromium.org3395bcc2014-04-14 06:56:00 +00004 * This file was part of the Independent JPEG Group's software:
Jonathan Wrightbbb82822020-11-25 13:36:43 +00005 * Copyright (C) 1991-2020, Thomas G. Lane, Guido Vollbeding.
Tom Hudson0d47d2d2016-05-04 13:22:56 -04006 * libjpeg-turbo Modifications:
Jonathan Wright24e31052021-04-26 12:10:48 +01007 * Copyright (C) 2010, 2012-2021, D. R. Commander.
Tom Hudson0d47d2d2016-05-04 13:22:56 -04008 * For conditions of distribution and use, see the accompanying README.ijg
9 * file.
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000010 *
11 * This file contains software version identification.
12 */
13
14
hbono@chromium.org98626972011-08-03 03:13:08 +000015#if JPEG_LIB_VERSION >= 80
16
Tom Hudson0d47d2d2016-05-04 13:22:56 -040017#define JVERSION "8d 15-Jan-2012"
hbono@chromium.org98626972011-08-03 03:13:08 +000018
hbono@chromium.org98626972011-08-03 03:13:08 +000019#elif JPEG_LIB_VERSION >= 70
20
Tom Hudson0d47d2d2016-05-04 13:22:56 -040021#define JVERSION "7 27-Jun-2009"
hbono@chromium.org98626972011-08-03 03:13:08 +000022
hbono@chromium.org98626972011-08-03 03:13:08 +000023#else
24
Tom Hudson0d47d2d2016-05-04 13:22:56 -040025#define JVERSION "6b 27-Mar-1998"
hbono@chromium.orgf0c4f332010-11-01 05:14:55 +000026
hbono@chromium.org98626972011-08-03 03:13:08 +000027#endif
28
Tom Hudson0d47d2d2016-05-04 13:22:56 -040029/*
30 * NOTE: It is our convention to place the authors in the following order:
31 * - libjpeg-turbo authors (2009-) in descending order of the date of their
32 * most recent contribution to the project, then in ascending order of the
Jonathan Wrightbbb82822020-11-25 13:36:43 +000033 * date of their first contribution to the project, then in alphabetical
34 * order
Tom Hudson0d47d2d2016-05-04 13:22:56 -040035 * - Upstream authors in descending order of the date of the first inclusion of
36 * their code
37 */
38
Chris Blumecca8c4d2019-03-01 01:09:50 -080039#define JCOPYRIGHT \
Jonathan Wright24e31052021-04-26 12:10:48 +010040 "Copyright (C) 2009-2021 D. R. Commander\n" \
Jonathan Wrightbbb82822020-11-25 13:36:43 +000041 "Copyright (C) 2015, 2020 Google, Inc.\n" \
42 "Copyright (C) 2019-2020 Arm Limited\n" \
Chris Blumecca8c4d2019-03-01 01:09:50 -080043 "Copyright (C) 2015-2016, 2018 Matthieu Darbois\n" \
Jonathan Wrightbbb82822020-11-25 13:36:43 +000044 "Copyright (C) 2011-2016 Siarhei Siamashka\n" \
Chris Blumecca8c4d2019-03-01 01:09:50 -080045 "Copyright (C) 2015 Intel Corporation\n" \
Jonathan Wrightbbb82822020-11-25 13:36:43 +000046 "Copyright (C) 2013-2014 Linaro Limited\n" \
Chris Blumecca8c4d2019-03-01 01:09:50 -080047 "Copyright (C) 2013-2014 MIPS Technologies, Inc.\n" \
Jonathan Wrightbbb82822020-11-25 13:36:43 +000048 "Copyright (C) 2009, 2012 Pierre Ossman for Cendio AB\n" \
Chris Blumecca8c4d2019-03-01 01:09:50 -080049 "Copyright (C) 2009-2011 Nokia Corporation and/or its subsidiary(-ies)\n" \
Chris Blumecca8c4d2019-03-01 01:09:50 -080050 "Copyright (C) 1999-2006 MIYASAKA Masaru\n" \
Jonathan Wrightbbb82822020-11-25 13:36:43 +000051 "Copyright (C) 1991-2020 Thomas G. Lane, Guido Vollbeding"
Tom Hudson0d47d2d2016-05-04 13:22:56 -040052
Chris Blumecca8c4d2019-03-01 01:09:50 -080053#define JCOPYRIGHT_SHORT \
Jonathan Wright24e31052021-04-26 12:10:48 +010054 "Copyright (C) 1991-2021 The libjpeg-turbo Project and many others"