summaryrefslogtreecommitdiff
path: root/indra/llkdu/llkdumem.h
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2010-12-15 20:54:25 -0800
committerMerov Linden <merov@lindenlab.com>2010-12-15 20:54:25 -0800
commit71fa0894981bacd26ed07b8a8ab542dcaf2e7ae2 (patch)
tree9a5346c1ddfb08daa9776a5879ff9e113711941b /indra/llkdu/llkdumem.h
parentabc13fb12faab4d6198fb4496da9559a8ca1d854 (diff)
STORM-151 : Suppress unused code, clean up code formating, fix typos
Diffstat (limited to 'indra/llkdu/llkdumem.h')
-rw-r--r--indra/llkdu/llkdumem.h33
1 files changed, 5 insertions, 28 deletions
diff --git a/indra/llkdu/llkdumem.h b/indra/llkdu/llkdumem.h
index b1b2516095..7064de4408 100644
--- a/indra/llkdu/llkdumem.h
+++ b/indra/llkdu/llkdumem.h
@@ -27,8 +27,7 @@
#ifndef LL_LLKDUMEM_H
#define LL_LLKDUMEM_H
-// Support classes for reading and writing from memory buffers
-// for KDU
+// Support classes for reading and writing from memory buffers in KDU
#include "kdu_image.h"
#include "kdu_elementary.h"
#include "kdu_messaging.h"
@@ -70,6 +69,7 @@ public: // Member functions
{
mCurPos = 0;
}
+
private: // Data
U8 *mData;
U32 mSize;
@@ -107,6 +107,7 @@ public: // Member functions
*mOutputSize = mCurPos;
return true;
}
+
private: // Data
U8 *mData;
U32 mSize;
@@ -114,7 +115,6 @@ private: // Data
U32 *mOutputSize;
};
-
class LLKDUMemIn : public kdu_image_in_base
{
public: // Member functions
@@ -125,10 +125,11 @@ public: // Member functions
U8 in_num_components,
siz_params *siz);
~LLKDUMemIn();
+
bool get(int comp_idx, kdu_line_buf &line, int x_tnum);
- const U8 *mData;
private: // Data
+ const U8 *mData;
int first_comp_idx;
int num_components;
int rows, cols;
@@ -141,28 +142,4 @@ private: // Data
U32 mCurPos;
U32 mDataSize;
};
-
-/*
-class LLKDUMemOut : public kdu_image_out_base
-{
-public: // Member functions
- LLKDUMemOut(U8 *data, siz_params *siz, U8 in_num_components);
- LLKDUMemOut(siz_params *siz, U8 in_num_components);
- ~LLKDUMemOut();
- void put(int comp_idx, kdu_line_buf &line, int x_tnum);
-
- U8 *mData;
-private: // Data
- int first_comp_idx;
- int num_components;
- int rows, cols;
- int precision[3];
- image_line_buf *incomplete_lines; // Each "sample" represents a full pixel
- image_line_buf *free_lines;
- int num_unwritten_rows;
-
- U32 mCurPos;
- U32 mDataSize;
-};
-*/
#endif