13b921b29Sopenharmony_ci/* 23b921b29Sopenharmony_ci * jversion.h 33b921b29Sopenharmony_ci * 43b921b29Sopenharmony_ci * This file was part of the Independent JPEG Group's software: 53b921b29Sopenharmony_ci * Copyright (C) 1991-2020, Thomas G. Lane, Guido Vollbeding. 63b921b29Sopenharmony_ci * libjpeg-turbo Modifications: 73b921b29Sopenharmony_ci * Copyright (C) 2010, 2012-2022, D. R. Commander. 83b921b29Sopenharmony_ci * For conditions of distribution and use, see the accompanying README.ijg 93b921b29Sopenharmony_ci * file. 103b921b29Sopenharmony_ci * 113b921b29Sopenharmony_ci * This file contains software version identification. 123b921b29Sopenharmony_ci */ 133b921b29Sopenharmony_ci 143b921b29Sopenharmony_ci 153b921b29Sopenharmony_ci#if JPEG_LIB_VERSION >= 80 163b921b29Sopenharmony_ci 173b921b29Sopenharmony_ci#define JVERSION "8d 15-Jan-2012" 183b921b29Sopenharmony_ci 193b921b29Sopenharmony_ci#elif JPEG_LIB_VERSION >= 70 203b921b29Sopenharmony_ci 213b921b29Sopenharmony_ci#define JVERSION "7 27-Jun-2009" 223b921b29Sopenharmony_ci 233b921b29Sopenharmony_ci#else 243b921b29Sopenharmony_ci 253b921b29Sopenharmony_ci#define JVERSION "6b 27-Mar-1998" 263b921b29Sopenharmony_ci 273b921b29Sopenharmony_ci#endif 283b921b29Sopenharmony_ci 293b921b29Sopenharmony_ci/* 303b921b29Sopenharmony_ci * NOTE: It is our convention to place the authors in the following order: 313b921b29Sopenharmony_ci * - libjpeg-turbo authors (2009-) in descending order of the date of their 323b921b29Sopenharmony_ci * most recent contribution to the project, then in ascending order of the 333b921b29Sopenharmony_ci * date of their first contribution to the project, then in alphabetical 343b921b29Sopenharmony_ci * order 353b921b29Sopenharmony_ci * - Upstream authors in descending order of the date of the first inclusion of 363b921b29Sopenharmony_ci * their code 373b921b29Sopenharmony_ci */ 383b921b29Sopenharmony_ci 393b921b29Sopenharmony_ci#define JCOPYRIGHT \ 403b921b29Sopenharmony_ci "Copyright (C) 2009-2022 D. R. Commander\n" \ 413b921b29Sopenharmony_ci "Copyright (C) 2015, 2020 Google, Inc.\n" \ 423b921b29Sopenharmony_ci "Copyright (C) 2019-2020 Arm Limited\n" \ 433b921b29Sopenharmony_ci "Copyright (C) 2015-2016, 2018 Matthieu Darbois\n" \ 443b921b29Sopenharmony_ci "Copyright (C) 2011-2016 Siarhei Siamashka\n" \ 453b921b29Sopenharmony_ci "Copyright (C) 2015 Intel Corporation\n" \ 463b921b29Sopenharmony_ci "Copyright (C) 2013-2014 Linaro Limited\n" \ 473b921b29Sopenharmony_ci "Copyright (C) 2013-2014 MIPS Technologies, Inc.\n" \ 483b921b29Sopenharmony_ci "Copyright (C) 2009, 2012 Pierre Ossman for Cendio AB\n" \ 493b921b29Sopenharmony_ci "Copyright (C) 2009-2011 Nokia Corporation and/or its subsidiary(-ies)\n" \ 503b921b29Sopenharmony_ci "Copyright (C) 1999-2006 MIYASAKA Masaru\n" \ 513b921b29Sopenharmony_ci "Copyright (C) 1991-2020 Thomas G. Lane, Guido Vollbeding" 523b921b29Sopenharmony_ci 533b921b29Sopenharmony_ci#define JCOPYRIGHT_SHORT \ 543b921b29Sopenharmony_ci "Copyright (C) @COPYRIGHT_YEAR@ The libjpeg-turbo Project and many others" 55