jversion.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * jversion.h
  3. *
  4. * This file was part of the Independent JPEG Group's software:
  5. * Copyright (C) 1991-2012, Thomas G. Lane, Guido Vollbeding.
  6. * libjpeg-turbo Modifications:
  7. * Copyright (C) 2010, 2012-2020, D. R. Commander.
  8. * mozjpeg Modifications:
  9. * Copyright (C) 2014, Mozilla Corporation.
  10. * For conditions of distribution and use, see the accompanying README file.
  11. *
  12. * This file contains software version identification.
  13. */
  14. #if JPEG_LIB_VERSION >= 80
  15. #define JVERSION "8d 15-Jan-2012"
  16. #elif JPEG_LIB_VERSION >= 70
  17. #define JVERSION "7 27-Jun-2009"
  18. #else
  19. #define JVERSION "6b 27-Mar-1998"
  20. #endif
  21. /*
  22. * NOTE: It is our convention to place the authors in the following order:
  23. * - libjpeg-turbo authors (2009-) in descending order of the date of their
  24. * most recent contribution to the project, then in ascending order of the
  25. * date of their first contribution to the project
  26. * - Upstream authors in descending order of the date of the first inclusion of
  27. * their code
  28. */
  29. #define JCOPYRIGHT \
  30. "Copyright (C) 2009-2020 D. R. Commander\n" \
  31. "Copyright (C) 2011-2016 Siarhei Siamashka\n" \
  32. "Copyright (C) 2015-2016, 2018 Matthieu Darbois\n" \
  33. "Copyright (C) 2015 Intel Corporation\n" \
  34. "Copyright (C) 2015 Google, Inc.\n" \
  35. "Copyright (C) 2014 Mozilla Corporation\n" \
  36. "Copyright (C) 2013-2014 MIPS Technologies, Inc.\n" \
  37. "Copyright (C) 2013 Linaro Limited\n" \
  38. "Copyright (C) 2009-2011 Nokia Corporation and/or its subsidiary(-ies)\n" \
  39. "Copyright (C) 2009 Pierre Ossman for Cendio AB\n" \
  40. "Copyright (C) 1999-2006 MIYASAKA Masaru\n" \
  41. "Copyright (C) 1991-2016 Thomas G. Lane, Guido Vollbeding"
  42. #define JCOPYRIGHT_SHORT \
  43. "Copyright (C) 1991-2020 The libjpeg-turbo Project and many others"