move VipsFormat to deprecated

This commit is contained in:
John Cupitt 2011-12-20 15:29:33 +00:00
parent 3e45e2cd6b
commit 14734596a1
26 changed files with 22 additions and 37 deletions

View File

@ -63,6 +63,7 @@
- added openslide support (Benjamin Gilbert)
- allow new-style load/save options in filenames to
vips_image_new_from_file() etc.
- VipsFormat is deprecated
12/10/11 started 7.26.6
- NOCACHE was not being set correctly on OS X causing performance

8
TODO
View File

@ -2,12 +2,8 @@
- test rad read/write
- rad save should auto pack to CODING RAD
- test matio load
- radiance to go still
- saverawfd should be renamed saveraw_fd, cf. pngsave_buffer
- remove uses of vips_image_pio_output(), this is done for you by generate
@ -33,10 +29,6 @@
- make the old format/vips.c into a stub as well?
move format/* to deprecated

View File

@ -698,7 +698,6 @@ AC_OUTPUT([
libvips/conversion/Makefile
libvips/convolution/Makefile
libvips/deprecated/Makefile
libvips/format/Makefile
libvips/foreign/Makefile
libvips/freq_filt/Makefile
libvips/histograms_lut/Makefile

View File

@ -19,7 +19,6 @@ SUBDIRS = \
deprecated \
convolution \
$(C_COMPILE_DIR) \
format \
freq_filt \
histograms_lut \
inplace \
@ -52,7 +51,6 @@ libvips_la_LIBADD = \
convolution/libconvolution.la \
deprecated/libdeprecated.la \
$(C_LIB) \
format/libformat.la \
foreign/libforeign.la \
freq_filt/libfreq_filt.la \
histograms_lut/libhistograms_lut.la \

View File

@ -43,6 +43,26 @@ libdeprecated_la_SOURCES = \
im_matmul.c \
im_mattrn.c \
matalloc.c \
mask_dispatch.c
mask_dispatch.c \
fits.c \
format.c \
format_dispatch.c \
im_analyze2vips.c \
im_csv2vips.c \
im_exr2vips.c \
im_jpeg2vips.c \
im_magick2vips.c \
im_png2vips.c \
im_ppm2vips.c \
im_tiff2vips.c \
im_tile_cache.c \
im_vips2csv.c \
im_vips2jpeg.c \
im_vips2png.c \
im_vips2ppm.c \
im_vips2tiff.c \
matlab.c \
radiance.c \
raw.c
INCLUDES = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@

View File

@ -1,25 +0,0 @@
noinst_LTLIBRARIES = libformat.la
libformat_la_SOURCES = \
format.c \
raw.c \
format_dispatch.c \
im_analyze2vips.c \
im_csv2vips.c \
im_exr2vips.c \
im_jpeg2vips.c \
im_magick2vips.c \
im_png2vips.c \
im_ppm2vips.c \
im_tiff2vips.c \
im_tile_cache.c \
im_vips2csv.c \
im_vips2jpeg.c \
im_vips2png.c \
im_vips2ppm.c \
im_vips2tiff.c \
matlab.c \
fits.c \
radiance.c
INCLUDES = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@