diff options
author | Merov Linden <merov@lindenlab.com> | 2011-04-04 23:49:40 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2011-04-04 23:49:40 -0700 |
commit | e752e918283acf95c1ed33d92a7bf34bbca83071 (patch) | |
tree | 783cace0278856f5fb8f1db4e6d5f4f1fcbb0d1d /indra/llimage/llimagej2c.cpp | |
parent | 83ec0cd62f70888c90671ea91cd056ecb6095bc1 (diff) |
STORM-746 : add precincts and blocks arguments taken into account in j2c output
Diffstat (limited to 'indra/llimage/llimagej2c.cpp')
-rw-r--r-- | indra/llimage/llimagej2c.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/llimage/llimagej2c.cpp b/indra/llimage/llimagej2c.cpp index 6b49f3de88..a90df0f1c1 100644 --- a/indra/llimage/llimagej2c.cpp +++ b/indra/llimage/llimagej2c.cpp @@ -144,6 +144,11 @@ BOOL LLImageJ2C::initDecode(LLImageRaw &raw_image, int discard_level, int* regio return mImpl->initDecode(*this,raw_image,discard_level,region); } +BOOL LLImageJ2C::initEncode(LLImageRaw &raw_image, int blocks_size, int precincts_size) +{ + return mImpl->initEncode(*this,raw_image,blocks_size,precincts_size); +} + BOOL LLImageJ2C::decode(LLImageRaw *raw_imagep, F32 decode_time) { return decodeChannels(raw_imagep, decode_time, 0, 4); |