mirror of
https://github.com/opencv/opencv.git
synced 2025-01-04 08:38:00 +08:00
777953923e
Repo: https://github.com/libjpeg-turbo/libjpeg-turbo.git Tag: 1.5.3 excluded libjpeg-turbo files: - bmp.c - bmp.h - cderror.h - cdjpeg.c - cdjpeg.h - cjpeg.c - djpeg.c - example.c - jcstest.c - jdatadst-tj.c - jdatasrc-tj.c - jpegtran.c - rdbmp.c - rdcolmap.c - rdgif.c - rdjpgcom.c - rdppm.c - rdrle.c - rdswitch.c - rdtarga.c - tjbench.c - tjunittest.c - tjutil.c - tjutil.h - transupp.c - transupp.h - turbojpeg-jni.c - turbojpeg.c - turbojpeg.h - wrbmp.c - wrgif.c - wrjpgcom.c - wrppm.c - wrrle.c - wrtarga.c
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
|