aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llimage/llimagej2c.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llimage/llimagej2c.h')
-rw-r--r--linden/indra/llimage/llimagej2c.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/linden/indra/llimage/llimagej2c.h b/linden/indra/llimage/llimagej2c.h
index 63ebe38..00cb919 100644
--- a/linden/indra/llimage/llimagej2c.h
+++ b/linden/indra/llimage/llimagej2c.h
@@ -79,6 +79,7 @@ protected:
79 S32 mMaxBytes; // Maximum number of bytes of data to use... 79 S32 mMaxBytes; // Maximum number of bytes of data to use...
80 S8 mRawDiscardLevel; 80 S8 mRawDiscardLevel;
81 F32 mRate; 81 F32 mRate;
82 BOOL mReversible;
82 LLImageJ2CImpl *mImpl; 83 LLImageJ2CImpl *mImpl;
83}; 84};
84 85
@@ -100,7 +101,8 @@ protected:
100 // true: decoding complete (even if it failed) 101 // true: decoding complete (even if it failed)
101 // false: time expired while decoding 102 // false: time expired while decoding
102 virtual BOOL decodeImpl(LLImageJ2C &base, LLImageRaw &raw_image, F32 decode_time, S32 first_channel, S32 max_channel_count) = 0; 103 virtual BOOL decodeImpl(LLImageJ2C &base, LLImageRaw &raw_image, F32 decode_time, S32 first_channel, S32 max_channel_count) = 0;
103 virtual BOOL encodeImpl(LLImageJ2C &base, const LLImageRaw &raw_image, const char* comment_text, F32 encode_time=0.0) = 0; 104 virtual BOOL encodeImpl(LLImageJ2C &base, const LLImageRaw &raw_image, const char* comment_text, F32 encode_time=0.0,
105 BOOL reversible=FALSE) = 0;
104 106
105 friend class LLImageJ2C; 107 friend class LLImageJ2C;
106}; 108};