blob: 191fb6bb549bfea86761ca925ea3295d16cfaa1c [file] [log] [blame]
Thomas G. Lanebd543f01991-12-13 00:00:00 +00001/*
2 * jversion.h
3 *
DRCa73e8702012-12-31 02:52:30 +00004 * This file was part of the Independent JPEG Group's software:
Guido Vollbeding5829cb22012-01-15 00:00:00 +00005 * Copyright (C) 1991-2012, Thomas G. Lane, Guido Vollbeding.
DRCda13af62014-05-18 17:52:06 +00006 * libjpeg-turbo Modifications:
DRC23e8e0f2019-01-01 18:29:55 -06007 * Copyright (C) 2010, 2012-2019, D. R. Commander.
DRC7e3acc02015-10-10 10:25:46 -05008 * For conditions of distribution and use, see the accompanying README.ijg
9 * file.
Thomas G. Lanebd543f01991-12-13 00:00:00 +000010 *
11 * This file contains software version identification.
12 */
13
14
DRC2cdd2ae2010-10-10 06:54:21 +000015#if JPEG_LIB_VERSION >= 80
16
DRCe5eaf372014-05-09 18:00:32 +000017#define JVERSION "8d 15-Jan-2012"
DRC2cdd2ae2010-10-10 06:54:21 +000018
DRC2cdd2ae2010-10-10 06:54:21 +000019#elif JPEG_LIB_VERSION >= 70
20
DRCe5eaf372014-05-09 18:00:32 +000021#define JVERSION "7 27-Jun-2009"
DRC2cdd2ae2010-10-10 06:54:21 +000022
DRC2cdd2ae2010-10-10 06:54:21 +000023#else
24
DRCe5eaf372014-05-09 18:00:32 +000025#define JVERSION "6b 27-Mar-1998"
Thomas G. Lanebd543f01991-12-13 00:00:00 +000026
DRC2cdd2ae2010-10-10 06:54:21 +000027#endif
28
DRCae411282016-02-18 16:02:28 -060029/*
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
33 * date of their first contribution to the project
34 * - Upstream authors in descending order of the date of the first inclusion of
35 * their code
36 */
37
DRC293263c2018-03-17 15:14:35 -050038#define JCOPYRIGHT \
DRC23e8e0f2019-01-01 18:29:55 -060039 "Copyright (C) 2009-2019 D. R. Commander\n" \
DRC293263c2018-03-17 15:14:35 -050040 "Copyright (C) 2011-2016 Siarhei Siamashka\n" \
DRC32707682018-03-31 11:33:22 -050041 "Copyright (C) 2015-2016, 2018 Matthieu Darbois\n" \
DRC293263c2018-03-17 15:14:35 -050042 "Copyright (C) 2015 Intel Corporation\n" \
43 "Copyright (C) 2015 Google, Inc.\n" \
44 "Copyright (C) 2013-2014 MIPS Technologies, Inc.\n" \
45 "Copyright (C) 2013 Linaro Limited\n" \
46 "Copyright (C) 2009-2011 Nokia Corporation and/or its subsidiary(-ies)\n" \
47 "Copyright (C) 2009 Pierre Ossman for Cendio AB\n" \
48 "Copyright (C) 1999-2006 MIYASAKA Masaru\n" \
49 "Copyright (C) 1991-2016 Thomas G. Lane, Guido Vollbeding"
DRCcf55f0b2014-05-28 20:19:54 +000050
DRC293263c2018-03-17 15:14:35 -050051#define JCOPYRIGHT_SHORT \
DRC23e8e0f2019-01-01 18:29:55 -060052 "Copyright (C) 1991-2019 The libjpeg-turbo Project and many others"