summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Kiselev <dron@ak4719.spb.edu>2004-10-02 11:16:50 +0000
committerAndrey Kiselev <dron@ak4719.spb.edu>2004-10-02 11:16:50 +0000
commit7a6877d6396f3c240b74090d4e289fbdb10d97db (patch)
treea02e535aac57c6a6fccdbb9584f13fe40c417c81
parent2a85ad222cfd53562151318e2779c0a25320a4e1 (diff)
downloadlibtiff-git-7a6877d6396f3c240b74090d4e289fbdb10d97db.tar.gz
Missed TIFF_BIGTIFF_VERSION constant added.
-rw-r--r--libtiff/tiff.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/libtiff/tiff.h b/libtiff/tiff.h
index 98f6e732..f635e04a 100644
--- a/libtiff/tiff.h
+++ b/libtiff/tiff.h
@@ -1,4 +1,4 @@
-/* $Id: tiff.h,v 1.25 2004-09-14 02:42:37 bfriesen Exp $ */
+/* $Id: tiff.h,v 1.26 2004-10-02 11:16:50 dron Exp $ */
/*
* Copyright (c) 1988-1997 Sam Leffler
@@ -36,8 +36,14 @@
* Suite 200
* Seattle, WA 98104
* 206-622-5500
+ *
+ * (http://partners.adobe.com/asn/developer/PDFS/TN/TIFF6.pdf)
+ *
+ * For Big TIFF design notes see the following link
+ * http://gdal.maptools.org/twiki/bin/view/libtiff/BigTIFFDesign
*/
#define TIFF_VERSION 42
+#define TIFF_BIGTIFF_VERSION 43
#define TIFF_BIGENDIAN 0x4d4d
#define TIFF_LITTLEENDIAN 0x4949
@@ -477,3 +483,5 @@ typedef enum {
#define SGILOGENCODE_NODITHER 0 /* do not dither encoded values*/
#define SGILOGENCODE_RANDITHER 1 /* randomly dither encd values */
#endif /* _TIFF_ */
+
+/* vim: set ts=8 sts=8 sw=8 noet: */