summaryrefslogtreecommitdiff
path: root/src/lib/openjpip/cachemodel_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/cachemodel_manager.h
parentbede1568b197021bb576b935422af6c1d0a79e21 (diff)
processed all c/h files through astyle with opj_astyle.cfgcodingstyle
Diffstat (limited to 'src/lib/openjpip/cachemodel_manager.h')
-rw-r--r--src/lib/openjpip/cachemodel_manager.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/lib/openjpip/cachemodel_manager.h b/src/lib/openjpip/cachemodel_manager.h
index 041f1ad9..7cbaf21a 100644
--- a/src/lib/openjpip/cachemodel_manager.h
+++ b/src/lib/openjpip/cachemodel_manager.h
@@ -34,20 +34,20 @@
#include "target_manager.h"
/** Cache model parameters*/
-typedef struct cachemodel_param{
- target_param_t *target; /**< reference pointer to the target*/
- OPJ_BOOL jppstream; /**< return type, true: JPP-stream, false: JPT-stream*/
- OPJ_BOOL mhead_model; /**< main header model, if sent, 1, else 0*/
- OPJ_BOOL *tp_model; /**< dynamic array pointer of tile part model, if sent, 1, else 0*/
- OPJ_BOOL *th_model; /**< dynamic array pointer of tile header model*/
- OPJ_BOOL **pp_model; /**< dynamic array pointer of precint packet model*/
- struct cachemodel_param *next; /**< pointer to the next cache model*/
+typedef struct cachemodel_param {
+ target_param_t *target; /**< reference pointer to the target*/
+ OPJ_BOOL jppstream; /**< return type, true: JPP-stream, false: JPT-stream*/
+ OPJ_BOOL mhead_model; /**< main header model, if sent, 1, else 0*/
+ OPJ_BOOL *tp_model; /**< dynamic array pointer of tile part model, if sent, 1, else 0*/
+ OPJ_BOOL *th_model; /**< dynamic array pointer of tile header model*/
+ OPJ_BOOL **pp_model; /**< dynamic array pointer of precint packet model*/
+ struct cachemodel_param *next; /**< pointer to the next cache model*/
} cachemodel_param_t;
/** Cache model list parameters*/
-typedef struct cachemodellist_param{
- cachemodel_param_t *first; /**< first cache model pointer of the list*/
- cachemodel_param_t *last; /**< last cache model pointer of the list*/
+typedef struct cachemodellist_param {
+ cachemodel_param_t *first; /**< first cache model pointer of the list*/
+ cachemodel_param_t *last; /**< last cache model pointer of the list*/
} cachemodellist_param_t;