[trunk] Fix all C90 issues using gcc -pedantic -Wno-long-long to track them

As a side effect, fix all comment style to remove extra gcc output

Fixes issue 173
This commit is contained in:
Mathieu Malaterre
2012-09-10 09:04:47 +00:00
parent 3135642ff5
commit 20beb093a1
11 changed files with 193 additions and 176 deletions

View File

@@ -201,15 +201,15 @@ double mct_getnorm_real(int compno) {
opj_bool mct_encode_custom(
// MCT data
/* MCT data */
OPJ_BYTE * pCodingdata,
// size of components
/* size of components */
OPJ_UINT32 n,
// components
/* components */
OPJ_BYTE ** pData,
// nb of components (i.e. size of pData)
/* nb of components (i.e. size of pData) */
OPJ_UINT32 pNbComp,
// tells if the data is signed
/* tells if the data is signed */
OPJ_UINT32 isSigned)
{
OPJ_FLOAT32 * lMct = (OPJ_FLOAT32 *) pCodingdata;