avfilter/vf_deshake: Use av_malloc_array()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/77/head
Michael Niedermayer 11 years ago
parent 4932b1e8b8
commit be55518fdb
  1. 2
      libavfilter/vf_deshake.c

@ -249,7 +249,7 @@ static void find_motion(DeshakeContext *deshake, uint8_t *src1, uint8_t *src2,
int contrast; int contrast;
int pos; int pos;
double *angles = av_malloc(sizeof(*angles) * width * height / (16 * deshake->blocksize)); double *angles = av_malloc_array(width * height / (16 * deshake->blocksize), sizeof(*angles));
int center_x = 0, center_y = 0; int center_x = 0, center_y = 0;
double p_x, p_y; double p_x, p_y;

Loading…
Cancel
Save