diff options
| author | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2014-03-03 15:55:27 +0000 |
|---|---|---|
| committer | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2014-03-03 15:55:27 +0000 |
| commit | 24eca792ff2e70df7667ad43b415bd58f75a3a94 (patch) | |
| tree | 7df2433b070ec3f9518cad74c05753505b011164 /src/lib/openjp2/mct.c | |
| parent | b1b17ee264461b58ad1d04c883300cffdae020e9 (diff) | |
[trunk] Remove some more warnings about conversion
Diffstat (limited to 'src/lib/openjp2/mct.c')
| -rw-r--r-- | src/lib/openjp2/mct.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/openjp2/mct.c b/src/lib/openjp2/mct.c index 5e933ce5..d2754dc2 100644 --- a/src/lib/openjp2/mct.c +++ b/src/lib/openjp2/mct.c @@ -230,7 +230,7 @@ OPJ_BOOL opj_mct_encode_custom( lCurrentMatrix = lCurrentData + pNbComp; for (i =0;i<lNbMatCoeff;++i) { - lCurrentMatrix[i] = (OPJ_INT32) (*(lMct++) * lMultiplicator); + lCurrentMatrix[i] = (OPJ_INT32) (*(lMct++) * (OPJ_FLOAT32)lMultiplicator); } for (i = 0; i < n; ++i) { |
