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/llimagej2coj/llimagej2coj.cpp | |
parent | 83ec0cd62f70888c90671ea91cd056ecb6095bc1 (diff) |
STORM-746 : add precincts and blocks arguments taken into account in j2c output
Diffstat (limited to 'indra/llimagej2coj/llimagej2coj.cpp')
-rw-r--r-- | indra/llimagej2coj/llimagej2coj.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/indra/llimagej2coj/llimagej2coj.cpp b/indra/llimagej2coj/llimagej2coj.cpp index 11c826e41a..8288fa1f5c 100644 --- a/indra/llimagej2coj/llimagej2coj.cpp +++ b/indra/llimagej2coj/llimagej2coj.cpp @@ -109,7 +109,13 @@ LLImageJ2COJ::~LLImageJ2COJ() BOOL LLImageJ2COJ::initDecode(LLImageJ2C &base, LLImageRaw &raw_image, int discard_level, int* region) { - // No specific implementaion for this method in the OpenJpeg case + // No specific implementation for this method in the OpenJpeg case + return FALSE; +} + +BOOL LLImageJ2COJ::initEncode(LLImageJ2C &base, LLImageRaw &raw_image, int blocks_size, int precincts_size) +{ + // No specific implementation for this method in the OpenJpeg case return FALSE; } |