mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ra144enc: avoid integer overflows.
The values are all positive but signed variables where used, which overflowed. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
5829b7d29e
commit
17b3251c6c
@ -347,7 +347,8 @@ static void ra144_encode_subblock(RA144Context *ractx,
|
||||
float zero[BLOCKSIZE], cba[BLOCKSIZE], cb1[BLOCKSIZE], cb2[BLOCKSIZE];
|
||||
int16_t cba_vect[BLOCKSIZE];
|
||||
int cba_idx, cb1_idx, cb2_idx, gain;
|
||||
int i, n, m[3];
|
||||
int i, n;
|
||||
unsigned m[3];
|
||||
float g[3];
|
||||
float error, best_error;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user