diff options
author | joris <joris> | 2007-05-30 13:53:17 +0000 |
---|---|---|
committer | joris <joris> | 2007-05-30 13:53:17 +0000 |
commit | 737b026c133b5252c685c0c57ca7bfed12be6853 (patch) | |
tree | ae4067b9b4dfbef4d8eb66d243aa688e8840c93e /libtiff/tif_luv.c | |
parent | ca68eec0c5a99c349210a4e799306f394be06d6c (diff) | |
download | libtiff-737b026c133b5252c685c0c57ca7bfed12be6853.tar.gz |
BigTIFF upgrade in progress - widespread temp mess - does not compile now
Diffstat (limited to 'libtiff/tif_luv.c')
-rw-r--r-- | libtiff/tif_luv.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libtiff/tif_luv.c b/libtiff/tif_luv.c index d9cce970..2007e69b 100644 --- a/libtiff/tif_luv.c +++ b/libtiff/tif_luv.c @@ -1,4 +1,4 @@ -/* $Id: tif_luv.c,v 1.24 2007-05-11 05:44:10 joris Exp $ */ +/* $Id: tif_luv.c,v 1.25 2007-05-30 13:53:18 joris Exp $ */ /* * Copyright (c) 1997 Greg Ward Larson @@ -1330,6 +1330,12 @@ LogLuvInitState(TIFF* tif) } static int +LogLuvFixupTags(TIFF* tif) +{ + return (1); +} + +static int LogLuvSetupDecode(TIFF* tif) { static const char module[] = "LogLuvSetupDecode"; @@ -1610,6 +1616,7 @@ TIFFInitSGILog(TIFF* tif, int scheme) * NB: tif_decoderow & tif_encoderow are filled * in at setup time. */ + tif->tif_fixuptags = LogLuvFixupTags; tif->tif_setupdecode = LogLuvSetupDecode; tif->tif_decodestrip = LogLuvDecodeStrip; tif->tif_decodetile = LogLuvDecodeTile; |