[trunk] Remove warning about cast double -> int. Instead use bit-shifting (compile time computation)

This commit is contained in:
Mathieu Malaterre 2014-03-03 12:01:36 +00:00
parent 11f402b44a
commit e92fe4c1a4
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ CODmarker_param_t get_CODmkrdata_from_j2kstream( Byte_t *CODstream)
else{
COD.XPsiz = (Byte4_t *)opj_malloc( sizeof(Byte4_t));
COD.YPsiz = (Byte4_t *)opj_malloc( sizeof(Byte4_t));
COD.XPsiz[0] = COD.YPsiz[0] = pow(2,15);
COD.XPsiz[0] = COD.YPsiz[0] = 1<<15; /*pow(2,15)*/
}
return COD;
}