llimagej2c.h
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:4k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llimagej2c.h
  3.  * @brief Image implmenation for jpeg2000.
  4.  *
  5.  * $LicenseInfo:firstyear=2001&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2001-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #ifndef LL_LLIMAGEJ2C_H
  33. #define LL_LLIMAGEJ2C_H
  34. #include "llimage.h"
  35. #include "llassettype.h"
  36. class LLImageJ2CImpl;
  37. class LLImageJ2C : public LLImageFormatted
  38. {
  39. protected:
  40. virtual ~LLImageJ2C();
  41. public:
  42. LLImageJ2C();
  43. // Base class overrides
  44. /*virtual*/ std::string getExtension() { return std::string("j2c"); }
  45. /*virtual*/ BOOL updateData();
  46. /*virtual*/ BOOL decode(LLImageRaw *raw_imagep, F32 decode_time);
  47. /*virtual*/ BOOL decodeChannels(LLImageRaw *raw_imagep, F32 decode_time, S32 first_channel, S32 max_channel_count);
  48. /*virtual*/ BOOL encode(const LLImageRaw *raw_imagep, F32 encode_time);
  49. /*virtual*/ S32 calcHeaderSize();
  50. /*virtual*/ S32 calcDataSize(S32 discard_level = 0);
  51. /*virtual*/ S32 calcDiscardLevelBytes(S32 bytes);
  52. /*virtual*/ S8  getRawDiscardLevel();
  53. // Override these so that we don't try to set a global variable from a DLL
  54. /*virtual*/ void resetLastError();
  55. /*virtual*/ void setLastError(const std::string& message, const std::string& filename = std::string());
  56. // Encode with comment text 
  57. BOOL encode(const LLImageRaw *raw_imagep, const char* comment_text, F32 encode_time=0.0);
  58. BOOL validate(U8 *data, U32 file_size);
  59. BOOL loadAndValidate(const std::string &filename);
  60. // Encode accessors
  61. void setReversible(const BOOL reversible); // Use non-lossy?
  62. void setRate(F32 rate);
  63. void setMaxBytes(S32 max_bytes);
  64. S32 getMaxBytes() const { return mMaxBytes; }
  65. static S32 calcHeaderSizeJ2C();
  66. static S32 calcDataSizeJ2C(S32 w, S32 h, S32 comp, S32 discard_level, F32 rate = 0.f);
  67. static void openDSO();
  68. static void closeDSO();
  69. static std::string getEngineInfo();
  70. protected:
  71. friend class LLImageJ2CImpl;
  72. friend class LLImageJ2COJ;
  73. friend class LLImageJ2CKDU;
  74. void decodeFailed();
  75. void updateRawDiscardLevel();
  76. S32 mMaxBytes; // Maximum number of bytes of data to use...
  77. S32 mDataSizes[MAX_DISCARD_LEVEL+1]; // Size of data required to reach a given level
  78. U32 mAreaUsedForDataSizeCalcs; // Height * width used to calculate mDataSizes
  79. S8  mRawDiscardLevel;
  80. F32 mRate;
  81. BOOL mReversible;
  82. LLImageJ2CImpl *mImpl;
  83. std::string mLastError;
  84. };
  85. // Derive from this class to implement JPEG2000 decoding
  86. class LLImageJ2CImpl
  87. {
  88. public:
  89. virtual ~LLImageJ2CImpl();
  90. protected:
  91. // Find out the image size and number of channels.
  92. // Return value:
  93. // true: image size and number of channels was determined
  94. // false: error on decode
  95. virtual BOOL getMetadata(LLImageJ2C &base) = 0;
  96. // Decode the raw image optionally aborting (to continue later) after
  97. // decode_time seconds.  Decode at most max_channel_count and start
  98. // decoding channel first_channel.
  99. // Return value:
  100. // true: decoding complete (even if it failed)
  101. // 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 encodeImpl(LLImageJ2C &base, const LLImageRaw &raw_image, const char* comment_text, F32 encode_time=0.0,
  104. BOOL reversible=FALSE) = 0;
  105. friend class LLImageJ2C;
  106. };
  107. #define LINDEN_J2C_COMMENT_PREFIX "LL_"
  108. #endif