Skip to content
Snippets Groups Projects
Commit 172b45d5 authored by Merov Linden's avatar Merov Linden
Browse files

SH-3060 : Complete new byte range computation, clean up and back pedal on some...

SH-3060 : Complete new byte range computation, clean up and back pedal on some changes that didn't pay of.
parent bb7b5b27
No related branches found
No related tags found
No related merge requests found
...@@ -256,7 +256,7 @@ BOOL LLImageJ2C::encode(const LLImageRaw *raw_imagep, const char* comment_text, ...@@ -256,7 +256,7 @@ BOOL LLImageJ2C::encode(const LLImageRaw *raw_imagep, const char* comment_text,
//static //static
S32 LLImageJ2C::calcHeaderSizeJ2C() S32 LLImageJ2C::calcHeaderSizeJ2C()
{ {
return HTTP_PACKET_SIZE; // Hack. just needs to be >= actual header size... return FIRST_PACKET_SIZE; // Hack. just needs to be >= actual header size...
} }
//static //static
...@@ -267,7 +267,7 @@ S32 LLImageJ2C::calcDataSizeJ2C(S32 w, S32 h, S32 comp, S32 discard_level, F32 r ...@@ -267,7 +267,7 @@ S32 LLImageJ2C::calcDataSizeJ2C(S32 w, S32 h, S32 comp, S32 discard_level, F32 r
// in general too big for fast fetching. // in general too big for fast fetching.
// For details about the equation used here, see https://wiki.lindenlab.com/wiki/THX1138_KDU_Improvements#Byte_Range_Study // For details about the equation used here, see https://wiki.lindenlab.com/wiki/THX1138_KDU_Improvements#Byte_Range_Study
// Estimate the number of layers. This is consistent with what's done in j2c encoding // Estimate the number of layers. This is consistent with what's done for j2c encoding in LLImageJ2CKDU::encodeImpl().
S32 nb_layers = 1; S32 nb_layers = 1;
S32 surface = w*h; S32 surface = w*h;
S32 s = 64*64; S32 s = 64*64;
...@@ -304,8 +304,6 @@ S32 LLImageJ2C::calcHeaderSize() ...@@ -304,8 +304,6 @@ S32 LLImageJ2C::calcHeaderSize()
S32 LLImageJ2C::calcDataSize(S32 discard_level) S32 LLImageJ2C::calcDataSize(S32 discard_level)
{ {
discard_level = llclamp(discard_level, 0, MAX_DISCARD_LEVEL); discard_level = llclamp(discard_level, 0, MAX_DISCARD_LEVEL);
return calcDataSizeJ2C(getWidth(), getHeight(), getComponents(), discard_level, mRate);
/*
if ( mAreaUsedForDataSizeCalcs != (getHeight() * getWidth()) if ( mAreaUsedForDataSizeCalcs != (getHeight() * getWidth())
|| (mDataSizes[0] == 0)) || (mDataSizes[0] == 0))
{ {
...@@ -319,7 +317,6 @@ S32 LLImageJ2C::calcDataSize(S32 discard_level) ...@@ -319,7 +317,6 @@ S32 LLImageJ2C::calcDataSize(S32 discard_level)
} }
} }
return mDataSizes[discard_level]; return mDataSizes[discard_level];
*/
} }
S32 LLImageJ2C::calcDiscardLevelBytes(S32 bytes) S32 LLImageJ2C::calcDiscardLevelBytes(S32 bytes)
...@@ -332,8 +329,8 @@ S32 LLImageJ2C::calcDiscardLevelBytes(S32 bytes) ...@@ -332,8 +329,8 @@ S32 LLImageJ2C::calcDiscardLevelBytes(S32 bytes)
} }
while (1) while (1)
{ {
S32 bytes_needed = calcDataSize(discard_level); S32 bytes_needed = calcDataSize(discard_level); // virtual
if (bytes >= bytes_needed) if (bytes >= bytes_needed - (bytes_needed>>2)) // For J2c, up the res at 75% of the optimal number of bytes
{ {
break; break;
} }
......
...@@ -393,7 +393,7 @@ BOOL LLImageJ2CKDU::initDecode(LLImageJ2C &base, LLImageRaw &raw_image, F32 deco ...@@ -393,7 +393,7 @@ BOOL LLImageJ2CKDU::initDecode(LLImageJ2C &base, LLImageRaw &raw_image, F32 deco
region_kdu->size.y = region[3] - region[1]; region_kdu->size.y = region[3] - region[1];
} }
int discard = (discard_level != -1 ? discard_level : base.getRawDiscardLevel()); int discard = (discard_level != -1 ? discard_level : base.getRawDiscardLevel());
llinfos << "Merov debug : initDecode, discard used = " << discard << ", asked = " << discard_level << llendl; //llinfos << "Merov debug : initDecode, discard used = " << discard << ", asked = " << discard_level << llendl;
// Apply loading restrictions // Apply loading restrictions
mCodeStreamp->apply_input_restrictions( first_channel, max_channel_count, discard, 0, region_kdu); mCodeStreamp->apply_input_restrictions( first_channel, max_channel_count, discard, 0, region_kdu);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment