You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec/jpeg2000dwt: Move large arrays used in the test code away from the stack
This should avoid problems on systems with little stack space and fix some crashes in fate crash found-by: jamrial Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -700,11 +700,12 @@ static int test_dwtf(float *array, float *ref, uint16_t border[2][2], int decomp
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int array[MAX_W * MAX_W];
|
||||
static int ref [MAX_W * MAX_W];
|
||||
static float arrayf[MAX_W * MAX_W];
|
||||
static float reff [MAX_W * MAX_W];
|
||||
|
||||
int main(void) {
|
||||
int array[MAX_W * MAX_W];
|
||||
int ref [MAX_W * MAX_W];
|
||||
float arrayf[MAX_W * MAX_W];
|
||||
float reff [MAX_W * MAX_W];
|
||||
AVLFG prng;
|
||||
int i,j;
|
||||
uint16_t border[2][2];
|
||||
|
Reference in New Issue
Block a user