rename freq_filt package as freqfilt

This commit is contained in:
John Cupitt 2014-01-03 17:19:45 +00:00
parent fe92ef64d4
commit 9f150e3063
17 changed files with 15 additions and 13 deletions

8
TODO
View File

@ -5,10 +5,12 @@
VIPS:ERROR:buffer.c:390:vips_buffer_new: assertion failed: (!buffer->cache)
Aborted (core dumped)
- still need to do gaussian band filter
- im_freq_mask.c can almost be deprecated .. just im_freqfilt() to do now I
think
- VipsMaskType needs to be renamed back to the vips7 name and deprecated,
remove compat macros from freq_flt.h
- new_heart.ws fails with libvips master

View File

@ -706,7 +706,7 @@ AC_OUTPUT([
libvips/convolution/Makefile
libvips/deprecated/Makefile
libvips/foreign/Makefile
libvips/freq_filt/Makefile
libvips/freqfilt/Makefile
libvips/histogram/Makefile
libvips/inplace/Makefile
libvips/iofuncs/Makefile

View File

@ -19,7 +19,7 @@ SUBDIRS = \
deprecated \
convolution \
$(C_COMPILE_DIR) \
freq_filt \
freqfilt \
histogram \
inplace \
iofuncs \
@ -52,7 +52,7 @@ libvips_la_LIBADD = \
deprecated/libdeprecated.la \
$(C_LIB) \
foreign/libforeign.la \
freq_filt/libfreq_filt.la \
freqfilt/libfreqfilt.la \
histogram/libhistogram.la \
inplace/libinplace.la \
iofuncs/libiofuncs.la \

View File

@ -1,6 +1,6 @@
noinst_LTLIBRARIES = libfreq_filt.la
noinst_LTLIBRARIES = libfreqfilt.la
libfreq_filt_la_SOURCES = \
libfreqfilt_la_SOURCES = \
freqfilt.c \
pfreqfilt.h \
fwfft.c \

View File

@ -20,7 +20,7 @@ pkginclude_HEADERS = \
generate.h \
header.h \
histogram.h \
freq_filt.h \
freqfilt.h \
image.h \
interpolate.h \
intl.h \

View File

@ -31,8 +31,8 @@
*/
#ifndef IM_FREQ_H
#define IM_FREQ_H
#ifndef VIPS_FREQFILT_H
#define VIPS_FREQFILT_H
#ifdef __cplusplus
extern "C" {
@ -53,4 +53,4 @@ int im_fractsurf( VipsImage *out, int size, double frd );
}
#endif /*__cplusplus*/
#endif /*IM_FREQ_H*/
#endif /*VIPS_FREQFILT_H*/

View File

@ -131,7 +131,7 @@ extern "C" {
#include <vips/morphology.h>
#include <vips/mosaicing.h>
#include <vips/histogram.h>
#include <vips/freq_filt.h>
#include <vips/freqfilt.h>
#include <vips/resample.h>
#include <vips/colour.h>
#include <vips/inplace.h>