~ubuntu-branches/debian/sid/gdal/sid

« back to all changes in this revision

Viewing changes to frmts/gtiff/libtiff/tif_codec.c

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2012-05-07 15:04:42 UTC
  • mfrom: (5.5.16 experimental)
  • Revision ID: package-import@ubuntu.com-20120507150442-2eks97loeh6rq005
Tags: 1.9.0-1
* Ready for sid, starting transition.
* All symfiles updated to latest builds.
* Added dh_numpy call in debian/rules to depend on numpy ABI.
* Policy bumped to 3.9.3, no changes required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: tif_codec.c,v 1.13 2008/05/25 03:10:56 fwarmerdam Exp $ */
 
1
/* $Id: tif_codec.c,v 1.15 2010-12-14 12:53:00 dron Exp $ */
2
2
 
3
3
/*
4
4
 * Copyright (c) 1988-1997 Sam Leffler
69
69
#ifndef LOGLUV_SUPPORT
70
70
#define TIFFInitSGILog NotConfigured
71
71
#endif
 
72
#ifndef LZMA_SUPPORT
 
73
#define TIFFInitLZMA NotConfigured
 
74
#endif
72
75
 
73
76
/*
74
77
 * Compression schemes statically built into the library.
95
98
    { "PixarLog",       COMPRESSION_PIXARLOG,   TIFFInitPixarLog },
96
99
    { "SGILog",         COMPRESSION_SGILOG,     TIFFInitSGILog },
97
100
    { "SGILog24",       COMPRESSION_SGILOG24,   TIFFInitSGILog },
 
101
    { "LZMA",           COMPRESSION_LZMA,       TIFFInitLZMA },
98
102
    { NULL,             0,                      NULL }
99
103
};
100
104
 
152
156
        return 0;
153
157
}
154
158
 
 
159
/*
 
160
 * Local Variables:
 
161
 * mode: c
 
162
 * c-basic-offset: 8
 
163
 * fill-column: 78
 
164
 * End:
 
165
 */