version.h | version.h | |||
---|---|---|---|---|
/* Macros for the header version. | /* Macros for the header version. | |||
*/ | */ | |||
#ifndef VIPS_VERSION_H | #ifndef VIPS_VERSION_H | |||
#define VIPS_VERSION_H | #define VIPS_VERSION_H | |||
#define VIPS_VERSION "7.38.2" | #define VIPS_VERSION "7.38.3" | |||
#define VIPS_VERSION_STRING "7.38.2-Mon Jan 27 03:20:04 MSK 2014" | #define VIPS_VERSION_STRING "7.38.3-Thu Feb 6 04:43:49 MSK 2014" | |||
#define VIPS_MAJOR_VERSION (7) | #define VIPS_MAJOR_VERSION (7) | |||
#define VIPS_MINOR_VERSION (38) | #define VIPS_MINOR_VERSION (38) | |||
#define VIPS_MICRO_VERSION (2) | #define VIPS_MICRO_VERSION (3) | |||
/* Not really anything to do with versions, but this is a handy place to pu t | /* Not really anything to do with versions, but this is a handy place to pu t | |||
* it. | * it. | |||
*/ | */ | |||
#define VIPS_EXEEXT "" | #define VIPS_EXEEXT "" | |||
#endif /*VIPS_VERSION_H*/ | #endif /*VIPS_VERSION_H*/ | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added | |||
vips7compat.h | vips7compat.h | |||
---|---|---|---|---|
skipping to change at line 965 | skipping to change at line 965 | |||
IM_MASK_IDEAL_BANDPASS = 12, | IM_MASK_IDEAL_BANDPASS = 12, | |||
IM_MASK_IDEAL_BANDREJECT = 13, | IM_MASK_IDEAL_BANDREJECT = 13, | |||
IM_MASK_BUTTERWORTH_BANDPASS = 14, | IM_MASK_BUTTERWORTH_BANDPASS = 14, | |||
IM_MASK_BUTTERWORTH_BANDREJECT = 15, | IM_MASK_BUTTERWORTH_BANDREJECT = 15, | |||
IM_MASK_GAUSS_BANDPASS = 16, | IM_MASK_GAUSS_BANDPASS = 16, | |||
IM_MASK_GAUSS_BANDREJECT = 17, | IM_MASK_GAUSS_BANDREJECT = 17, | |||
IM_MASK_FRACTAL_FLT = 18 | IM_MASK_FRACTAL_FLT = 18 | |||
} ImMaskType; | } ImMaskType; | |||
/* We had them in the VIPS namespace for a while before deprecating them. | ||||
*/ | ||||
#define VIPS_MASK_IDEAL_HIGHPASS IM_MASK_IDEAL_HIGHPASS | ||||
#define VIPS_MASK_IDEAL_LOWPASS IM_MASK_IDEAL_LOWPASS | ||||
#define VIPS_MASK_BUTTERWORTH_HIGHPASS IM_MASK_BUTTERWORTH_HIGHPASS | ||||
#define VIPS_MASK_BUTTERWORTH_LOWPASS IM_MASK_BUTTERWORTH_LOWPASS | ||||
#define VIPS_MASK_GAUSS_HIGHPASS IM_MASK_GAUSS_HIGHPASS | ||||
#define VIPS_MASK_GAUSS_LOWPASS IM_MASK_GAUSS_LOWPASS | ||||
#define VIPS_MASK_IDEAL_RINGPASS IM_MASK_IDEAL_RINGPASS | ||||
#define VIPS_MASK_IDEAL_RINGREJECT IM_MASK_IDEAL_RINGREJECT | ||||
#define VIPS_MASK_BUTTERWORTH_RINGPASS IM_MASK_BUTTERWORTH_RINGPASS | ||||
#define VIPS_MASK_BUTTERWORTH_RINGREJECT IM_MASK_BUTTERWORTH_RINGREJECT | ||||
#define VIPS_MASK_GAUSS_RINGPASS IM_MASK_GAUSS_RINGPASS | ||||
#define VIPS_MASK_GAUSS_RINGREJECT IM_MASK_GAUSS_RINGREJECT | ||||
#define VIPS_MASK_IDEAL_BANDPASS IM_MASK_IDEAL_BANDPASS | ||||
#define VIPS_MASK_IDEAL_BANDREJECT IM_MASK_IDEAL_BANDREJECT | ||||
#define VIPS_MASK_BUTTERWORTH_BANDPASS IM_MASK_BUTTERWORTH_BANDPASS | ||||
#define VIPS_MASK_BUTTERWORTH_BANDREJECT IM_MASK_BUTTERWORTH_BANDREJECT | ||||
#define VIPS_MASK_GAUSS_BANDPASS IM_MASK_GAUSS_BANDPASS | ||||
#define VIPS_MASK_GAUSS_BANDREJECT IM_MASK_GAUSS_BANDREJECT | ||||
#define VIPS_MASK_FRACTAL_FLT IM_MASK_FRACTAL_FLT | ||||
int im_flt_image_freq( VipsImage *in, VipsImage *out, ImMaskType flag, ... ); | int im_flt_image_freq( VipsImage *in, VipsImage *out, ImMaskType flag, ... ); | |||
int im_create_fmask( VipsImage *out, | int im_create_fmask( VipsImage *out, | |||
int xsize, int ysize, ImMaskType flag, ... ); | int xsize, int ysize, ImMaskType flag, ... ); | |||
int im_fwfft( VipsImage *in, VipsImage *out ); | int im_fwfft( VipsImage *in, VipsImage *out ); | |||
int im_invfft( VipsImage *in, VipsImage *out ); | int im_invfft( VipsImage *in, VipsImage *out ); | |||
int im_invfftr( VipsImage *in, VipsImage *out ); | int im_invfftr( VipsImage *in, VipsImage *out ); | |||
int im_freqflt( VipsImage *in, VipsImage *mask, VipsImage *out ); | int im_freqflt( VipsImage *in, VipsImage *mask, VipsImage *out ); | |||
int im_disp_ps( VipsImage *in, VipsImage *out ); | int im_disp_ps( VipsImage *in, VipsImage *out ); | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 22 lines changed or added | |||