summaryrefslogtreecommitdiff
path: root/src/lib/openjpip/placeholder_manager.h
diff options
context:
space:
mode:
authorAntonin Descampe <antonin@gmail.com>2016-01-25 23:22:06 +0100
committerAntonin Descampe <antonin@gmail.com>2016-01-25 23:22:06 +0100
commit0febbff19e05cb1a6c2613eee76ad46a669c96cd (patch)
treeb6442d01348e2ba6404d0fd6abcc4eb6d6cc1390 /src/lib/openjpip/placeholder_manager.h
parentbede1568b197021bb576b935422af6c1d0a79e21 (diff)
processed all c/h files through astyle with opj_astyle.cfgcodingstyle
Diffstat (limited to 'src/lib/openjpip/placeholder_manager.h')
-rw-r--r--src/lib/openjpip/placeholder_manager.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/lib/openjpip/placeholder_manager.h b/src/lib/openjpip/placeholder_manager.h
index c08edd40..fe9edad0 100644
--- a/src/lib/openjpip/placeholder_manager.h
+++ b/src/lib/openjpip/placeholder_manager.h
@@ -36,28 +36,28 @@
/** A.3.6.3 Placeholder box format*/
/** placeholder box parameters*/
-typedef struct placeholder_param{
- Byte4_t LBox;
- char TBox[4];
- Byte4_t Flags;
- Byte8_t OrigID;
- Byte_t *OrigBH; /**< dynamic memory pointer*/
- Byte_t OrigBHlen; /**< length of OrigBH*/
+typedef struct placeholder_param {
+ Byte4_t LBox;
+ char TBox[4];
+ Byte4_t Flags;
+ Byte8_t OrigID;
+ Byte_t *OrigBH; /**< dynamic memory pointer*/
+ Byte_t OrigBHlen; /**< length of OrigBH*/
#ifdef AAA
- Byte8_t EquivID;
- Byte_t *EquivBH; /**< dynamic memory pointer*/
- Byte_t EquivBHlen; /**< length of EquivBH*/
- Byte8_t CSID;
- Byte4_t NCS;
+ Byte8_t EquivID;
+ Byte_t *EquivBH; /**< dynamic memory pointer*/
+ Byte_t EquivBHlen; /**< length of EquivBH*/
+ Byte8_t CSID;
+ Byte4_t NCS;
#endif /*AAA*/
- struct placeholder_param *next; /**< pointer to the next placeholder*/
+ struct placeholder_param *next; /**< pointer to the next placeholder*/
} placeholder_param_t;
/** placeholder box list parameters*/
-typedef struct placeholderlist_param{
- placeholder_param_t *first; /**< first placeholder pointer of the list*/
- placeholder_param_t *last; /**< last placeholder pointer of the list*/
+typedef struct placeholderlist_param {
+ placeholder_param_t *first; /**< first placeholder pointer of the list*/
+ placeholder_param_t *last; /**< last placeholder pointer of the list*/
} placeholderlist_param_t;