The IJG convention is to format copyright notices as: Copyright (C) YYYY, Owner. We try to maintain this convention for any code that is part of the libjpeg API library (with the exception of preserving the copyright notices from Cendio's code verbatim, since those predate libjpeg-turbo.) Note that the phrase "All Rights Reserved" is no longer necessary, since all Buenos Aires Convention signatories signed onto the Berne Convention in 2000. However, our convention is to retain this phrase for any files that have a self-contained copyright header but to leave it off of any files that refer to another file for conditions of distribution and use. For instance, all of the non-SIMD files in the libjpeg API library refer to README.ijg, and the copyright message in that file contains "All Rights Reserved", so it is unnecessary to add it to the individual files. The TurboJPEG code retains my preferred formatting convention for copyright notices, which is based on that of VirtualGL (where the TurboJPEG API originated.)
32 lines
1.0 KiB
C
32 lines
1.0 KiB
C
/*
|
|
* jpegcomp.h
|
|
*
|
|
* Copyright (C) 2010, D. R. Commander.
|
|
* For conditions of distribution and use, see the accompanying README.ijg
|
|
* file.
|
|
*
|
|
* JPEG compatibility macros
|
|
* These declarations are considered internal to the JPEG library; most
|
|
* applications using the library shouldn't need to include this file.
|
|
*/
|
|
|
|
#if JPEG_LIB_VERSION >= 70
|
|
#define _DCT_scaled_size DCT_h_scaled_size
|
|
#define _DCT_h_scaled_size DCT_h_scaled_size
|
|
#define _DCT_v_scaled_size DCT_v_scaled_size
|
|
#define _min_DCT_scaled_size min_DCT_h_scaled_size
|
|
#define _min_DCT_h_scaled_size min_DCT_h_scaled_size
|
|
#define _min_DCT_v_scaled_size min_DCT_v_scaled_size
|
|
#define _jpeg_width jpeg_width
|
|
#define _jpeg_height jpeg_height
|
|
#else
|
|
#define _DCT_scaled_size DCT_scaled_size
|
|
#define _DCT_h_scaled_size DCT_scaled_size
|
|
#define _DCT_v_scaled_size DCT_scaled_size
|
|
#define _min_DCT_scaled_size min_DCT_scaled_size
|
|
#define _min_DCT_h_scaled_size min_DCT_scaled_size
|
|
#define _min_DCT_v_scaled_size min_DCT_scaled_size
|
|
#define _jpeg_width image_width
|
|
#define _jpeg_height image_height
|
|
#endif
|