]> git.sesse.net Git - ffmpeg/commitdiff
avfilter/asrc_anoisesrc: change color variable to int
authorLimin Wang <lance.lmwang@gmail.com>
Sat, 26 Oct 2019 13:23:24 +0000 (21:23 +0800)
committerMichael Niedermayer <michael@niedermayer.cc>
Tue, 29 Oct 2019 15:20:33 +0000 (16:20 +0100)
Or it'll cause invalid color and s->filter is NULL.
Please reproduce it with below command on big endian system:
$ ./ffmpeg -f lavfi -i "anoisesrc=d=60:c=1:r=48000" -f s16le -c:a pcm_s16le  -f
null  -
Segmentation fault (core dumped)

Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavfilter/asrc_anoisesrc.c

index 78f0af4fdeebc723cdb5ee31ef9482ce49cbf9d5..cedadde6c9e3caabe8ad6ea6f7beb23dfb92081e 100644 (file)
@@ -30,7 +30,7 @@ typedef struct ANoiseSrcContext {
     int sample_rate;
     double amplitude;
     int64_t duration;
-    int64_t color;
+    int color;
     int64_t seed;
     int nb_samples;