Reformat: apply reformattin on .h files (#128)
[openjpeg.git] / src / lib / openjp2 / t1.h
index c3fb7bed08181ceadb35b461faabe90148ed2d4b..31a2d9f39dd893a8ebd41a505945dc5f6c0ec5d6 100644 (file)
@@ -1,6 +1,6 @@
 /*
- * The copyright in this software is being made available under the 2-clauses 
- * BSD License, included below. This software may be subject to other third 
+ * The copyright in this software is being made available under the 2-clauses
+ * BSD License, included below. This software may be subject to other third
  * party and contributor rights, including patent rights, and no such rights
  * are granted under this license.
  *
@@ -8,7 +8,7 @@
  * Copyright (c) 2002-2014, Professor Benoit Macq
  * Copyright (c) 2001-2003, David Janssens
  * Copyright (c) 2002-2003, Yannick Verschueren
- * Copyright (c) 2003-2007, Francois-Olivier Devaux 
+ * Copyright (c) 2003-2007, Francois-Olivier Devaux
  * Copyright (c) 2003-2014, Antonin Descampe
  * Copyright (c) 2005, Herve Drolon, FreeImage Team
  * All rights reserved.
@@ -90,8 +90,8 @@ in T1.C are used by some function in TCD.C.
 
 #define T1_NMSEDEC_FRACBITS (T1_NMSEDEC_BITS-1)
 
-#define T1_TYPE_MQ 0   /**< Normal coding using entropy coder */
-#define T1_TYPE_RAW 1  /**< No encoding the information is store under raw format in codestream (mode switch RAW)*/
+#define T1_TYPE_MQ 0    /**< Normal coding using entropy coder */
+#define T1_TYPE_RAW 1   /**< No encoding the information is store under raw format in codestream (mode switch RAW)*/
 
 /* Those flags are used by opj_colflag_t */
 #define T1_COLFLAG_RBS              4U /* RBS = Row Bit Shift */
@@ -124,26 +124,26 @@ Tier-1 coding (coding of code-block coefficients)
 */
 typedef struct opj_t1 {
 
-       /** MQC component */
-       opj_mqc_t *mqc;
-       /** RAW component */
-       opj_raw_t *raw;
-
-       OPJ_INT32  *data;
-       opj_flag_t *flags;
-       /** Addition flag array such that colflags[1+0] is for state of col=0,row=0..3,
-          colflags[1+1] for col=1, row=0..3, colflags[1+flags_stride] for col=0,row=4..7, ... 
-          This array avoids too much cache trashing when processing by 4 vertical samples
-          as done in the various decoding steps. */
-       opj_colflag_t* colflags;
-       OPJ_UINT32 w;
-       OPJ_UINT32 h;
-       OPJ_UINT32 datasize;
-       OPJ_UINT32 flagssize;
-       OPJ_UINT32 flags_stride;
-       OPJ_UINT32 colflags_size;
-       OPJ_UINT32 data_stride;
-       OPJ_BOOL   encoder;
+    /** MQC component */
+    opj_mqc_t *mqc;
+    /** RAW component */
+    opj_raw_t *raw;
+
+    OPJ_INT32  *data;
+    opj_flag_t *flags;
+    /** Addition flag array such that colflags[1+0] is for state of col=0,row=0..3,
+       colflags[1+1] for col=1, row=0..3, colflags[1+flags_stride] for col=0,row=4..7, ...
+       This array avoids too much cache trashing when processing by 4 vertical samples
+       as done in the various decoding steps. */
+    opj_colflag_t* colflags;
+    OPJ_UINT32 w;
+    OPJ_UINT32 h;
+    OPJ_UINT32 datasize;
+    OPJ_UINT32 flagssize;
+    OPJ_UINT32 flags_stride;
+    OPJ_UINT32 colflags_size;
+    OPJ_UINT32 data_stride;
+    OPJ_BOOL   encoder;
 } opj_t1_t;
 
 #define MACRO_t1_flags(x,y) t1->flags[((x)*(t1->flags_stride))+(y)]
@@ -160,11 +160,11 @@ Encode the code-blocks of a tile
 @param mct_norms  FIXME DOC
 @param mct_numcomps Number of components used for MCT
 */
-OPJ_BOOL opj_t1_encode_cblks(   opj_t1_t *t1,
-                                opj_tcd_tile_t *tile,
-                                opj_tcp_t *tcp,
-                                const OPJ_FLOAT64 * mct_norms,
-                                OPJ_UINT32 mct_numcomps);
+OPJ_BOOL opj_t1_encode_cblks(opj_t1_t *t1,
+                             opj_tcd_tile_t *tile,
+                             opj_tcp_t *tcp,
+                             const OPJ_FLOAT64 * mct_norms,
+                             OPJ_UINT32 mct_numcomps);
 
 /**
 Decode the code-blocks of a tile
@@ -172,10 +172,10 @@ Decode the code-blocks of a tile
 @param tilec The tile to decode
 @param tccp Tile coding parameters
 */
-void opj_t1_decode_cblks(   opj_thread_pool_t* tp,
-                                volatile OPJ_BOOL* pret,
-                                opj_tcd_tilecomp_t* tilec,
-                                opj_tccp_t* tccp);
+void opj_t1_decode_cblks(opj_thread_pool_t* tp,
+                         volatile OPJ_BOOL* pret,
+                         opj_tcd_tilecomp_t* tilec,
+                         opj_tccp_t* tccp);